*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brand:       #7D942A;
  --brand-dark:  #5E7020;
  --brand-light: #9AB234;
  --brand-pale:  #EBF5D4;
  --brand-mid:   #E6EFCC;
  --gray-900: #1E2210;
  --gray-700: #4E4E4E;
  --gray-500: #7A7A7A;
  --gray-300: #C8C8C8;
  --gray-100: #F5F5F5;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow:    0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
  --radius: 16px;
  --radius-sm: 10px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--white); color: var(--gray-700); overflow-x: hidden; line-height: 1.6; }
picture { display: contents; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--brand); border-radius: 3px; }

/* ─── LOGO SVG ─── */
.logo-wordmark {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--brand);
  letter-spacing: -0.5px;
  line-height: 1;
  text-decoration: none;
  display: inline-flex;
  align-items: baseline;
}
.logo-wordmark sup {
  font-size: 0.38em;
  margin-left: 1px;
  font-weight: 800;
  vertical-align: super;
}
.logo-wordmark--white { color: var(--white); }

/* ─── NAVBAR ─── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 72px; padding: 0 6vw;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: all 0.35s ease;
}
.navbar.scrolled { border-bottom-color: var(--gray-300); box-shadow: 0 4px 24px rgba(0,0,0,0.08); }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { color: var(--gray-700); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: color 0.2s; letter-spacing: 0.01em; }
.nav-links a:hover { color: var(--brand); }
.nav-cta {
  background: var(--brand-dark) !important; color: var(--white) !important;
  font-weight: 700 !important; padding: 0.55rem 1.5rem; border-radius: 50px;
  box-shadow: 0 4px 16px rgba(94,112,32,0.35); transition: all 0.25s !important;
}
.nav-cta:hover { background: #465318 !important; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(94,112,32,0.4) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--gray-700); border-radius: 2px; transition: all 0.3s; }

/* ─── HERO FULL-BLEED ─── */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex; align-items: center; padding: 0 6vw;
  position: relative; overflow: hidden;
  background: #0d160a; /* fallback while first slide loads */
}

/* Background slideshow */
.hero-slides {
  position: absolute; inset: 0; z-index: 0;
}
.hero-slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 38%;
  display: block;
  opacity: 0;
  animation: heroSlide 30s infinite;
  will-change: transform, opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  filter: contrast(1.05) saturate(1.08);
}
video.hero-slide {
  filter: none; /* filter on video forces compositing layer — use overlay instead */
}

/* 6 slides × 5s each = 30s cycle */
/* visible: 0%–17% (5s), fade: 17%–20% (1s), hidden: 20%–100% */
@keyframes heroSlide {
  0%   { opacity: 0;   transform: scale(1.03); }
  3%   { opacity: 1; }
  17%  { opacity: 1;   transform: scale(1); }
  20%  { opacity: 0; }
  100% { opacity: 0;   transform: scale(1.03); }
}

.slide-1 { animation-delay: -0.9s; } /* skip the 0.9s fade-in so video is visible immediately */
.slide-2 { animation-delay:  5s; }
.slide-3 { animation-delay: 10s; }
.slide-4 { animation-delay: 15s; }
.slide-5 { animation-delay: 20s; }
.slide-6 { animation-delay: 25s; }

/* Gradient overlay: dark on left, fades right */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(6,10,3,0.80) 0%,
    rgba(6,10,3,0.55) 48%,
    rgba(6,10,3,0.18) 100%
  );
}

/* Inner content */
.hero-fullbleed-inner {
  position: relative; z-index: 2;
  max-width: 580px;
  padding-top: 88px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.22);
  border-radius: 50px; padding: 6px 16px;
  font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.88);
  letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 1.5rem;
}
.hero-badge::before {
  content: ''; width: 7px; height: 7px; background: #b8d44a;
  border-radius: 50%; box-shadow: 0 0 8px rgba(184,212,74,0.7); animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.3)} }

.hero-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.2rem, 3.4vw, 4.4rem); font-weight: 800;
  line-height: 1.08; letter-spacing: -1.5px; margin-bottom: 1.5rem;
  color: var(--white);
}
.hero-title span { color: #c8e050; }

.hero-subtitle {
  font-size: 1.05rem; color: rgba(255,255,255,0.72);
  max-width: 480px; margin-bottom: 2.5rem; line-height: 1.75;
}
.hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }

/* Float cards */
.hero-float-card {
  position: absolute;
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--brand-mid);
  border-radius: 14px; padding: 0.85rem 1.1rem; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 10px;
  font-size: 0.82rem; font-weight: 600; white-space: nowrap; color: var(--gray-700); z-index: 3;
  backdrop-filter: blur(8px);
}
.hero-fb-tr { top: 130px; right: 6vw; animation: float 4s ease-in-out infinite; }
.hero-fb-br { bottom: 130px; right: 6vw; animation: float 4s ease-in-out infinite 2s; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

.float-val { color: var(--brand); font-size: 1rem; font-weight: 800; }
.float-icon {
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--brand); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.float-icon svg { color: var(--white); }

/* Stats overlay — bottom-center */
.hero-stats-overlay {
  position: absolute; bottom: 2.5rem;
  left: 50%; transform: translateX(-50%);
  background: rgba(255,255,255,0.12); backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.22); border-radius: 20px;
  padding: 1rem 2.5rem;
  display: flex; align-items: center; gap: 2rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  z-index: 3;
}
.hstat { text-align: center; }
.hstat-num { font-size: 1.4rem; font-weight: 800; color: #c8e050; line-height: 1; }
.hstat-lbl { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.07em; color: rgba(255,255,255,0.65); margin-top: 3px; }
.hstat-sep { width: 1px; height: 28px; background: rgba(255,255,255,0.2); flex-shrink: 0; }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--brand-dark); color: var(--white); font-weight: 700; font-size: 0.95rem;
  padding: 0.85rem 2rem; border-radius: 50px; text-decoration: none;
  box-shadow: 0 8px 28px rgba(94,112,32,0.35); transition: all 0.3s; border: none; cursor: pointer;
}
.btn-primary:hover { background: #465318; transform: translateY(-2px); box-shadow: 0 12px 36px rgba(94,112,32,0.45); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--brand-dark); font-weight: 600; font-size: 0.95rem;
  padding: 0.85rem 2rem; border-radius: 50px; text-decoration: none;
  border: 2px solid var(--brand-dark); transition: all 0.3s; background: transparent;
}
.btn-secondary:hover { background: var(--brand-dark); color: var(--white); transform: translateY(-2px); }
.btn-whatsapp { background: #075E54 !important; box-shadow: 0 8px 28px rgba(7,94,84,0.35) !important; }
.btn-whatsapp:hover { background: #064040 !important; box-shadow: 0 12px 36px rgba(7,94,84,0.45) !important; }
.wa-icon { width: 20px; height: 20px; flex-shrink: 0; }
.wa-icon-lg { width: 26px; height: 26px; flex-shrink: 0; }

/* ─── STATS BAR ─── */
.stats-bar { background: var(--brand); padding: 2rem 6vw; }
.stats-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; }
.stat-item { padding: 0.75rem 1rem; border-right: 1px solid rgba(255,255,255,0.15); }
.stat-item:last-child { border-right: none; }
.stat-number { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 2.4rem; font-weight: 800; color: var(--white); line-height: 1; letter-spacing: -1px; }
.stat-desc { font-size: 0.75rem; color: var(--gray-900); font-weight: 500; margin-top: 6px; text-transform: uppercase; letter-spacing: 0.06em; }

/* ─── SECTIONS ─── */
section { padding: 6rem 6vw; }
.container { max-width: 1280px; margin: 0 auto; }
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--brand-dark); margin-bottom: 1.1rem;
  background: var(--brand-pale); border: 1px solid var(--brand-mid);
  padding: 5px 14px; border-radius: 50px;
}
.section-tag::before { content: ''; width: 6px; height: 6px; background: var(--brand-dark); border-radius: 50%; }
.section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 3.2vw, 2.8rem); font-weight: 800;
  line-height: 1.12; letter-spacing: -1px; margin-bottom: 1.1rem; color: var(--gray-900);
}
.section-title span { color: var(--brand); }
.section-desc { font-size: 1rem; color: var(--gray-700); line-height: 1.8; max-width: 560px; }

/* ─── FEATURED SERVICES ─── */
.featured-services { background: var(--white); }
.featured-services .section-header { text-align: center; margin-bottom: 4rem; }
.featured-services .section-desc { margin: 0 auto; }
.featured-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.featured-grid:has(> :only-child) { grid-template-columns: 1fr; }
.featured-grid:has(> :only-child) .featured-card {
  flex-direction: row;
  min-height: 360px;
}
.featured-grid:has(> :only-child) .card-img {
  width: 44%; flex-shrink: 0; height: auto;
}
.featured-grid:has(> :only-child) .card-body {
  padding: 2.5rem 3rem;
  justify-content: center;
}
.featured-services--reverse .featured-card { flex-direction: row-reverse; }

.featured-card {
  background: var(--white); border: 1px solid var(--gray-300); border-radius: 24px;
  overflow: hidden; position: relative;
  transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  display: flex; flex-direction: column;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.featured-card:hover { transform: translateY(-8px); border-color: var(--brand); box-shadow: 0 24px 64px rgba(125,148,42,0.14); }
.featured-card:hover .card-img img { transform: scale(1.06); }

.card-img { position: relative; height: 240px; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; display: block; }
.card-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.5) 100%);
}
.card-number {
  position: absolute; bottom: 1rem; right: 1.25rem;
  font-size: 4rem; font-weight: 900; color: rgba(255,255,255,0.22);
  font-family: 'Plus Jakarta Sans', sans-serif; line-height: 1;
}

.card-body { padding: 2rem 2rem 2rem; flex: 1; display: flex; flex-direction: column; }
.card-icon-wrap {
  width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; background: var(--brand-pale); border: 1px solid var(--brand-mid);
  color: var(--brand);
}
.card-icon-wrap svg { width: 28px; height: 28px; }
.featured-card h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 0.65rem; color: var(--gray-900); letter-spacing: -0.4px; }
.featured-card p { font-size: 0.875rem; color: var(--gray-700); line-height: 1.8; margin-bottom: 1.5rem; }
.card-features { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 2rem; flex: 1; }
.card-features li {
  font-size: 0.83rem; color: var(--gray-700);
  display: flex; align-items: flex-start; gap: 8px;
}
.card-features li::before {
  content: ''; width: 18px; height: 18px; min-width: 18px;
  background: var(--brand-pale); border: 1px solid var(--brand-mid); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='%237D942A' stroke-width='2' stroke-linecap='round'%3E%3Cpolyline points='2,6 5,9 10,3'/%3E%3C/svg%3E");
  background-size: 10px; background-repeat: no-repeat; background-position: center;
  margin-top: 1px;
}
.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.875rem; font-weight: 700; color: var(--brand-dark); text-decoration: none;
  transition: gap 0.2s; margin-top: auto; padding-top: 1.25rem;
  border-top: 1px solid var(--gray-100);
}
.card-link:hover { gap: 12px; color: var(--brand-dark); }

/* ─── ALL SERVICES ─── */
.all-services { background: var(--brand-pale); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 3rem; }
.service-pill {
  background: var(--white); border: 1px solid var(--brand-mid); border-radius: 14px;
  padding: 1.25rem 1.5rem; display: flex; align-items: center; gap: 14px;
  font-size: 0.9rem; font-weight: 600; color: var(--gray-700);
  transition: all 0.3s; cursor: default;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.service-pill:hover { border-color: var(--brand); color: var(--brand-dark); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(125,148,42,0.12); }
.service-pill-icon {
  width: 42px; height: 42px; display: flex; align-items: center; justify-content: center;
  background: var(--brand-pale); border-radius: 11px; flex-shrink: 0; color: var(--brand);
}
.service-pill-icon svg { width: 22px; height: 22px; }

/* ─── ABOUT ─── */
.about { background: var(--brand-pale); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-text { font-size: 0.95rem; color: var(--gray-700); line-height: 1.8; margin-bottom: 1.5rem; }
.about-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.about-highlight { background: var(--white); border: 1px solid var(--brand-mid); border-radius: 16px; padding: 1.5rem; }
.about-highlight-num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 2rem; font-weight: 800; color: var(--brand); line-height: 1; letter-spacing: -0.5px; }
.about-highlight-label { font-size: 0.78rem; color: var(--gray-700); margin-top: 6px; line-height: 1.4; }

.about-visual { display: flex; flex-direction: column; gap: 1rem; }
.about-photo-wrap { position: relative; border-radius: 20px; overflow: hidden; }
.about-photo { width: 100%; height: 280px; object-fit: cover; display: block; }
.about-photo-badge {
  position: absolute; bottom: 16px; left: 16px;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(8px);
  border: 1px solid var(--brand-mid); border-radius: 12px; padding: 0.75rem 1rem;
  display: flex; align-items: center; gap: 10px;
}
.about-badge-icon { width: 36px; height: 36px; background: var(--white); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--brand); }
.about-badge-text { font-size: 0.78rem; }
.about-badge-text strong { display: block; color: var(--gray-900); font-weight: 700; font-size: 0.85rem; }

.about-cards-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.about-card { background: var(--white); border: 1px solid var(--brand-mid); border-radius: 14px; padding: 1.2rem 1.4rem; }
.about-card h3 { font-size: 0.88rem; font-weight: 700; margin-bottom: 0.35rem; color: var(--brand-dark); display: flex; align-items: center; gap: 7px; }
.about-card h3 svg { width: 16px; height: 16px; color: var(--brand); flex-shrink: 0; }
.about-card p { font-size: 0.82rem; color: var(--gray-700); line-height: 1.65; }

/* ─── PROCESS ─── */
.process { background: var(--gray-100); }
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--brand-mid); border-radius: 20px;
  overflow: hidden; margin-top: 3rem; border: 1px solid var(--brand-mid);
}
.process-step { background: var(--white); padding: 2.5rem 2rem; transition: background 0.3s; }
.process-step:hover { background: var(--brand-pale); }
.step-num { font-size: 3.5rem; font-weight: 900; color: var(--brand-mid); font-family: 'Plus Jakarta Sans', sans-serif; line-height: 1; margin-bottom: 1.25rem; letter-spacing: -2px; }
.process-step:hover .step-num { color: var(--brand); transition: color 0.3s; }
.step-icon { width: 48px; height: 48px; background: var(--brand-pale); border: 1px solid var(--brand-mid); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; color: var(--brand); }
.step-icon svg { width: 24px; height: 24px; }
.process-step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.6rem; color: var(--gray-900); }
.process-step p { font-size: 0.83rem; color: var(--gray-500); line-height: 1.7; }

/* ─── CLIENTS SECTION ─── */
.clients-section { background: var(--white); padding: 5rem 6vw; }
.clients-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-top: 3rem; }
.client-logo-card {
  background: var(--white); border: 1.5px solid var(--gray-300); border-radius: 16px;
  padding: 2rem 1.5rem; display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 0.75rem; text-align: center;
  transition: all 0.3s; min-height: 120px;
}
.client-logo-card:hover { border-color: var(--brand); box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.client-logo-mark {
  width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.1rem; font-family: 'Plus Jakarta Sans', sans-serif; letter-spacing: -0.5px;
}
.client-logo-name { font-size: 0.78rem; font-weight: 600; color: var(--gray-700); line-height: 1.3; }

/* Client color variants */
.cl-1 .client-logo-mark { background: #E8F0FE; color: #1A56DB; }
.cl-2 .client-logo-mark { background: #FEF3C7; color: #B45309; }
.cl-3 .client-logo-mark { background: #ECFDF5; color: #059669; }
.cl-4 .client-logo-mark { background: #FEF2F2; color: #DC2626; }
.cl-5 .client-logo-mark { background: #F5F3FF; color: #7C3AED; }
.cl-6 .client-logo-mark { background: #FFF7ED; color: #EA580C; }
.cl-7 .client-logo-mark { background: #F0FDF4; color: #16A34A; }

/* ─── CONTACT ─── */
.contact-section { background: var(--brand-pale); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start; }
.contact-info .section-desc { margin-bottom: 2.5rem; }
.contact-channels { display: flex; flex-direction: column; gap: 0.85rem; margin-bottom: 2rem; }
.contact-channel {
  display: flex; align-items: center; gap: 14px;
  background: var(--white); border: 1px solid var(--brand-mid); border-radius: 12px;
  padding: 1rem 1.2rem; text-decoration: none; color: var(--gray-700);
  transition: all 0.3s; box-shadow: var(--shadow-sm);
}
.contact-channel:hover { border-color: var(--brand); transform: translateX(4px); }
.channel-icon { width: 42px; height: 42px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ch-whatsapp  { background: rgba(37,211,102,0.12); }
.ch-instagram { background: rgba(225,48,108,0.12); }
.ch-facebook  { background: rgba(24,119,242,0.12); }
.channel-text { flex: 1; }
.channel-label { font-size: 0.72rem; color: var(--gray-700); text-transform: uppercase; letter-spacing: 0.06em; }
.channel-value { font-size: 0.92rem; font-weight: 600; color: var(--gray-900); margin-top: 1px; }
.channel-arrow { color: var(--brand); font-size: 1rem; font-weight: 700; }

/* Form */
.contact-form-wrap { background: var(--white); border: 1px solid var(--brand-mid); border-radius: 24px; padding: 2.5rem; box-shadow: var(--shadow); }
.contact-form-wrap h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.4rem; color: var(--gray-900); }
.contact-form-wrap > p { font-size: 0.85rem; color: var(--gray-700); margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
label { font-size: 0.78rem; font-weight: 600; color: var(--gray-700); letter-spacing: 0.02em; }
input, select, textarea {
  background: var(--brand-pale); border: 1px solid var(--brand-mid);
  border-radius: 10px; padding: 0.75rem 1rem; color: var(--gray-900);
  font-family: inherit; font-size: 0.9rem; outline: none; width: 100%; transition: border-color 0.2s, background 0.2s;
}
input::placeholder, textarea::placeholder { color: var(--gray-300); }
input:focus, select:focus, textarea:focus { border-color: var(--brand); background: var(--white); box-shadow: 0 0 0 3px rgba(125,148,42,0.12); }
select { font-family: 'Inter', sans-serif; }
select option { background: var(--white); color: var(--gray-900); }
textarea { resize: vertical; min-height: 110px; }
.form-service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6rem; margin-bottom: 1rem; }
.service-check { position: relative; }
.service-check input[type="checkbox"] { position: absolute; opacity: 0; width: 0; height: 0; }
.service-check label {
  display: flex; align-items: center; gap: 7px; background: var(--brand-pale);
  border: 1px solid var(--brand-mid); border-radius: 8px; padding: 0.6rem 0.75rem;
  cursor: pointer; font-size: 0.78rem; font-weight: 500; color: var(--gray-700);
  transition: all 0.2s; letter-spacing: 0; text-transform: none;
}
.service-check input:checked + label { background: var(--brand); border-color: var(--brand); color: var(--white); }
.service-check label::before { display: none; }
.form-submit {
  width: 100%; background: var(--brand-dark); color: var(--white); font-weight: 700; font-size: 0.95rem;
  padding: 1rem; border-radius: 12px; border: none; cursor: pointer; transition: all 0.3s;
  display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 0.5rem;
  box-shadow: 0 8px 24px rgba(94,112,32,0.3);
}
.form-submit:hover { background: var(--brand-dark); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(125,148,42,0.4); }
.form-privacy { font-size: 0.72rem; color: var(--gray-700); text-align: center; margin-top: 0.75rem; line-height: 1.5; }

/* ─── CTA BANNER ─── */
.cta-banner { background: var(--brand); padding: 5rem 6vw; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(255,255,255,0.08) 0%, transparent 60%); pointer-events: none; }
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 800; color: var(--white); letter-spacing: -0.8px; margin-bottom: 1rem; line-height: 1.15; }
.cta-banner p { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 2.5rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-white { display: inline-flex; align-items: center; gap: 8px; background: var(--white); color: var(--brand-dark); font-weight: 700; font-size: 0.95rem; padding: 0.9rem 2rem; border-radius: 50px; text-decoration: none; box-shadow: 0 8px 28px rgba(0,0,0,0.15); transition: all 0.3s; }
.btn-white:hover { background: var(--brand-pale); transform: translateY(-2px); }
.btn-outline-white { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--white); font-weight: 700; font-size: 0.95rem; padding: 0.9rem 2rem; border-radius: 50px; text-decoration: none; border: 2px solid rgba(255,255,255,0.6); transition: all 0.3s; }
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: var(--white); transform: translateY(-2px); }

/* ─── FOOTER ─── */
footer { background: var(--gray-900); padding: 4rem 6vw 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; max-width: 1280px; margin: 0 auto; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-tagline { font-size: 0.85rem; color: rgba(255,255,255,0.72); line-height: 1.7; margin-bottom: 1.5rem; margin-top: 0.75rem; }
.social-links { display: flex; gap: 0.75rem; }
.social-link { width: 38px; height: 38px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: all 0.3s; color: rgba(255,255,255,0.6); }
.social-link:hover { background: var(--brand); border-color: var(--brand); color: var(--white); transform: translateY(-2px); }
.footer-col h3 { font-size: 0.8rem; font-weight: 700; color: rgba(255,255,255,0.72); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1.2rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--brand-light); }
.footer-bottom { max-width: 1280px; margin: 0 auto; padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.6); }
.footer-location { font-size: 0.78rem; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 6px; }

/* ─── FLOATING WA ─── */
.wa-float { position: fixed; bottom: 2rem; right: 2rem; z-index: 999; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(37,211,102,0.4); text-decoration: none; color: white; transition: all 0.3s; animation: wa-bounce 3s ease-in-out infinite; }
.wa-float:hover { transform: scale(1.1); box-shadow: 0 12px 32px rgba(37,211,102,0.55); animation: none; }
@keyframes wa-bounce { 0%,100%{transform:scale(1)} 50%{transform:scale(1.05)} }
.wa-tooltip { position: absolute; right: 68px; top: 50%; transform: translateY(-50%); background: var(--gray-900); color: var(--white); border-radius: 8px; padding: 6px 12px; font-size: 0.78rem; font-weight: 600; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity 0.2s; border: 1px solid rgba(255,255,255,0.1); }
.wa-float:hover .wa-tooltip { opacity: 1; }

/* ─── ANIMATIONS ─── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─── MOBILE MENU ─── */
.mobile-menu { display: none; position: fixed; inset: 0; z-index: 999; background: rgba(255,255,255,0.98); backdrop-filter: blur(20px); flex-direction: column; align-items: center; justify-content: center; gap: 2rem; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1.4rem; font-weight: 700; color: var(--gray-900); text-decoration: none; transition: color 0.2s; }
.mobile-menu a:hover { color: var(--brand); }
.close-menu { position: absolute; top: 1.5rem; right: 2rem; background: none; border: none; color: var(--gray-700); font-size: 1.5rem; cursor: pointer; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .featured-grid { grid-template-columns: 1fr; }
  .featured-grid:has(> :only-child) .featured-card,
  .featured-services--reverse .featured-card { flex-direction: column; }
  .featured-grid:has(> :only-child) .card-img { width: 100%; height: 240px; }
  .featured-grid:has(> :only-child) .card-body { padding: 2rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
}
/* Short-height desktop (e.g. Edge on 1366×768 + taskbar ≈ 650px visible) */
@media (max-height: 700px) and (min-width: 769px) {
  .hero-fullbleed-inner { padding-top: 80px; }
  .hero-badge  { margin-bottom: 0.75rem; }
  .hero-title  { margin-bottom: 0.75rem; }
  .hero-subtitle { margin-bottom: 1.5rem; }
}

@media (max-width: 768px) {
  /* hero: overlay direcional não funciona com texto centralizado no mobile */
  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(6,10,3,0.50) 0%,
      rgba(6,10,3,0.72) 30%,
      rgba(6,10,3,0.72) 70%,
      rgba(6,10,3,0.45) 100%
    );
  }
  .hero-title    { text-shadow: 0 2px 18px rgba(0,0,0,0.55); }
  .hero-subtitle { text-shadow: 0 1px 10px rgba(0,0,0,0.65); }

  section { padding: 4rem 5vw; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-number { font-size: 1.7rem; letter-spacing: -0.5px; }
  .stat-item { padding: 0.75rem 0.5rem; }
  .hero-fullbleed-inner { padding-top: 100px; text-align: center; max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-subtitle { margin: 0 auto 2.5rem; }
  .hero-fb-tr { display: none; }
  .hero-fb-br { display: none; }
  .hero-stats-overlay { gap: 1.2rem; padding: 0.85rem 1.5rem; bottom: 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .form-service-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .process-steps { grid-template-columns: 1fr; border-radius: 16px; }
  .about-highlights { grid-template-columns: 1fr 1fr; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .stats-inner { grid-template-columns: 1fr; }
  .stat-item {
    display: flex; align-items: center; gap: 1rem;
    border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15);
    text-align: left; padding: 0.75rem 1rem;
  }
  .stat-item:last-child { border-bottom: none; }
  .stat-number { font-size: 2rem; letter-spacing: -0.5px; }
  .stat-desc { margin-top: 0; }
  .services-grid { grid-template-columns: 1fr; }
  .about-highlights { grid-template-columns: 1fr; }
  .form-service-grid { grid-template-columns: 1fr; }
  .card-body { padding: 1.5rem; }
  .featured-card h3 { font-size: 1.1rem; }
  /* reduce horizontal padding so reCAPTCHA (304px fixed) fits without overflow */
  .contact-form-wrap { padding: 1.5rem 1rem; }
  .contact-grid { gap: 2rem; }
}
/* disable slide transform on touch — prevents horizontal scrollbar after tap */
@media (hover: none) {
  .contact-channel:hover { transform: none; }
}