/* ==========================================================================
   IMPACTO AVIATION — GLOBAL STYLESHEET
   Light, editorial, image-driven design system (white base / blue accents)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700;800&display=swap');

:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f2f6fc;
  --bg-card: #ffffff;
  --blue-main: #0057FF;
  --blue-light: #2563eb;
  --blue-pale: #eaf2ff;
  --blue-glow: rgba(0, 87, 255, 0.16);
  --white: #ffffff;
  --gradient-blue: linear-gradient(135deg, #0057FF, #00c6ff);
  --gradient-blue-deep: linear-gradient(135deg, #0057FF 0%, #0041c4 55%, #002e94 100%);
  --whatsapp: #25D366;

  --text-color: #0b1626;
  --text-muted: #5c6b84;
  --border-color: rgba(15, 32, 64, 0.12);

  --section-padding: 120px;
  --radius-card: 16px;
  --radius-btn: 8px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  /* Scrims used ONLY on top of photography (hero images, small photo chips) —
     tinted deep blue rather than neutral black to stay on-brand. */
  --overlay-hero: linear-gradient(180deg, rgba(3, 12, 34, 0.4) 0%, rgba(3, 12, 34, 0.12) 16%, rgba(3, 12, 34, 0.32) 48%, rgba(2, 9, 28, 0.82) 100%);
  --overlay-chip: rgba(3, 12, 34, 0.82);
  --overlay-card: linear-gradient(180deg, transparent 40%, rgba(2, 9, 28, 0.88) 100%);
}

/* ==========================================================================
   RESET
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; width: 100%; }

body {
  font-family: 'Space Grotesk', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-color);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font-family: inherit; color: inherit; }
svg { display: block; }

.container { width: 100%; max-width: 1320px; margin: 0 auto; padding: 0 24px; }
.container-wide { width: 100%; max-width: 1560px; margin: 0 auto; padding: 0 24px; }

section { position: relative; padding: 76px 0; }
@media (min-width: 768px) { section { padding: var(--section-padding) 0; } }

/* ==========================================================================
   UTILITIES / TYPOGRAPHY
   ========================================================================== */

.section-head { max-width: 700px; margin: 0 0 60px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }

.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em;
  color: var(--blue-light); margin-bottom: 18px; text-transform: uppercase;
}
.kicker::before { content: ''; width: 28px; height: 2px; background: var(--gradient-blue); }
.center .kicker::before { display: none; }
.center .kicker { justify-content: center; }
.kicker-center { justify-content: center; }

.section-title { font-size: clamp(1.9rem, 3.6vw, 2.9rem); font-weight: 800; letter-spacing: -0.015em; line-height: 1.1; margin-bottom: 18px; color: var(--text-color); }
.section-sub { color: var(--text-muted); font-size: 1.06rem; max-width: 60ch; }
.center .section-sub { margin: 0 auto; }

.text-gradient { background: var(--gradient-blue); -webkit-background-clip: text; background-clip: text; color: transparent; }
.bg-alt { background: var(--bg-secondary); }

/* ==========================================================================
   REVEAL / SCROLL ANIMATIONS
   ========================================================================== */

.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); will-change: opacity, transform; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-img { opacity: 0; transform: scale(1.06); transition: opacity 1s var(--ease), transform 1.2s var(--ease); }
.reveal-img.visible { opacity: 1; transform: scale(1); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ==========================================================================
   LOADING SCREEN
   ========================================================================== */

#loading-screen {
  position: fixed; inset: 0; background: var(--bg-primary); z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loading-screen.loaded { opacity: 0; visibility: hidden; }
.loader-mark { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.loader-mark img { height: 34px; width: auto; animation: pulseGlow 1.4s ease-in-out infinite; }
.loader-bar { width: 120px; height: 2px; background: rgba(15, 32, 64, 0.1); overflow: hidden; border-radius: 2px; }
.loader-bar::after { content: ''; display: block; width: 40%; height: 100%; background: var(--gradient-blue); animation: loaderSlide 0.9s ease-in-out infinite; }
@keyframes loaderSlide { 0% { transform: translateX(-100%); } 100% { transform: translateX(350%); } }
@keyframes pulseGlow { 0%, 100% { filter: drop-shadow(0 0 4px var(--blue-glow)); } 50% { filter: drop-shadow(0 0 12px var(--blue-glow)); } }

/* ==========================================================================
   NAVBAR — transparent over hero, white once scrolled
   ========================================================================== */

#navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}

#navbar.scrolled {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 4px 24px rgba(15, 32, 64, 0.06);
}

.nav-container { max-width: 1320px; margin: 0 auto; padding: 0 24px; height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.nav-logo { display: flex; align-items: center; gap: 10px; font-weight: 700; letter-spacing: 0.04em; white-space: nowrap; color: #fff; transition: color 0.3s ease; }
.nav-logo img { height: 34px; width: auto; flex-shrink: 0; }
.nav-logo .logo-dark { display: none; }
#navbar.scrolled .nav-logo .logo-light { display: none; }
#navbar.scrolled .nav-logo .logo-dark { display: block; }
.nav-logo span { font-size: 1.05rem; font-weight: 800; }
#navbar.scrolled .nav-logo { color: var(--text-color); }

.nav-logo span.nav-logo__reg {
  font-size: 0.6rem; font-weight: 600; letter-spacing: 0.02em; text-transform: uppercase;
  white-space: normal; line-height: 1.3; opacity: 0.8;
  padding-left: 10px; margin-left: 2px; border-left: 1px solid currentColor;
}

.nav-actions { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }

.nav-links { display: none; align-items: center; gap: 8px; }
.nav-links > li { position: relative; }
.nav-links a { display: block; padding: 10px 16px; font-size: 0.9rem; font-weight: 500; color: #fff; transition: color 0.3s ease; }
.nav-links a:hover, .nav-links a.active { color: #bcd4ff; }
#navbar.scrolled .nav-links a { color: var(--text-color); }
#navbar.scrolled .nav-links a:hover, #navbar.scrolled .nav-links a.active { color: var(--blue-light); }

.has-dropdown > a { display: flex; align-items: center; gap: 4px; }
.has-dropdown > a span { font-size: 0.7rem; transition: transform 0.3s ease; }
.has-dropdown:hover > a span { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 220px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 12px; padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  box-shadow: 0 20px 40px rgba(15, 32, 64, 0.14);
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { border-radius: 8px; padding: 10px 14px; font-size: 0.85rem; color: var(--text-color) !important; }
.dropdown a:hover { background: var(--blue-pale); color: var(--blue-light) !important; }

.lang-switch { display: flex; align-items: center; gap: 5px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em; flex-shrink: 0; }
.lang-switch a { color: #fff; opacity: 0.55; transition: opacity 0.3s ease, color 0.3s ease; padding: 2px; }
.lang-switch a:hover { opacity: 1; }
.lang-switch a.active { opacity: 1; color: #bcd4ff; }
.lang-switch span { color: rgba(255, 255, 255, 0.35); }
#navbar.scrolled .lang-switch a { color: var(--text-color); }
#navbar.scrolled .lang-switch a.active { color: var(--blue-light); }
#navbar.scrolled .lang-switch span { color: var(--border-color); }

.btn-nav {
  display: none; background: var(--blue-main); color: #fff !important;
  padding: 10px 24px; border-radius: 6px; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.03em;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease; white-space: nowrap;
}
.btn-nav:hover { background: var(--blue-light); box-shadow: 0 0 24px var(--blue-glow); transform: translateY(-2px); }

.hamburger { display: flex; flex-direction: column; justify-content: center; gap: 5px; width: 32px; height: 32px; z-index: 1001; }
.hamburger span { display: block; width: 100%; height: 2px; background: #fff; border-radius: 2px; transition: transform 0.35s ease, opacity 0.35s ease, background 0.3s ease; }
#navbar.scrolled .hamburger span { background: var(--text-color); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .btn-nav { display: inline-block; }
  .hamburger { display: none; }
}

@media (max-width: 767px) {
  .nav-links {
    position: fixed; top: 0; right: 0; height: 100vh; width: min(320px, 80vw);
    background: #ffffff;
    border-left: 1px solid var(--border-color);
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 4px;
    padding: 100px 32px 32px;
    transform: translateX(100%);
    transition: transform 0.45s var(--ease);
    z-index: 999;
    box-shadow: -10px 0 40px rgba(15, 32, 64, 0.12);
  }
  .nav-links.open { transform: translateX(0); display: flex; }
  .nav-links a { font-size: 1.1rem; padding: 14px 0; width: 100%; color: var(--text-color) !important; }
  .nav-links a:hover, .nav-links a.active { color: var(--blue-light) !important; }
  .has-dropdown { width: 100%; }
  .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    background: transparent; border: none; padding: 0 0 0 16px;
    max-height: 0; overflow: hidden; transition: max-height 0.4s ease; box-shadow: none;
  }
  .has-dropdown.open .dropdown { max-height: 300px; }
  .dropdown a { padding: 8px 0; font-size: 0.95rem; color: var(--text-muted) !important; }
  .nav-overlay { position: fixed; inset: 0; background: rgba(3, 12, 34, 0.45); opacity: 0; visibility: hidden; transition: opacity 0.4s ease, visibility 0.4s ease; z-index: 998; }
  .nav-overlay.open { opacity: 1; visibility: visible; }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 32px; border-radius: var(--radius-btn);
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.03em;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  white-space: nowrap;
}

.btn-primary { background: var(--gradient-blue); color: #fff; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 30px var(--blue-glow); }

.btn-outline { background: transparent; color: var(--text-color); border: 1px solid var(--border-color); }
.btn-outline:hover { border-color: var(--blue-main); color: var(--blue-light); transform: translateY(-3px); background: var(--blue-pale); }

.btn-outline-light { background: transparent; color: #fff; border: 1px solid rgba(255, 255, 255, 0.55); }
.btn-outline-light:hover { background: #fff; color: var(--blue-main); transform: translateY(-3px); }

.btn-white { background: #fff; color: var(--blue-main); }
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3); }

.btn-whatsapp { background: var(--whatsapp); color: #fff; }
.btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35); }

.btn-block { width: 100%; }
.btn-group { display: flex; flex-wrap: wrap; gap: 16px; }

.link-arrow { display: inline-flex; align-items: center; gap: 6px; color: var(--blue-light); font-size: 0.88rem; font-weight: 600; transition: gap 0.3s ease; }
.link-arrow:hover { gap: 12px; }

.whatsapp-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 900;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--whatsapp);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  animation: whatsappPulse 2.6s ease-in-out infinite;
  transition: transform 0.3s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 28px; height: 28px; color: #fff; }
@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0); }
}

/* ==========================================================================
   HERO MEDIA — full-bleed image hero, blue scrim, white text (on every page)
   ========================================================================== */

.hero-media {
  position: relative; min-height: 62vh; display: flex; align-items: flex-end;
  overflow: hidden; padding: 180px 0 80px;
}
.hero-media.hero-tall { min-height: 92vh; align-items: center; padding: 160px 0 100px; }

.hero-media__bg { position: absolute; inset: 0; z-index: 0; }
.hero-media__bg img, .hero-media__bg video { width: 100%; height: 100%; object-fit: cover; transform: scale(1.03); }
.hero-media__bg::after { content: ''; position: absolute; inset: 0; background: var(--overlay-hero); }

.hero-media__content {
  position: relative; z-index: 2;
  color: #fff;
  --text-color: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.82);
  --border-color: rgba(255, 255, 255, 0.28);
}

.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--text-muted); margin-bottom: 22px; }
.breadcrumb a { color: var(--text-muted); transition: color 0.3s ease; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: #bcd4ff; }

.hero-media h1 { font-size: clamp(2.1rem, 4.8vw, 4rem); font-weight: 800; max-width: 820px; letter-spacing: -0.015em; line-height: 1.08; color: #fff; }
.hero-media .page-sub { margin-top: 20px; max-width: 620px; color: rgba(255, 255, 255, 0.85); font-size: 1.12rem; }

.tag-pill {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.5); background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px); border-radius: 20px; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.1em; color: #fff; margin-bottom: 24px;
}
.tag-pill::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #fff; box-shadow: 0 0 8px #fff; }

.hero-word { display: inline-block; overflow: hidden; vertical-align: top; }
.hero-word span { display: inline-block; transform: translateY(110%); animation: wordSlideUp 0.9s var(--ease) forwards; }
@keyframes wordSlideUp { to { transform: translateY(0); } }

.hero-media p.lead { font-size: 1.18rem; color: rgba(255, 255, 255, 0.88); max-width: 540px; margin: 20px 0 40px; }

.hero-stat-inline {
  position: relative; z-index: 2; display: inline-flex; align-items: center; gap: 14px; margin-top: 44px;
  padding: 18px 26px; background: rgba(255, 255, 255, 0.14); backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.3); border-radius: 14px;
}
.hero-stat-inline .big-number { font-size: 2.2rem; font-weight: 800; line-height: 1; color: #fff; }
.hero-stat-inline .big-label { font-size: 0.78rem; color: rgba(255, 255, 255, 0.85); line-height: 1.3; }

.stats-section { padding: 52px 0; }

.stats-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: stretch; row-gap: 32px; }
.stat-item { display: flex; align-items: center; gap: 16px; flex: 0 0 50%; justify-content: center; padding: 4px 20px; }
@media (min-width: 640px) { .stat-item { flex: 0 0 25%; padding: 4px 28px; } .stat-item:not(:first-child) { border-left: 1px solid rgba(255, 255, 255, 0.18); } }
.stat-item__icon { width: 34px; height: 34px; flex-shrink: 0; color: rgba(255, 255, 255, 0.75); }
.stat-item__icon svg { width: 100%; height: 100%; }
.stat-item__number { font-size: clamp(1.7rem, 3vw, 2.1rem); font-weight: 800; line-height: 1; color: #fff; }
.stat-item__label { font-size: 0.74rem; color: rgba(255, 255, 255, 0.72); line-height: 1.35; letter-spacing: 0.04em; text-transform: uppercase; margin-top: 5px; }

.hero-socials { display: flex; align-items: center; gap: 16px; margin-top: 36px; position: relative; z-index: 2; }
.social-icon {
  display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--border-color); color: var(--text-muted);
  transition: color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, background 0.3s ease;
}
.social-icon svg { width: 18px; height: 18px; }
.social-icon:hover { color: #fff; border-color: #fff; background: var(--blue-main); transform: translateY(-3px); }
footer .social-icon:hover { color: #fff; border-color: var(--blue-main); background: var(--blue-main); }

/* ==========================================================================
   SPLIT BLOCK — image + text, alternating
   ========================================================================== */

.split { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 968px) {
  .split { grid-template-columns: 1fr 1fr; gap: 6vw; }
  .split.split-wide-media { grid-template-columns: 1.15fr 0.85fr; }
  .split.reverse { direction: rtl; }
  .split.reverse > * { direction: ltr; }
}

.split-media { position: relative; }
.split-media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 20px; box-shadow: 0 20px 50px rgba(15, 32, 64, 0.12); }
.split-media.wide img { aspect-ratio: 5 / 4; }
.split-media.square img { aspect-ratio: 1 / 1; }
.split-media::before { content: ''; position: absolute; top: 20px; left: 20px; right: -20px; bottom: -20px; border: 1px solid rgba(0, 87, 255, 0.3); border-radius: 20px; z-index: -1; }
@media (min-width: 968px) { .split.reverse .split-media::before { left: -20px; right: 20px; } }

.split-media .media-tag {
  position: absolute; bottom: 20px; left: 20px; padding: 10px 18px;
  background: var(--overlay-chip); backdrop-filter: blur(10px);
  border-radius: 10px; font-size: 0.76rem; font-weight: 700; letter-spacing: 0.06em; color: #fff;
}

.split-content p { color: var(--text-muted); margin-bottom: 20px; font-size: 1rem; }
.split-content .section-title { margin-bottom: 22px; }

/* ==========================================================================
   IMAGE BAND — reserved for small contained photo bands (e.g. map)
   ========================================================================== */

.image-band { position: relative; overflow: hidden; }
.image-band__bg { position: absolute; inset: 0; z-index: 0; }
.image-band__bg img { width: 100%; height: 100%; object-fit: cover; }
.image-band__bg::after { content: ''; position: absolute; inset: 0; background: var(--overlay-hero); }
.image-band__content {
  position: relative; z-index: 1;
  --text-color: #ffffff; --text-muted: rgba(255, 255, 255, 0.82); --border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}
.image-band--flush { padding: 0; }

/* Numbers */
.numbers-grid { display: grid; grid-template-columns: 1fr; gap: 40px; text-align: center; }
@media (min-width: 768px) { .numbers-grid { grid-template-columns: repeat(3, 1fr); } }
.number-item .counter { font-size: clamp(2.6rem, 5vw, 4rem); font-weight: 800; background: var(--gradient-blue); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; }
.number-item p { margin-top: 14px; color: var(--text-muted); font-size: 0.95rem; letter-spacing: 0.02em; }
.number-item .div-line { width: 40px; height: 2px; background: var(--gradient-blue); margin: 0 auto 20px; }

/* About the company — home page snapshot (stats + photo + history panel) */
.about-home { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: stretch; }
@media (min-width: 968px) { .about-home { grid-template-columns: 1.3fr 1fr; gap: 40px; } }

.about-home__left { display: flex; flex-direction: column; gap: 32px; }

.about-home__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.about-home__stats .counter { font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 800; background: var(--gradient-blue); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; }
.about-home__stats p { margin-top: 10px; color: var(--blue-light); font-size: 0.92rem; font-weight: 600; }

.about-home__media { flex: 1; border-radius: var(--radius-card); overflow: hidden; min-height: 220px; box-shadow: 0 20px 50px rgba(15, 32, 64, 0.12); }
.about-home__media img { width: 100%; height: 100%; object-fit: cover; }

.about-home__panel {
  background: var(--gradient-blue-deep);
  border-radius: var(--radius-card);
  padding: 48px 40px;
  display: flex; flex-direction: column; justify-content: center;
  color: #fff;
}
.about-home__panel .kicker { color: #fff; font-size: 0.8rem; }
.about-home__panel .kicker::before { background: rgba(255, 255, 255, 0.7); }
.about-home__panel h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; line-height: 1.15; margin: 14px 0 22px; }
.about-home__panel p { color: rgba(255, 255, 255, 0.85); font-size: 0.95rem; line-height: 1.75; }

/* Section title with vertical accent bar + two-tone color (used for Infraestrutura) */
.title-accent { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; position: relative; z-index: 1; }
.title-accent::before { content: ''; width: 4px; align-self: stretch; min-height: 38px; background: var(--gradient-blue); border-radius: 2px; flex-shrink: 0; }
.title-accent .section-title, .split-content .title-accent .section-title { margin-bottom: 0; }
.title-accent .section-title .accent { color: var(--blue-light); }

.infra-media { border-radius: var(--radius-card); overflow: hidden; box-shadow: 0 20px 50px rgba(15, 32, 64, 0.12); }
.infra-media img { width: 100%; height: auto; display: block; }

/* Quote */
.quote-band { text-align: center; max-width: 900px; margin: 0 auto; }
.quote-band .quote-mark-big { font-size: 5rem; font-family: Georgia, serif; color: var(--blue-light); line-height: 1; margin-bottom: 8px; }
.quote-band p.quote-lead { font-size: clamp(1.4rem, 2.6vw, 2.1rem); font-weight: 600; line-height: 1.4; color: var(--text-color); }
.quote-band .quote-cite { margin-top: 24px; color: var(--text-muted); font-size: 0.9rem; letter-spacing: 0.04em; }
.split-content.quote-band { text-align: left; max-width: none; margin: 0; }

/* ==========================================================================
   PARTICLES (subtle accent on hero)
   ========================================================================== */

.particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.particle { position: absolute; border-radius: 50%; background: #fff; opacity: 0.55; animation: float 8s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translate(0, 0); opacity: 0.3; } 50% { transform: translate(12px, -30px); opacity: 0.8; } }

/* ==========================================================================
   EDITORIAL SERVICE ROWS — alternating image/text
   ========================================================================== */

.service-row { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; padding: 48px 0; border-top: 1px solid var(--border-color); }
.service-row:last-child { border-bottom: 1px solid var(--border-color); }
@media (min-width: 900px) {
  .service-row { grid-template-columns: 0.85fr 1.15fr; gap: 6vw; }
  .service-row.reverse { grid-template-columns: 1.15fr 0.85fr; }
  .service-row.reverse .service-row__media { order: 2; }
  .service-row.reverse .service-row__text { order: 1; }
}

.service-row__media { position: relative; border-radius: 18px; overflow: hidden; box-shadow: 0 20px 50px rgba(15, 32, 64, 0.1); }
.service-row__media img { width: 100%; aspect-ratio: 16/11; object-fit: cover; transition: transform 0.6s var(--ease); }
.service-row:hover .service-row__media img { transform: scale(1.05); }

.service-row__num { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.15em; color: var(--blue-light); margin-bottom: 14px; display: block; }
.service-row__text h3 { font-size: clamp(1.4rem, 2.2vw, 1.9rem); font-weight: 700; margin-bottom: 16px; letter-spacing: -0.01em; color: var(--text-color); }
.service-row__text p { color: var(--text-muted); font-size: 1rem; margin-bottom: 22px; max-width: 48ch; }

.tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.tag-row li { font-size: 0.78rem; padding: 7px 14px; border-radius: 20px; background: var(--blue-pale); color: var(--blue-light); font-weight: 600; }

/* ==========================================================================
   FAIXA LIST — horizontal numbered rows
   ========================================================================== */

.faixa-list { border-top: 1px solid var(--border-color); }
.faixa-list--plain { border-top: none; }

.faixa-item { display: grid; grid-template-columns: 60px 1fr; gap: 24px; padding: 30px 0; border-bottom: 1px solid var(--border-color); transition: padding-left 0.3s ease, background 0.3s ease; }
.faixa-item:hover { padding-left: 12px; background: var(--blue-pale); }
@media (min-width: 768px) { .faixa-item { grid-template-columns: 90px 1fr 200px; align-items: center; } }

.faixa-item__num { font-size: 1.6rem; font-weight: 800; color: rgba(15, 32, 64, 0.15); }
.faixa-item__body h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; color: var(--text-color); }
.faixa-item__body p { color: var(--text-muted); font-size: 0.92rem; max-width: 56ch; }
.faixa-item__icon { display: none; color: var(--blue-light); }
@media (min-width: 768px) { .faixa-item__icon { display: flex; justify-content: flex-end; } .faixa-item__icon svg { width: 32px; height: 32px; } }

/* ==========================================================================
   CARDS — clean white with soft elevation (replaces dark glassmorphism)
   ========================================================================== */

.badges-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .badges-grid { grid-template-columns: repeat(3, 1fr); } }

.badge-card {
  background: #fff; border: 1px solid var(--border-color); border-radius: var(--radius-card);
  padding: 36px 28px; box-shadow: 0 2px 16px rgba(15, 32, 64, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.badge-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0, 87, 255, 0.14); border-color: rgba(0, 87, 255, 0.3); }
.badge-icon { width: 48px; height: 48px; margin-bottom: 20px; color: var(--blue-light); }
.badge-icon svg { width: 100%; height: 100%; }
.badge-icon img { width: 100%; height: 100%; object-fit: contain; }
.badge-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 8px; color: var(--text-color); }
.badge-card p { color: var(--text-muted); font-size: 0.9rem; }

.center-cta { text-align: center; margin-top: 48px; }

.badge-list { display: flex; flex-direction: column; gap: 16px; }
.badge-card--row { display: flex; align-items: center; gap: 18px; padding: 20px 24px; }
.badge-icon--sm { margin: 0; width: 36px; height: 36px; flex-shrink: 0; }
.badge-card--row h3 { font-size: 1rem; margin-bottom: 2px; }
.badge-card--row p { margin: 0; }

/* ==========================================================================
   OPERATIONS MAP — dark band with pinned network diagram
   ========================================================================== */

.ops-section {
  background: var(--gradient-blue-deep); color: #fff; text-align: center;
  --text-color: #ffffff; --text-muted: rgba(255, 255, 255, 0.85); --border-color: rgba(255, 255, 255, 0.3);
}
.ops-section .kicker { color: #fff; }
.ops-section .kicker::before { background: rgba(255, 255, 255, 0.7); }
.ops-section .section-title { color: #fff; }

.ops-map { position: relative; max-width: 680px; margin: 56px auto 0; aspect-ratio: 1 / 1; }
.ops-map__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; opacity: 0.5; }
.ops-map__lines { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.ops-map__lines polyline { fill: none; stroke: rgba(255, 255, 255, 0.4); stroke-width: 0.3; stroke-linejoin: round; stroke-linecap: round; }

.ops-pin { position: absolute; width: 9px; height: 9px; background: #fff; border-radius: 50%; transform: translate(-50%, -50%); box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.15); }

.ops-label {
  position: absolute; transform: translate(-50%, -50%); background: rgba(10, 30, 90, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.45); border-radius: 8px; padding: 7px 14px;
  font-weight: 800; font-size: 0.76rem; letter-spacing: 0.03em; white-space: nowrap; backdrop-filter: blur(6px);
}

.ops-address-grid { display: grid; grid-template-columns: 1fr; gap: 28px; margin-top: 64px; text-align: left; }
@media (min-width: 768px) { .ops-address-grid { grid-template-columns: repeat(3, 1fr); } }
.ops-address { display: flex; gap: 12px; align-items: flex-start; }
.ops-address .ops-dot { width: 8px; height: 8px; border-radius: 50%; background: #fff; flex-shrink: 0; margin-top: 6px; }
.ops-address strong { display: block; color: #fff; font-weight: 800; margin-bottom: 3px; letter-spacing: 0.02em; }
.ops-address p { font-size: 0.85rem; line-height: 1.55; color: rgba(255, 255, 255, 0.82); margin: 0; }

@media (max-width: 640px) {
  .ops-map { max-width: 100%; }
  .ops-label { font-size: 0.62rem; padding: 5px 9px; border-radius: 6px; }
}

/* Certification cards with photo accent — varied sizing */
.cert-cards { display: grid; grid-template-columns: 1fr; gap: 24px; max-width: 1200px; margin: 0 auto; }
@media (min-width: 900px) {
  .cert-cards { grid-template-columns: 1.15fr 0.85fr; grid-template-rows: auto auto; }
  .cert-card--lead { grid-row: span 2; }
}

.cert-card {
  background: #fff; border: 1px solid var(--border-color); border-radius: var(--radius-card);
  overflow: hidden; box-shadow: 0 2px 16px rgba(15, 32, 64, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex; flex-direction: column;
}
.cert-card:hover { transform: translateY(-6px); box-shadow: 0 24px 46px rgba(0, 87, 255, 0.16); border-color: rgba(0, 87, 255, 0.3); }

.cert-card__media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.cert-card--lead .cert-card__media { aspect-ratio: 16/13; }
.cert-card__media img { width: 100%; height: 100%; object-fit: cover; }
.cert-card__media::after { content: ''; position: absolute; inset: 0; background: var(--overlay-card); }
.cert-card__media .cert-icon { position: absolute; bottom: 16px; left: 20px; z-index: 1; width: 40px; height: 40px; color: #fff; }

/* Official certification seal — logo on a plain white plaque, not a cropped photo */
.cert-card__badge {
  display: flex; align-items: center; justify-content: center;
  background: #fff; padding: 44px 32px; aspect-ratio: 16/10;
  border-bottom: 1px solid var(--border-color);
}
.cert-card--lead .cert-card__badge { aspect-ratio: 16/13; padding: 56px 40px; }
.cert-card__badge img { max-width: 65%; max-height: 150px; width: auto; height: auto; object-fit: contain; }

.cert-card__body { padding: 30px 30px 34px; }
.cert-card h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 4px; color: var(--text-color); }
.cert-card .cert-subtitle { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 14px; }
.cert-number { display: inline-block; padding: 6px 16px; background: var(--blue-pale); border-radius: 20px; font-size: 0.76rem; font-weight: 700; color: var(--blue-light); margin-bottom: 18px; }
.cert-card .cert-desc { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 24px; }
.cert-docs-label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.02em; text-transform: uppercase; color: var(--text-color); margin-bottom: 12px; }

.institutional-text { max-width: 780px; margin: 0 auto; text-align: center; color: var(--text-color); font-size: 1.15rem; line-height: 1.8; font-weight: 500; }

/* ==========================================================================
   FEATURE GRID / CHECKLIST — thin hairline grid on light cells
   ========================================================================== */

.feature-grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--border-color); border: 1px solid var(--border-color); border-radius: var(--radius-card); overflow: hidden; }
@media (min-width: 640px) { .feature-grid { grid-template-columns: repeat(3, 1fr); } }
.feature-item { display: flex; align-items: flex-start; gap: 16px; background: #fff; padding: 28px 26px; transition: background 0.3s ease; }
.bg-alt .feature-item { background: #fff; }
.feature-item:hover { background: var(--blue-pale); }
.feature-item .icon-check { width: 22px; height: 22px; flex-shrink: 0; color: var(--blue-light); margin-top: 2px; }
.feature-item p { font-size: 0.94rem; color: var(--text-muted); }

.checklist-grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--border-color); border: 1px solid var(--border-color); border-radius: var(--radius-card); overflow: hidden; }
@media (min-width: 768px) { .checklist-grid { grid-template-columns: repeat(2, 1fr); } }
.check-item { display: flex; align-items: center; gap: 14px; padding: 20px 24px; background: #fff; transition: background 0.3s ease; }
.check-item:hover { background: var(--blue-pale); }
.check-item svg { width: 20px; height: 20px; color: var(--blue-light); flex-shrink: 0; }
.check-item span { font-size: 0.94rem; color: var(--text-color); }

.pill-grid { display: flex; flex-wrap: wrap; gap: 14px; }
.pill-grid.center { justify-content: center; }
.pill-item { padding: 14px 26px; border: 1px solid var(--border-color); border-radius: 30px; font-size: 0.9rem; color: var(--text-muted); background: var(--bg-secondary); transition: color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, background 0.3s ease; }
.pill-item:hover { color: var(--blue-light); border-color: var(--blue-main); background: var(--blue-pale); transform: translateY(-3px); }

.pill-grid--sm { gap: 8px; }
.pill-grid--sm .pill-item { padding: 8px 16px; font-size: 0.78rem; font-weight: 600; }

.compliance-badge { max-width: 720px; margin: 0 auto; text-align: center; padding: 34px 40px; border: 1px solid rgba(0, 87, 255, 0.25); background: var(--blue-pale); border-radius: var(--radius-card); font-size: 1.05rem; font-weight: 600; color: var(--blue-light); }

/* ==========================================================================
   MVV — Missão / Visão / Valores — asymmetric editorial layout
   ========================================================================== */

.mvv-layout { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 900px) { .mvv-layout { grid-template-columns: 1.3fr 1fr; grid-template-rows: auto auto; gap: 24px; } .mvv-mission { grid-row: span 2; } }

.mvv-block {
  background: #fff; border: 1px solid var(--border-color); border-radius: var(--radius-card);
  padding: 40px 36px; box-shadow: 0 2px 16px rgba(15, 32, 64, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex; flex-direction: column; justify-content: center;
}
.mvv-block:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0, 87, 255, 0.14); }
.mvv-mission { padding: 52px 44px; background: var(--blue-pale); border-color: rgba(0, 87, 255, 0.18); }
.mvv-block .service-icon { margin-bottom: 22px; }
.mvv-block h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 16px; letter-spacing: 0.04em; color: var(--blue-light); }
.mvv-mission h3 { font-size: 1.3rem; }
.mvv-block p { color: var(--text-muted); font-size: 0.95rem; }
.mvv-mission p { font-size: 1.15rem; color: var(--text-color); font-weight: 500; line-height: 1.5; }

.service-icon { width: 40px; height: 40px; color: var(--blue-light); }
.service-icon svg { width: 100%; height: 100%; }

.values-list { display: grid; grid-template-columns: 1fr; gap: 10px; margin-top: 4px; }
.values-list li { color: var(--text-muted); font-size: 0.9rem; position: relative; padding-left: 16px; }
.values-list li::before { content: ''; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; background: var(--blue-light); border-radius: 50%; }

/* ==========================================================================
   TIMELINE
   ========================================================================== */

.timeline { position: relative; padding-left: 32px; }
.timeline::before { content: ''; position: absolute; left: 6px; top: 6px; bottom: 6px; width: 1px; background: var(--border-color); }
.timeline-item { position: relative; padding-bottom: 40px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before { content: ''; position: absolute; left: -32px; top: 4px; width: 13px; height: 13px; border-radius: 50%; background: var(--bg-primary); border: 2px solid var(--blue-main); box-shadow: 0 0 0 4px var(--blue-pale); }
.timeline-year { font-size: 1.4rem; font-weight: 800; color: var(--blue-light); margin-bottom: 6px; }
.timeline-item p { color: var(--text-muted); font-size: 0.92rem; }

/* ==========================================================================
   CLIENT LOGOS — autoplay marquee
   ========================================================================== */

.logos-section { padding-bottom: 60px; }

.logos-marquee {
  margin-top: 40px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.logos-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: logosScroll 36s linear infinite;
}

.logos-marquee:hover .logos-track { animation-play-state: paused; }

.logos-track .logo-slide {
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  width: 160px; height: 90px;
  padding: 0 24px;
}

.logos-track img {
  max-width: 100%; max-height: 56px; width: auto; height: auto;
  object-fit: contain;
  filter: grayscale(1) opacity(0.55);
  transition: filter 0.3s ease;
}

.logos-track .logo-slide:hover img { filter: grayscale(0) opacity(1); }

@keyframes logosScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .logos-track { animation: none; }
}

/* ==========================================================================
   GALLERY MOSAIC
   ========================================================================== */

.gallery-mosaic { display: grid; grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; gap: 12px; }
@media (min-width: 768px) { .gallery-mosaic { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 160px; } .gallery-mosaic .g-tall { grid-row: span 2; } }
.gallery-mosaic .g-wide { grid-column: span 2; }
.gallery-mosaic img { width: 100%; height: 100%; object-fit: cover; border-radius: 14px; transition: transform 0.5s var(--ease); }
.gallery-mosaic a, .gallery-mosaic .g-photo { display: block; overflow: hidden; border-radius: 14px; position: relative; box-shadow: 0 2px 14px rgba(15, 32, 64, 0.08); }
.gallery-mosaic a:hover img, .gallery-mosaic .g-photo:hover img { transform: scale(1.08); }
.gallery-mosaic a::after, .gallery-mosaic .g-photo::after { content: ''; position: absolute; inset: 0; border-radius: 14px; border: 1px solid var(--border-color); pointer-events: none; }

/* ==========================================================================
   BEFORE / AFTER SLIDER (photographic)
   ========================================================================== */

.compare-wrap { max-width: 960px; margin: 0 auto; }
.compare-slider { position: relative; width: 100%; aspect-ratio: 16 / 9; border-radius: var(--radius-card); overflow: hidden; border: 1px solid var(--border-color); box-shadow: 0 12px 40px rgba(15, 32, 64, 0.1); user-select: none; background: var(--bg-secondary); }
.compare-before, .compare-after { position: absolute; inset: 0; display: flex; align-items: flex-end; justify-content: flex-start; }
.compare-before img, .compare-after img { width: 100%; height: 100%; object-fit: cover; }
.compare-before img { filter: grayscale(1) brightness(0.68) contrast(1.05); }
.compare-after { clip-path: inset(0 50% 0 0); }
.compare-tag { position: relative; z-index: 2; margin: 20px; padding: 8px 18px; border-radius: 20px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; background: var(--overlay-chip); backdrop-filter: blur(8px); color: #fff; }
.compare-handle-track { position: absolute; inset: 0; display: flex; align-items: center; width: 100%; margin: 0; appearance: none; -webkit-appearance: none; background: transparent; cursor: ew-resize; z-index: 3; }
.compare-handle-track::-webkit-slider-thumb { -webkit-appearance: none; width: 44px; height: 44px; border-radius: 50%; background: #fff; border: 3px solid var(--blue-main); box-shadow: 0 4px 16px rgba(15, 32, 64, 0.25); cursor: ew-resize; }
.compare-handle-track::-moz-range-thumb { width: 44px; height: 44px; border-radius: 50%; background: #fff; border: 3px solid var(--blue-main); box-shadow: 0 4px 16px rgba(15, 32, 64, 0.25); cursor: ew-resize; }
.compare-handle-track::-webkit-slider-runnable-track { background: transparent; }
.compare-divider { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: #fff; box-shadow: 0 0 12px rgba(0, 0, 0, 0.3); z-index: 2; pointer-events: none; }
.compare-labels { display: flex; justify-content: space-between; margin-top: 16px; color: var(--text-muted); font-size: 0.85rem; }

/* ==========================================================================
   TESTIMONIALS — light elevated cards
   ========================================================================== */

.testimonial-track { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 900px) { .testimonial-track { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card { background: #fff; border: 1px solid var(--border-color); border-radius: var(--radius-card); padding: 34px 30px; box-shadow: 0 2px 16px rgba(15, 32, 64, 0.05); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.testimonial-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0, 87, 255, 0.14); }
.quote-mark { font-size: 3rem; font-weight: 800; color: var(--blue-light); line-height: 1; margin-bottom: 12px; font-family: Georgia, serif; }
.testimonial-card p.quote-text { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 28px; min-height: 96px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.avatar-circle { width: 46px; height: 46px; border-radius: 50%; background: var(--gradient-blue); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.1rem; flex-shrink: 0; color: #fff; }
.testimonial-author h4 { font-size: 0.95rem; font-weight: 700; color: var(--text-color); }
.testimonial-author span { font-size: 0.8rem; color: var(--text-muted); }

@media (max-width: 899px) {
  .testimonial-track { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 20px; padding-bottom: 8px; -ms-overflow-style: none; scrollbar-width: none; }
  .testimonial-track::-webkit-scrollbar { display: none; }
  .testimonial-card { min-width: 84%; scroll-snap-align: center; }
}

/* ==========================================================================
   CTA SECTIONS — solid vivid blue band (the site's "strong blue" accent)
   ========================================================================== */

.cta-section {
  text-align: center; background: var(--gradient-blue-deep); overflow: hidden; position: relative;
  --text-color: #ffffff; --text-muted: rgba(255, 255, 255, 0.85); --border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}
.cta-section h2 { font-size: clamp(1.9rem, 4vw, 3.1rem); font-weight: 800; margin-bottom: 18px; max-width: 780px; margin-left: auto; margin-right: auto; color: #fff; }
.cta-section p { color: rgba(255, 255, 255, 0.88); max-width: 600px; margin: 0 auto 40px; font-size: 1.05rem; }
.cta-section .btn-group { justify-content: center; }
.cta-section .kicker { color: #fff; }
.cta-section .kicker::before { background: rgba(255, 255, 255, 0.7); }

/* ==========================================================================
   FOOTER
   ========================================================================== */

footer { background: var(--bg-secondary); border-top: 1px solid var(--border-color); padding: 80px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 48px; margin-bottom: 56px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1.2fr; gap: 40px; } }
.footer-logo { display: flex; align-items: center; gap: 10px; font-weight: 800; margin-bottom: 18px; color: var(--text-color); }
.footer-logo img { height: 30px; width: auto; }
.footer-col p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 24px; max-width: 320px; }
.footer-col h4 { font-size: 0.85rem; letter-spacing: 0.08em; margin-bottom: 20px; color: var(--text-color); }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: var(--text-muted); font-size: 0.9rem; transition: color 0.3s ease; }
.footer-links a:hover { color: var(--blue-light); }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; color: var(--text-muted); font-size: 0.9rem; }
.footer-contact svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; color: var(--blue-light); }
.footer-socials { display: flex; gap: 12px; }
.footer-bottom { border-top: 1px solid var(--border-color); padding-top: 28px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; color: var(--text-muted); font-size: 0.8rem; }

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */

.contact-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 968px) { .contact-grid { grid-template-columns: 1.3fr 1fr; gap: 48px; } }

.contact-form-card { background: #fff; border: 1px solid var(--border-color); border-radius: var(--radius-card); padding: 44px; box-shadow: 0 4px 24px rgba(15, 32, 64, 0.06); }
.contact-form-card h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 32px; color: var(--text-color); }

.form-row { display: grid; grid-template-columns: 1fr; gap: 24px; margin-bottom: 24px; }
@media (min-width: 640px) { .form-row.two-col { grid-template-columns: 1fr 1fr; } }

.field { position: relative; }
.field input, .field select, .field textarea {
  width: 100%; background: var(--bg-secondary); border: 1px solid var(--border-color);
  border-radius: 10px; padding: 20px 16px 10px; font-size: 0.95rem; color: var(--text-color);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.field select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235c6b84' stroke-width='1.5' fill='none' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; padding-top: 20px;
}
.field textarea { resize: vertical; min-height: 130px; padding-top: 22px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue-main); background: #fff; box-shadow: 0 0 0 3px var(--blue-glow); }

.field label { position: absolute; top: 16px; left: 16px; color: var(--text-muted); font-size: 0.95rem; pointer-events: none; transition: top 0.25s ease, font-size 0.25s ease, color 0.25s ease; }
.field select ~ label, .field.filled label, .field input:focus ~ label, .field textarea:focus ~ label,
.field input:not(:placeholder-shown) ~ label, .field textarea:not(:placeholder-shown) ~ label { top: 6px; font-size: 0.68rem; color: var(--blue-light); }
.field.select-field label { top: 6px; font-size: 0.68rem; color: var(--blue-light); }

.form-success {
  display: none; align-items: center; gap: 12px; padding: 18px 22px;
  background: #ecfdf5; border: 1px solid #a7f3d0; border-radius: 10px; color: #059669; font-size: 0.9rem; font-weight: 600; margin-top: 20px;
  opacity: 0; transform: translateY(-10px); transition: opacity 0.4s ease, transform 0.4s ease;
}
.form-success.show { display: flex; opacity: 1; transform: translateY(0); }

.form-error {
  display: none; align-items: center; gap: 12px; padding: 18px 22px;
  background: #fef2f2; border: 1px solid #fecaca; border-radius: 10px; color: #dc2626; font-size: 0.9rem; font-weight: 600; margin-top: 20px;
  opacity: 0; transform: translateY(-10px); transition: opacity 0.4s ease, transform 0.4s ease;
}
.form-error.show { display: flex; opacity: 1; transform: translateY(0); }

.btn.is-loading { opacity: 0.6; pointer-events: none; }

.contact-info-card { border-radius: var(--radius-card); overflow: hidden; height: 100%; background: #fff; border: 1px solid var(--border-color); box-shadow: 0 4px 24px rgba(15, 32, 64, 0.06); display: flex; flex-direction: column; }
.contact-info-card__media { position: relative; aspect-ratio: 16 / 8; overflow: hidden; }
.contact-info-card__media img { width: 100%; height: 100%; object-fit: cover; }
.contact-info-card__body { padding: 32px; }
.contact-info-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 24px; letter-spacing: 0.04em; color: var(--text-color); }

.info-block { display: flex; gap: 14px; margin-bottom: 20px; }
.info-block:last-child { margin-bottom: 0; }
.info-block svg { width: 19px; height: 19px; color: var(--blue-light); flex-shrink: 0; margin-top: 3px; }
.info-block img.cert-mark { width: 22px; height: 22px; object-fit: contain; flex-shrink: 0; margin-top: 1px; }
.info-block h5 { font-size: 0.76rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.info-block p, .info-block a { font-size: 0.92rem; color: var(--text-color); }

.map-band { position: relative; border-radius: var(--radius-card); overflow: hidden; margin-top: 48px; aspect-ratio: 16/6; box-shadow: 0 12px 40px rgba(15, 32, 64, 0.1); }
.map-band img { width: 100%; height: 100%; object-fit: cover; }
.map-band::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(3,12,34,0.25), rgba(2,9,28,0.72)); }
.map-band__content { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 10px; text-align: center; padding: 24px; z-index: 1; color: #fff; }
.map-band__content svg { width: 32px; height: 32px; color: #fff; }
.map-band__content p { font-size: 1rem; font-weight: 600; max-width: 480px; }

/* ==========================================================================
   MISC HELPERS
   ========================================================================== */

.mt-sm { margin-top: 16px; }
.mt-md { margin-top: 32px; }
.mt-lg { margin-top: 56px; }
.mb-md { margin-bottom: 32px; }
.mb-lg { margin-bottom: 56px; }
.overflow-hidden { overflow: hidden; }
.max-narrow { max-width: 760px; }

@media (max-width: 767px) { .hide-mobile { display: none; } }
@media (min-width: 768px) { .hide-desktop { display: none; } }
