/* ═══════════════════════════════════════════════
   VASCA SOLUÇÕES — CSS Principal
   Paleta: Marinho #1b1f2e · Dourado #c8a84b · Creme #f7f5ef
   Tipografia: Cormorant Garamond (títulos) · Inter (corpo)
═══════════════════════════════════════════════ */

:root {
  --navy:       #1b1f2e;
  --navy-deep:  #101420;
  --navy-mid:   #252a3d;
  --gold:       #c8a84b;
  --gold-light: #e8d49a;
  --gold-dark:  #9a7e30;
  --cream:      #f7f5ef;
  --cream-dark: #ede9e0;
  --white:      #ffffff;
  --text-main:  #1b1f2e;
  --text-mid:   #4a5168;
  --text-light: #8892a4;
  --border:     #e4e1d8;
  --border-dark:#2d3348;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;

  --shadow-sm:  0 1px 4px rgba(0,0,0,.06);
  --shadow-md:  0 4px 20px rgba(0,0,0,.10);
  --shadow-lg:  0 8px 40px rgba(0,0,0,.14);

  --transition: .25s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); font-size: 15px; color: var(--text-main); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
input, textarea, select, button { font-family: inherit; }

/* ── Container ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ── Topbar ── */
.topbar { background: var(--navy-deep); padding: 8px 0; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.topbar__contacts { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.topbar__contacts a,
.topbar__contacts span { font-size: 12px; color: #8892a4; display: flex; align-items: center; gap: 5px; transition: color var(--transition); }
.topbar__contacts a:hover { color: var(--gold); }
.topbar__contacts i { font-size: 13px; color: var(--gold); }
.topbar__social { display: flex; gap: 8px; }
.topbar__social a { width: 26px; height: 26px; border: 0.5px solid var(--border-dark); border-radius: 5px; display: flex; align-items: center; justify-content: center; color: #8892a4; transition: all var(--transition); }
.topbar__social a:hover { border-color: var(--gold); color: var(--gold); }
.topbar__social i { font-size: 13px; }

/* ── Navbar ── */
.navbar { background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; box-shadow: var(--shadow-sm); transition: box-shadow var(--transition); }
.navbar.scrolled { box-shadow: var(--shadow-md); }
.navbar__inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; }
.logo__mark { width: 40px; height: 40px; background: var(--navy); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--gold); letter-spacing: -1px; flex-shrink: 0; }
.logo__mark--lg { width: 56px; height: 56px; font-size: 28px; border-radius: var(--radius-md); }
.logo__text { display: flex; flex-direction: column; }
.logo__name { font-size: 15px; font-weight: 600; color: var(--navy); line-height: 1.2; }
.logo__sub { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); }
.logo--light .logo__name { color: #8892a4; }

/* Nav links */
.nav { display: flex; align-items: center; gap: 28px; }
.nav__link { font-size: 13px; font-weight: 500; color: var(--text-mid); position: relative; padding-bottom: 3px; transition: color var(--transition); }
.nav__link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--gold); transition: width var(--transition); border-radius: 1px; }
.nav__link:hover { color: var(--navy); }
.nav__link:hover::after { width: 100%; }
.nav__link--active { color: var(--navy); font-weight: 600; }
.nav__link--active::after { width: 100%; }

/* Burger */
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all var(--transition); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Buttons ── */
.btn { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; padding: 10px 20px; border-radius: var(--radius-sm); cursor: pointer; transition: all var(--transition); border: 1.5px solid transparent; text-decoration: none; white-space: nowrap; }
.btn i { font-size: 15px; }
.btn--primary { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn--primary:hover { background: var(--navy-mid); }
.btn--gold { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn--gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); }
.btn--outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--outline:hover { background: var(--navy); color: var(--white); }
.btn--ghost { background: rgba(255,255,255,.08); color: var(--white); border-color: rgba(255,255,255,.2); }
.btn--ghost:hover { background: rgba(255,255,255,.15); }
.btn--ghost-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.35); }
.btn--ghost-light:hover { background: rgba(255,255,255,.1); }
.btn--whatsapp { background: #25d366; color: #fff; border-color: #25d366; font-size: 14px; padding: 12px 20px; }
.btn--whatsapp:hover { background: #1da851; }
.btn--sm { font-size: 12px; padding: 8px 16px; }
.btn--lg { font-size: 14px; padding: 13px 26px; }
.btn--full { width: 100%; justify-content: center; }
.btn--nav { font-size: 12px; padding: 8px 16px; }

/* ── Eyebrow ── */
.eyebrow { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--gold); }
.eyebrow--gold { color: var(--gold); }

/* ── Section helpers ── */
.section { padding: 72px 0; }
.section--white  { background: var(--white); }
.section--cream  { background: var(--cream); }
.section--dark   { background: var(--navy); }
.section__header { margin-bottom: 48px; }
.section__header--center { text-align: center; }
.section__header--center .eyebrow { justify-content: center; }
.section__header--center .eyebrow::before { display: none; }
.section__header--light h2 { color: var(--white); }
.section__header h2 { font-family: var(--font-display); font-size: 38px; font-weight: 700; color: var(--navy); line-height: 1.2; margin-bottom: 10px; }
.section__sub { font-size: 15px; color: var(--text-mid); max-width: 520px; line-height: 1.7; }
.section__sub--light { color: #8892a4; }
.section__footer-cta { text-align: center; margin-top: 40px; }

/* ═══ HERO CAROUSEL ═══ */
.hero-carousel { position: relative; overflow: hidden; }
.carousel { position: relative; }
.carousel__track { display: flex; transition: transform .6s cubic-bezier(.4,0,.2,1); }
.carousel__slide { min-width: 100%; background: var(--navy); position: relative; overflow: hidden; }

/* Slide decorations */
.slide__bg { position: absolute; inset: 0; pointer-events: none; }
.slide__orb { position: absolute; border-radius: 50%; }
.slide__orb--1 { width: 420px; height: 420px; background: radial-gradient(circle, rgba(200,168,75,.10) 0%, transparent 70%); top: -80px; right: -80px; }
.slide__orb--2 { width: 280px; height: 280px; background: radial-gradient(circle, rgba(200,168,75,.06) 0%, transparent 70%); bottom: -60px; left: 20%; }
.slide__grid-lines { position: absolute; inset: 0; background-image: linear-gradient(rgba(200,168,75,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(200,168,75,.04) 1px, transparent 1px); background-size: 60px 60px; }

.slide__content { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 80px 24px; min-height: 480px; }

.slide__eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(200,168,75,.12); border: 0.5px solid rgba(200,168,75,.3); padding: 5px 14px; border-radius: 20px; margin-bottom: 20px; }
.slide__eyebrow i { font-size: 14px; color: var(--gold); }
.slide__eyebrow span { font-size: 11px; font-weight: 500; color: var(--gold-light); letter-spacing: .08em; text-transform: uppercase; }

.slide__title { font-family: var(--font-display); font-size: 52px; font-weight: 700; color: var(--white); line-height: 1.15; margin-bottom: 18px; }
.slide__title em { color: var(--gold); font-style: normal; }
.slide__desc { font-size: 15px; color: #8892a4; line-height: 1.75; margin-bottom: 28px; max-width: 440px; }
.slide__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.slide__accent { font-size: 12px; color: #6a7490; display: flex; align-items: center; gap: 6px; }
.slide__accent i { color: var(--gold); font-size: 14px; }

/* Slide right panel */
.slide__right { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.slide__stat-card { background: rgba(255,255,255,.04); border: 0.5px solid rgba(255,255,255,.1); border-radius: var(--radius-lg); padding: 28px 36px; text-align: center; position: relative; width: 100%; }
.stat-card__num { font-family: var(--font-display); font-size: 60px; font-weight: 700; color: var(--gold); line-height: 1; }
.stat-card__label { font-size: 13px; color: #8892a4; margin-top: 6px; }
.stat-card__icon { position: absolute; top: 14px; right: 14px; font-size: 20px; color: rgba(200,168,75,.25); }
.stat-card__icon i { font-size: 20px; }

.slide__flow { display: flex; flex-direction: column; align-items: center; gap: 6px; width: 100%; }
.flow-node { background: rgba(255,255,255,.05); border: 0.5px solid rgba(255,255,255,.1); border-radius: var(--radius-sm); padding: 10px 18px; display: flex; align-items: center; gap: 8px; width: 100%; }
.flow-node i { font-size: 16px; color: #8892a4; }
.flow-node span { font-size: 12px; color: #a0aab8; font-weight: 500; }
.flow-node--gold { background: rgba(200,168,75,.12); border-color: rgba(200,168,75,.35); }
.flow-node--gold i { color: var(--gold); }
.flow-node--gold span { color: var(--gold-light); }
.flow-arrow { color: rgba(200,168,75,.4); font-size: 16px; }
.flow-arrow i { font-size: 16px; }

/* Carousel controls */
.carousel__btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.08); border: 0.5px solid rgba(255,255,255,.15); color: var(--white); width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 10; transition: all var(--transition); }
.carousel__btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.carousel__btn i { font-size: 20px; }
.carousel__btn--prev { left: 20px; }
.carousel__btn--next { right: 20px; }

/* Dots */
.carousel__dots { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.carousel__dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.25); border: none; cursor: pointer; transition: all var(--transition); padding: 0; }
.carousel__dot--active { background: var(--gold); width: 24px; border-radius: 4px; }

/* Progress bar */
.carousel__progress { position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: rgba(255,255,255,.08); }
.carousel__progress-bar { height: 100%; background: var(--gold); width: 0%; transition: width .1s linear; }

/* ═══ STATS BAR ═══ */
.stats-bar { background: var(--cream); border-bottom: 1px solid var(--border); }
.stats-bar__inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.stats-bar__item { padding: 24px 20px; text-align: center; display: flex; flex-direction: column; gap: 4px; }
.stats-bar__num { font-family: var(--font-display); font-size: 32px; font-weight: 700; color: var(--navy); line-height: 1; }
.stats-bar__num em { color: var(--gold); font-style: normal; }
.stats-bar__label { font-size: 11px; color: var(--text-light); letter-spacing: .05em; }
.stats-bar__sep { width: 1px; background: var(--border); margin: 16px 0; }

/* ═══ PROCESS FLOW ═══ */
.process-flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; gap: 0; align-items: start; margin-top: 40px; }
.process-step { padding: 24px 16px; text-align: center; }
.process-step__num { font-family: var(--font-display); font-size: 44px; font-weight: 700; color: var(--cream-dark); line-height: 1; margin-bottom: 12px; }
.process-step__icon { width: 52px; height: 52px; background: var(--navy); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.process-step__icon i { font-size: 24px; color: var(--gold); }
.process-step h3 { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.process-step p { font-size: 12px; color: var(--text-mid); line-height: 1.65; }
.process-connector { display: flex; align-items: center; justify-content: center; padding-top: 48px; color: var(--border); font-size: 24px; }
.process-connector i { font-size: 24px; }

/* ═══ SERVICES GRID ═══ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 24px; transition: all var(--transition); }
.service-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.service-card__icon { width: 48px; height: 48px; background: var(--navy); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.service-card__icon i { font-size: 22px; color: var(--gold); }
.service-card h3 { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.service-card p { font-size: 12px; color: var(--text-mid); line-height: 1.65; margin-bottom: 16px; }
.service-card__link { font-size: 12px; font-weight: 600; color: var(--gold); display: flex; align-items: center; gap: 4px; transition: gap var(--transition); }
.service-card:hover .service-card__link { gap: 8px; }

/* ═══ SECTORS GRID ═══ */
.sectors-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 32px; }
.sector-card { display: flex; align-items: center; gap: 12px; padding: 16px; border: 0.5px solid var(--border-dark); border-radius: var(--radius-md); transition: border-color var(--transition); }
.sector-card:hover { border-color: rgba(200,168,75,.4); }
.sector-card__icon { width: 40px; height: 40px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sector-card__icon i { font-size: 20px; }
.sector-card span { font-size: 13px; color: #c0c8d8; font-weight: 500; }

.countries-strip { border-top: 0.5px solid var(--border-dark); padding-top: 24px; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.countries-label { font-size: 12px; color: var(--text-light); display: flex; align-items: center; gap: 5px; margin-right: 4px; }
.countries-label i { color: var(--gold); }
.country-tag { background: rgba(255,255,255,.04); border: 0.5px solid var(--border-dark); border-radius: 4px; padding: 4px 10px; font-size: 12px; color: #8892a4; }

/* ═══ DIFFS GRID ═══ */
.diffs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.diff-card { display: flex; gap: 16px; align-items: flex-start; background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 20px; }
.diff-card__icon { width: 44px; height: 44px; min-width: 44px; background: var(--navy); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; }
.diff-card__icon i { font-size: 20px; color: var(--gold); }
.diff-card__body h3 { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.diff-card__body p { font-size: 12px; color: var(--text-mid); line-height: 1.65; }

/* ═══ CTA SECTION ═══ */
.cta-section { background: var(--navy); padding: 64px 0; }
.cta-section__inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-section__text h2 { font-family: var(--font-display); font-size: 36px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.cta-section__text p { font-size: 14px; color: #8892a4; line-height: 1.7; max-width: 460px; }
.cta-section__actions { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }

/* ═══ PAGE HERO ═══ */
.page-hero { background: var(--navy); padding: 56px 0 48px; }
.page-hero .container h1 { font-family: var(--font-display); font-size: 44px; font-weight: 700; color: var(--white); margin-bottom: 12px; margin-top: 16px; }
.page-hero .container p { font-size: 15px; color: #8892a4; max-width: 520px; line-height: 1.7; }
.breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text-light); }
.breadcrumb a { color: var(--gold); }
.breadcrumb i { font-size: 12px; color: var(--border-dark); }

/* ═══ SERVICES DETAIL ═══ */
.services-detail-grid { display: flex; flex-direction: column; gap: 56px; }
.svc-detail { display: grid; grid-template-columns: 200px 1fr; gap: 48px; align-items: start; }
.svc-detail--reverse { grid-template-columns: 1fr 200px; }
.svc-detail--reverse .svc-detail__visual { order: 2; }
.svc-detail--reverse .svc-detail__body { order: 1; }
.svc-detail__visual { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.svc-detail__icon-block { width: 100px; height: 100px; background: var(--navy); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; }
.svc-detail__icon-block i { font-size: 44px; color: var(--gold); }
.svc-detail__num { font-family: var(--font-display); font-size: 72px; font-weight: 700; color: var(--cream-dark); line-height: 1; }
.svc-detail__body h2 { font-family: var(--font-display); font-size: 30px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.svc-detail__body > p { font-size: 14px; color: var(--text-mid); line-height: 1.75; margin-bottom: 20px; }
.check-list { margin-bottom: 24px; display: flex; flex-direction: column; gap: 8px; }
.check-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--text-mid); }
.check-list li i { color: var(--gold); font-size: 15px; margin-top: 1px; flex-shrink: 0; }

/* ═══ ABOUT PAGE ═══ */
.about-intro { display: grid; grid-template-columns: 1fr 360px; gap: 60px; align-items: center; }
.about-intro__text { }
.about-intro__text h2 { font-family: var(--font-display); font-size: 36px; font-weight: 700; color: var(--navy); margin-bottom: 20px; line-height: 1.25; }
.about-intro__text p { font-size: 14px; color: var(--text-mid); line-height: 1.8; margin-bottom: 14px; }
.mission-card { background: var(--navy); border-radius: var(--radius-lg); padding: 32px 24px; display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; }
.mission-card__top, .mission-card__bottom { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,.05); border: 0.5px solid rgba(255,255,255,.1); border-radius: var(--radius-sm); padding: 10px 20px; width: 100%; justify-content: center; }
.mission-card__top i, .mission-card__bottom i { font-size: 18px; color: #8892a4; }
.mission-card__top span, .mission-card__bottom span { font-size: 13px; color: #a0aab8; }
.mission-card__center { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.mission-card__center span { font-size: 14px; font-weight: 600; color: var(--gold-light); }
.mission-card__center small { font-size: 11px; color: #6a7490; }
.mission-card__arrow { color: rgba(200,168,75,.4); font-size: 20px; }
.mission-card__arrow i { font-size: 20px; }

.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.value-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 24px; text-align: center; transition: all var(--transition); }
.value-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); }
.value-card__icon { width: 52px; height: 52px; background: var(--navy); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.value-card__icon i { font-size: 24px; color: var(--gold); }
.value-card h3 { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.value-card p { font-size: 12px; color: var(--text-mid); line-height: 1.65; }

/* Timeline */
.timeline { position: relative; padding: 32px 0; }
.timeline::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 1px; background: var(--border-dark); transform: translateX(-50%); }
.timeline__item { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 32px; align-items: start; }
.timeline__item--left .timeline__year { text-align: right; }
.timeline__item--left .timeline__content { }
.timeline__item--right .timeline__year { order: 2; text-align: left; }
.timeline__item--right .timeline__content { order: 1; text-align: right; }
.timeline__year { font-family: var(--font-display); font-size: 36px; font-weight: 700; color: var(--gold); padding: 0 32px; }
.timeline__content { background: rgba(255,255,255,.04); border: 0.5px solid var(--border-dark); border-radius: var(--radius-md); padding: 16px 20px; }
.timeline__content p { font-size: 13px; color: #8892a4; line-height: 1.65; }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.team-card { text-align: center; padding: 28px 16px; border: 1px solid var(--border); border-radius: var(--radius-md); transition: all var(--transition); }
.team-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); }
.team-card__avatar { width: 64px; height: 64px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--gold); }
.team-card h3 { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.team-card span { font-size: 12px; color: var(--text-light); }

/* ═══ CONTACT PAGE ═══ */
.contact-layout { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start; }
.contact-form-wrap { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; }
.contact-form-header { margin-bottom: 28px; }
.contact-form-header h2 { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.contact-form-header p { font-size: 13px; color: var(--text-mid); }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 12px; font-weight: 600; color: var(--navy); }
.form-group label span { color: var(--gold); }
.form-group input,
.form-group select,
.form-group textarea { border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: 10px 14px; font-size: 13px; color: var(--text-main); background: var(--white); transition: border-color var(--transition); outline: none; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--navy); }
.form-group textarea { resize: vertical; line-height: 1.6; }
.form-note { font-size: 11px; color: var(--text-light); display: flex; align-items: flex-start; gap: 5px; line-height: 1.5; }
.form-note i { color: var(--gold); margin-top: 1px; flex-shrink: 0; }

.alert { display: flex; gap: 12px; align-items: flex-start; padding: 14px 16px; border-radius: var(--radius-sm); margin-bottom: 20px; font-size: 13px; }
.alert i { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.alert--success { background: #edf7f0; border: 1px solid #b8dfc5; color: #1a5c32; }
.alert--success i { color: #2e8b57; }
.alert--error { background: #fdf0ef; border: 1px solid #f0b8b4; color: #8b2020; }
.alert--error i { color: #c0392b; }
.alert ul { margin: 0; padding-left: 16px; }
.alert strong { display: block; margin-bottom: 4px; }

.contact-sidebar { display: flex; flex-direction: column; gap: 16px; }
.contact-info-card { background: var(--navy); border-radius: var(--radius-lg); padding: 28px; }
.contact-info-card h3 { font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 24px; }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.contact-info-item__icon { width: 36px; height: 36px; background: rgba(200,168,75,.15); border: 0.5px solid rgba(200,168,75,.3); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-item__icon i { font-size: 16px; color: var(--gold); }
.contact-info-item > div span { display: block; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; color: #6a7490; margin-bottom: 4px; }
.contact-info-item > div a,
.contact-info-item > div p { font-size: 13px; color: #c0c8d8; line-height: 1.55; }
.contact-info-item > div a:hover { color: var(--gold); }
.whatsapp-cta { margin-top: 24px; }

.response-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 20px; text-align: center; }
.response-card i { font-size: 32px; color: var(--gold); display: block; margin-bottom: 10px; }
.response-card h4 { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.response-card p { font-size: 12px; color: var(--text-mid); line-height: 1.6; }
.response-card strong { color: var(--navy); }

/* ═══ FOOTER ═══ */
.footer { background: var(--navy-deep); padding: 56px 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 40px; }
.footer__brand p { font-size: 12px; color: #4a5168; line-height: 1.75; margin-top: 14px; max-width: 220px; }
.footer__social { display: flex; gap: 8px; margin-top: 16px; }
.footer__social a { width: 30px; height: 30px; border: 0.5px solid var(--border-dark); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: #4a5168; transition: all var(--transition); }
.footer__social a:hover { border-color: var(--gold); color: var(--gold); }
.footer__social i { font-size: 14px; }
.footer__col h4 { font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer__col a, .footer__col span { display: flex; align-items: flex-start; gap: 6px; font-size: 12px; color: #4a5168; margin-bottom: 8px; line-height: 1.55; transition: color var(--transition); }
.footer__col a i { font-size: 13px; color: var(--gold); margin-top: 1px; flex-shrink: 0; }
.footer__col a:hover { color: #8892a4; }
.footer__bottom { border-top: 1px solid #1a2030; padding: 20px 0; display: flex; justify-content: space-between; align-items: center; }
.footer__bottom span { font-size: 11px; color: #2d3348; }
.footer__badges { display: flex; gap: 10px; }
.badge { background: #1a2030; border: 0.5px solid var(--border-dark); border-radius: 4px; padding: 5px 10px; font-size: 10px; color: #4a5168; display: flex; align-items: center; gap: 5px; }
.badge i { font-size: 12px; color: var(--gold); }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .slide__title { font-size: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about-intro { grid-template-columns: 1fr; }
  .about-intro__visual { display: none; }
  .process-flow { grid-template-columns: 1fr; gap: 0; }
  .process-connector { display: none; }
  .svc-detail { grid-template-columns: 1fr; }
  .svc-detail--reverse .svc-detail__visual { order: 0; }
  .svc-detail--reverse .svc-detail__body { order: 0; }
  .svc-detail__visual { flex-direction: row; align-items: center; justify-content: flex-start; }
}

@media (max-width: 768px) {
  .topbar__contacts span:last-of-type { display: none; }
  .burger { display: flex; }
  .nav { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 16px 24px 24px; gap: 4px; box-shadow: var(--shadow-md); }
  .nav.open { display: flex; }
  .nav__link { padding: 10px 0; border-bottom: 1px solid var(--cream); }
  .nav__link::after { display: none; }
  .slide__content { grid-template-columns: 1fr; padding: 48px 24px 64px; min-height: auto; }
  .slide__right { display: none; }
  .slide__title { font-size: 32px; }
  .stats-bar__inner { grid-template-columns: repeat(2, 1fr); }
  .stats-bar__sep { display: none; }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .diffs-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-section__inner { flex-direction: column; align-items: flex-start; }
  .services-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
  .timeline::before { display: none; }
  .timeline__item { grid-template-columns: 1fr; gap: 8px; }
  .timeline__item--right .timeline__year,
  .timeline__item--right .timeline__content { order: 0; text-align: left; }
  .timeline__item--left .timeline__year { text-align: left; }
  .timeline__year { font-size: 28px; padding: 0; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .page-hero .container h1 { font-size: 32px; }
  .section__header h2 { font-size: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  .carousel__track { transition: none; }
  * { transition: none !important; animation: none !important; }
}
