/* =====================================================
   AMAZON DISPOSAL — CAPE INDUSTRIAL DESIGN SYSTEM
   Brand: #373435 | #E2E66D | #459A4E | #FFFFFF
   ===================================================== */

/* Google Fonts — Space Grotesk + DM Serif Display */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=DM+Serif+Display:ital@0;1&display=swap');

/* ─── VARIABLES ──────────────────────────────────── */
:root {
  --primary: #373435;
  --secondary: #E2E66D;
  --bg: #FFFFFF;
  --cta: #459A4E;
  --cta-dark: #357a3c;
  --neutral: #373435;
  --light-bg: #F7F7F0;
  --border: #373435;

  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Space Grotesk', system-ui, sans-serif;

  --gap-xs: 8px;
  --gap-sm: 16px;
  --gap-md: 32px;
  --gap-lg: 64px;
  --gap-xl: 96px;

  --radius: 0px;
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ─── RESET & BASE ───────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--primary);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ─── SCROLLBAR ──────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--cta);
}

/* ─── UTILITIES ──────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--gap-md);
}

.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cta);
  border: 1.5px solid var(--cta);
  padding: 4px 12px;
  margin-bottom: var(--gap-sm);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.1;
  color: var(--primary);
  margin-bottom: var(--gap-sm);
}

.section-lead {
  font-size: 1.1rem;
  max-width: 65ch;
  color: #666;
  line-height: 1.7;
}

/* ─── BUTTONS ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--spring);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.btn-primary {
  background: var(--cta);
  color: #fff;
  border-color: var(--cta);
}

.btn-primary:hover {
  background: var(--cta-dark);
  border-color: var(--cta-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(69, 154, 78, 0.35);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn-outline:hover {
  background: #fff;
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-dark:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

/* ─── SCROLL REVEAL ANIMATION ────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.7s ease, transform 0.7s var(--spring);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Staggered delays */
.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

/* ─── HEADER ─────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
  background: transparent;
}

.site-header.scrolled {
  background: var(--primary);
  padding: 12px 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap-sm);
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 48px;
  width: auto;
  transition: var(--transition);
}

/* Desktop Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: var(--gap-sm);
}

.main-nav a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  padding: 6px 0;
  position: relative;
  transition: var(--transition);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #fff;
}

.main-nav a:hover::after {
  width: 100%;
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: var(--gap-sm);
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.9;
  transition: var(--transition);
}

.header-phone:hover {
  opacity: 1;
  color: var(--secondary);
}

.header-phone svg {
  flex-shrink: 0;
}

.btn-header {
  background: var(--secondary);
  color: var(--primary);
  border-color: var(--secondary);
  padding: 10px 20px;
  font-size: 0.8rem;
}

.btn-header:hover {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  width: 36px;
  height: 36px;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--primary);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--gap-xs);
  padding: 80px 24px 32px;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  max-width: 280px;
  text-align: center;
  transition: var(--transition);
}

.mobile-menu a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--secondary);
}

.mobile-menu .btn {
  margin-top: var(--gap-xs);
  font-size: 0.9rem;
  padding: 12px 32px;
  width: 100%;
  max-width: 280px;
  justify-content: center;
}

/* ─── HERO ───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--primary);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  filter: brightness(0.45);
}

/* Diagonal overlay */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
      rgba(55, 52, 53, 0.85) 0%,
      rgba(55, 52, 53, 0.3) 50%,
      transparent 100%);
}

/* Diagonal accent bar */
.hero::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 120px;
  background: var(--bg);
  clip-path: polygon(0 80%, 100% 0, 100% 100%, 0 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 160px 0 180px;
  width: 100%;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--gap-sm);
}

.hero-eyebrow-line {
  width: 40px;
  height: 2px;
  background: var(--secondary);
}

.hero-eyebrow-text {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--secondary);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.5vw, 3.8rem);
  line-height: 1.1;
  color: #fff;
  max-width: 820px;
  margin-bottom: var(--gap-md);
}

.hero-headline em {
  font-style: italic;
  color: var(--secondary);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 60ch;
  line-height: 1.7;
  margin-bottom: var(--gap-md);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-sm);
  margin-bottom: var(--gap-lg);
}

/* Trust badges */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-md);
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 1;
  color: var(--secondary);
}

.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ─── ABOUT ──────────────────────────────────────── */
.about {
  padding: var(--gap-xl) 0;
  background: var(--bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-lg);
  align-items: center;
}

.about-img-stack {
  position: relative;
  height: 520px;
}

.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 420px;
  object-fit: cover;
  border: 6px solid var(--primary);
}

.about-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 260px;
  object-fit: cover;
  border: 6px solid var(--secondary);
}

/* Yellow accent block */
.about-accent-block {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 80px;
  height: 80px;
  background: var(--secondary);
  z-index: -1;
}

.about-content .section-tag {
  margin-bottom: var(--gap-sm);
}

.about-text {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: var(--gap-md);
}

.about-highlights {
  display: flex;
  gap: var(--gap-md);
  padding-top: var(--gap-md);
  border-top: 1.5px solid #eee;
  margin-top: var(--gap-sm);
}

.about-highlight {
  text-align: center;
}

.about-highlight-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--cta);
  line-height: 1;
}

.about-highlight-label {
  font-size: 0.78rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* ─── FEATURES (WHY CHOOSE US) ───────────────────── */
.features {
  padding: var(--gap-xl) 0;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

/* Big decorative text */
.features::before {
  content: 'WHY US';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 16vw;
  color: rgba(255, 255, 255, 0.03);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.features-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--gap-lg);
}

.features-header .section-title {
  color: #fff;
  margin-bottom: 0;
}

.features-header .section-tag {
  color: var(--secondary);
  border-color: var(--secondary);
}

.features-tagline {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 30ch;
  text-align: right;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: var(--gap-md) var(--gap-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--secondary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: rgba(226, 230, 109, 0.12);
  border: 1px solid rgba(226, 230, 109, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--gap-sm);
  color: var(--secondary);
}

.feature-num {
  font-family: var(--font-display);
  font-size: 4rem;
  color: rgba(226, 230, 109, 0.08);
  line-height: 1;
  position: absolute;
  top: var(--gap-sm);
  right: var(--gap-sm);
  user-select: none;
}

.feature-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--gap-xs);
  line-height: 1.3;
}

.feature-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

/* ─── PRICING ────────────────────────────────────── */
.pricing {
  padding: var(--gap-xl) 0;
  background: var(--light-bg);
}

.pricing-header {
  text-align: center;
  margin-bottom: var(--gap-lg);
}

.pricing-note {
  font-size: 0.9rem;
  color: #888;
  margin-top: var(--gap-xs);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  align-items: stretch;
}

/* Card de imagem — 3º card do pricing */
.pricing-card-img {
  position: relative;
  overflow: hidden;
  padding: 0;
  min-height: 480px;
}

.pricing-card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  transition: transform 0.6s ease;
}

.pricing-card-img:hover img {
  transform: scale(1.04);
}

.pricing-card-img-caption {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(rgba(10, 8, 9, 1) 0%, rgba(10, 8, 9, 0.7) 40%, rgba(10, 8, 9, 0.5) 65%, transparent 68%);
  padding: var(--gap-md) var(--gap-sm) var(--gap-xl);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Botão do card imagem — posicionado no fundo do card pai */
.pricing-card-img-btn {
  position: absolute;
  bottom: 32px;
  left: 16px;
  right: 16px;
  justify-content: center;
  z-index: 2;
}

.pricing-card {
  background: #fff;
  padding: var(--gap-md) var(--gap-sm);
  border: 1px solid #eee;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card>.btn {
  margin-top: auto;
}

.pricing-card:hover {
  border-color: var(--cta);
  box-shadow: 0 12px 40px rgba(69, 154, 78, 0.15);
  transform: translateY(-4px);
}

.pricing-card.featured {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

.pricing-badge {
  position: absolute;
  top: -14px;
  right: var(--gap-md);
  background: var(--secondary);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
}

.pricing-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cta);
  margin-bottom: var(--gap-sm);
}

.pricing-card.featured .pricing-label {
  color: var(--secondary);
}

.pricing-price {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: var(--gap-xs);
}

.pricing-currency {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 8px;
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
}

.pricing-period {
  font-size: 0.9rem;
  color: #999;
  align-self: flex-end;
  padding-bottom: 12px;
}

.pricing-card.featured .pricing-period {
  color: rgba(255, 255, 255, 0.55);
}

.pricing-desc {
  font-size: 1rem;
  color: #666;
  margin-bottom: var(--gap-md);
  line-height: 1.6;
}

.pricing-card.featured .pricing-desc {
  color: rgba(255, 255, 255, 0.7);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: var(--gap-md);
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: #555;
}

.pricing-card.featured .pricing-feature {
  color: rgba(255, 255, 255, 0.8);
}

.pricing-check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--cta);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  margin-top: 1px;
}

.pricing-footer-note {
  text-align: center;
  margin-top: var(--gap-md);
  font-size: 0.9rem;
  color: #888;
}

.pricing-footer-note strong {
  color: var(--cta);
}

/* ─── SERVICE AREAS ──────────────────────────────── */
.areas {
  padding: var(--gap-xl) 0;
  background: var(--bg);
  overflow: hidden;
}

.areas-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--gap-lg);
  align-items: start;
}

.areas-content {
  position: sticky;
  top: 100px;
}

.areas-img {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Mapa wrapper */
.areas-map-wrap {
  width: 100%;
  position: relative;
}

.areas-map-wrap iframe {
  display: block;
  width: 100%;
  filter: grayscale(20%) contrast(1.05);
  transition: filter 0.4s ease;
}

.areas-map-wrap:hover iframe {
  filter: grayscale(0%) contrast(1);
}

.areas-img img {
  width: 100%;
  max-width: 600px;
  height: 320px;
  object-fit: cover;
}

.areas-img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  color: #fff;
  padding: var(--gap-sm) var(--gap-md);
  font-size: 0.85rem;
}

.areas-list {
  margin-top: var(--gap-md);
}

.areas-region {
  margin-bottom: var(--gap-md);
}

.areas-region-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cta);
  border-bottom: 1.5px solid #eee;
  padding-bottom: var(--gap-xs);
  margin-bottom: var(--gap-sm);
}

.areas-towns {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.areas-town {
  display: inline-block;
  padding: 6px 14px;
  border: 1.5px solid var(--border);
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--transition);
}

.areas-town:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ─── PAYMENT ────────────────────────────────────── */
.payment {
  padding: var(--gap-xl) 0;
  background: var(--light-bg);
}

.payment-header {
  text-align: center;
  margin-bottom: var(--gap-lg);
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}

.payment-card {
  background: #fff;
  padding: var(--gap-md) var(--gap-sm);
  text-align: center;
  border: 1px solid #eee;
  transition: var(--transition);
  position: relative;
}

.payment-card:hover {
  border-color: var(--cta);
  transform: translateY(-4px);
  z-index: 1;
}

.payment-icon {
  width: 72px;
  height: 72px;
  background: var(--light-bg);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--gap-sm);
  font-size: 1.5rem;
  color: var(--cta);
  font-weight: 700;
}

/* Logo real nos ícones de pagamento */
.payment-icon-img {
  background: transparent;
  border: none;
  width: 100px;
  height: 68px;
  border-radius: 0;
}

.payment-icon-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* PNG icons (send-money, dollar) — sem filtro, sem fundo */
.payment-icon-png {
  background: transparent;
  border: none;
  width: 100px;
  height: 68px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--gap-sm);
}

.payment-icon-png img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: none;
}

.payment-method {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--gap-xs);
}

.payment-detail {
  font-size: 0.85rem;
  color: #888;
  line-height: 1.5;
}

.payment-detail a {
  color: var(--cta);
}

.payment-detail a:hover {
  text-decoration: underline;
}

/* ─── CONTACT ────────────────────────────────────── */
.contact {
  padding: var(--gap-xl) 0;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.contact::after {
  content: 'CONTACT';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 14vw;
  color: rgba(255, 255, 255, 0.025);
  white-space: nowrap;
  pointer-events: none;
}

.contact-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--gap-lg);
  align-items: center;
}

.contact-info {
  padding-top: var(--gap-sm);
}

.contact-info .section-title {
  color: #fff;
}

.contact-info .section-tag {
  color: var(--secondary);
  border-color: var(--secondary);
}

.contact-lead {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: var(--gap-md);
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: var(--gap-sm);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: rgba(226, 230, 109, 0.12);
  border: 1px solid rgba(226, 230, 109, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--secondary);
}

.contact-item-text {
  display: flex;
  flex-direction: column;
}

.contact-item-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 2px;
}

.contact-item-value {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

.contact-item-value a {
  color: var(--secondary);
  transition: var(--transition);
}

.contact-item-value a:hover {
  opacity: 0.8;
}

/* Form */
.contact-form {
  background: #fff;
  padding: var(--gap-md);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-sm);
  margin-bottom: var(--gap-sm);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}

.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid #ddd;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--primary);
  background: #fff;
  transition: var(--transition);
  outline: none;
  width: 100%;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--cta);
  box-shadow: 0 0 0 3px rgba(69, 154, 78, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  margin-top: var(--gap-sm);
}

.form-submit .btn {
  width: 100%;
  justify-content: center;
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  padding: 16px;
  font-size: 1rem;
}

.form-submit .btn:hover {
  background: var(--cta);
  border-color: var(--cta);
  box-shadow: 0 8px 24px rgba(69, 154, 78, 0.3);
  transform: translateY(-2px);
}

.form-message {
  margin-top: var(--gap-sm);
  padding: 12px 16px;
  font-size: 0.9rem;
  display: none;
}

.form-message.success {
  background: rgba(69, 154, 78, 0.1);
  border: 1px solid var(--cta);
  color: var(--cta);
  display: block;
}

.form-message.error {
  background: rgba(200, 50, 50, 0.1);
  border: 1px solid #c83232;
  color: #c83232;
  display: block;
}

/* ─── FOOTER ─────────────────────────────────────── */
.site-footer {
  background: #1e1c1d;
  color: rgba(255, 255, 255, 0.6);
  padding: var(--gap-lg) 0 var(--gap-md);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--gap-lg);
  padding-bottom: var(--gap-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: var(--gap-md);
}

.footer-brand .logo img {
  height: 42px;
  margin-bottom: var(--gap-sm);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 36ch;
}

.footer-brand .footer-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--secondary);
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: var(--gap-sm);
  transition: var(--transition);
}

.footer-brand .footer-phone:hover {
  opacity: 0.8;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: var(--gap-sm);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--secondary);
}

.footer-holiday {
  font-size: 0.85rem;
  line-height: 2;
}

.footer-holiday li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-holiday li::before {
  content: '✦';
  color: var(--secondary);
  font-size: 0.6rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--gap-sm);
  font-size: 0.82rem;
}

.footer-bottom a {
  color: var(--secondary);
  transition: var(--transition);
}

/* ─── ABOUT HOUSE BANNER ─────────────────────────── */
.about-house-banner {
  position: relative;
  overflow: hidden;
}

.about-house-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(55, 52, 53, 0.85));
  color: #fff;
  padding: var(--gap-sm) var(--gap-md);
  font-size: 0.9rem;
  font-weight: 600;
}


.footer-bottom a:hover {
  opacity: 0.8;
}

/* ─── SCROLL TO TOP ──────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: var(--spring);
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.scroll-top:hover {
  background: var(--cta);
  border-color: var(--cta);
  transform: translateY(-4px);
}

/* ─── PREFERS REDUCED MOTION ─────────────────────── */
@media (prefers-reduced-motion: reduce) {

  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1;
    transform: none;
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1100px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .payment-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-img-stack {
    height: 380px;
    order: -1;
  }

  .areas-inner {
    grid-template-columns: 1fr;
  }

  .areas-content {
    position: static;
  }

  .contact-inner {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .features-header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--gap-sm);
  }

  .features-tagline {
    text-align: left;
  }
}

@media (max-width: 680px) {
  :root {
    --gap-lg: 48px;
    --gap-xl: 72px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .payment-grid {
    grid-template-columns: 1fr 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-trust {
    gap: var(--gap-sm);
  }

  .scroll-top {
    right: 16px;
    bottom: 16px;
  }
}

@media (max-width: 480px) {
  .about-img-stack {
    height: 320px;
  }

  .about-img-main {
    width: 80%;
    height: 240px;
  }

  .about-img-accent {
    width: 60%;
    height: 180px;
  }

  .payment-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── FOOTER MOBILE CENTRADO ─────────────────────── */
@media (max-width: 680px) {
  .footer-top {
    text-align: center;
  }

  .footer-brand p {
    margin: 0 auto;
  }

  .footer-brand .footer-phone {
    justify-content: center;
  }

  .footer-col ul {
    align-items: center;
  }

  .footer-holiday li {
    justify-content: center;
  }

  .logo {
    justify-content: center;
  }
}