/* ============================================
   CURITIBA VISTOS — Apple-Inspired Premium Design
   Cinematic · Elegant · Immersive
   Brandkit: Tenor Sans, Poppins
   ============================================ */

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

/* --- Design Tokens (Brandkit Corrected) --- */
:root {
  --primary: #0C2C81;
  /* Azul Real de Apoio */
  --primary-rgb: 12, 44, 129;
  --primary-light: #1643c2;
  /* Azul de Apoio mais brilhante */
  --primary-dark: #03172E;
  /* Navy Profundo Principal */

  --accent: #C2AA56;
  /* Dourado da Marca */
  --accent-rgb: 194, 170, 86;
  --accent-light: #DFCB81;
  /* Dourado Suave */
  --accent-dark: #a68d3a;

  --bg-cream: #F4F5F7;
  /* Off-White/Cinza Claro do manual */
  --bg-white: #FFFFFF;
  /* Branco Puro */
  --bg-dark: #03172E;
  /* Navy Profundo Principal */

  --text-dark: #03172E;
  /* Navy Profundo Principal for deep dark text */
  --text-medium: #3e4756;
  /* Cinza Texto Escuro */
  --text-muted: #718294;
  /* Cinza Texto mutado sutil */
  --text-light: #F4F5F7;
  /* Off-White/Cinza Claro for light texts */
  --text-light-muted: rgba(244, 245, 247, 0.6);

  --glass: rgba(3, 23, 46, 0.45);
  /* Glassmorphic navy background using #03172E */
  --glass-border: rgba(255, 255, 255, 0.08);
  /* Borda branca translúcida */
  --glass-light: rgba(244, 245, 247, 0.7);
  /* Glassmorphic off white background */
  --glass-light-border: rgba(3, 23, 46, 0.04);

  --gold-glow: rgba(194, 170, 86, 0.15);
  --star: #C2AA56;
  /* Brand Gold for ratings */

  --font-display: 'Tenor Sans', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --font-ui: 'Poppins', sans-serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --container: 1200px;
  --container-sm: 900px;
  --container-xs: 700px;
  --nav-height: 72px;
  --section-gap: 8rem;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}
/* Accessibility Skip Link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--primary-dark);
  padding: 0.75rem 1.5rem;
  z-index: 99999;
  font-weight: 600;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: top 0.3s ease;
  font-family: var(--font-ui);
}

.skip-link:focus {
  top: 0;
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- Typography --- */
.heading-xl {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.heading-lg {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.heading-md {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  line-height: 1.2;
}

.text-gradient {
  background: linear-gradient(135deg, var(--accent-light), var(--accent), var(--accent-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-blue {
  background: linear-gradient(135deg, #6BB5FF, #3D8BFF, #1A5FCC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Section Label (eyebrow) --- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.eyebrow::before {
  display: none;
}

.eyebrow--dark {
  color: var(--accent-dark);
}

.eyebrow--dark::before {
  display: none;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  font-family: var(--font-ui);
  font-weight: 600;
  border-radius: 100px;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn--gold {
  padding: 0.9rem 2rem;
  font-size: 0.88rem;
  background: linear-gradient(135deg, #1ea952, #0d7037);
  color: #fff;
  box-shadow: 0 2px 12px rgba(30, 169, 82, 0.2);
}

.btn--gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.btn--gold:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #24be5f, #118c47);
  box-shadow: 0 6px 24px rgba(30, 169, 82, 0.35);
  color: #fff;
}

.btn--gold:hover::before {
  left: 100%;
}

.btn--outline {
  padding: 1rem 2.25rem;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn--outline:hover {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn--outline-dark {
  padding: 0.9rem 2rem;
  font-size: 0.88rem;
  background: rgba(11, 31, 77, 0.03);
  color: var(--text-dark);
  border: 1.5px solid rgba(11, 31, 77, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn--outline-dark:hover {
  background: rgba(11, 31, 77, 0.08);
  border-color: var(--text-dark);
  color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(11, 31, 77, 0.06);
}

.btn--dark {
  padding: 1rem 2.25rem;
  font-size: 0.95rem;
  background: var(--primary);
  color: var(--text-light);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn--dark:hover {
  background: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.btn--lg {
  padding: 1.15rem 2.75rem;
  font-size: 1.05rem;
}

.btn__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ==========================================
   NAVBAR
   ========================================== */
.nav {
  position: fixed;
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2.5rem);
  max-width: var(--container);
  height: var(--nav-height);
  z-index: 100;
  background: rgba(11, 31, 77, 0.45);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  transition: all 0.5s var(--ease-out-expo);
}

.nav.scrolled {
  top: 0.75rem;
  background: rgba(11, 31, 77, 0.85);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-light);
  z-index: 101;
}

.nav__logo svg {
  width: 36px;
  height: 36px;
  color: var(--accent);
}

.nav__logo-img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  transition: transform 0.6s var(--ease-out-expo);
}

.nav.scrolled .nav__logo-img,
.nav.nav--open .nav__logo-img {
  transform: rotate(360deg);
}

.nav__logo span {
  color: var(--accent);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: all 0.3s var(--ease-out-expo);
  transform: translateX(-50%);
}

.nav__link:hover,
.nav__link.active {
  color: var(--text-light);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__cta-btn {
  font-family: var(--font-display);
  padding: 0.6rem 1.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  background: linear-gradient(135deg, #1ea952, #0d7037);
  color: #fff;
  border-radius: 100px;
  transition: all 0.3s ease;
}

.nav__cta-btn:hover {
  background: linear-gradient(135deg, #24be5f, #118c47);
  box-shadow: 0 4px 20px rgba(30, 169, 82, 0.4);
  transform: translateY(-1px);
  color: #fff;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  z-index: 101;
}

.nav__hamburger span {
  width: 22px;
  height: 1.5px;
  background: var(--text-light);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.nav__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(4.5px, 4.5px);
}

.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4.5px, -4.5px);
}

/* ==========================================
   HERO — Cinematic Apple-style
   ========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-height) + 4rem) 0 6rem;
  overflow: hidden;
  background: var(--bg-dark);
}

.hero__media-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero__video {
  position: absolute;
  top: 0;
  right: 0;
  width: 60vw;
  height: 100%;
  object-fit: cover;
  object-position: 48% center;
  pointer-events: none;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: -10vw;
  width: 74vw;
  height: 100%;
  background: linear-gradient(90deg,
      var(--primary-dark) 0%,
      var(--primary-dark) 70%,
      var(--primary) 86%,
      rgba(18, 60, 140, 0.98) 95%,
      rgba(18, 60, 140, 0) 100%);
  transform: skewX(-12deg);
  transform-origin: top left;
  border-radius: 0 160px 160px 0;
  z-index: 2;
  pointer-events: none;
}

/* Orbs */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  will-change: transform;
  z-index: 3;
}

.hero__orb--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.12), transparent 70%);
  top: -10%;
  right: -10%;
  animation: orb-float 12s ease-in-out infinite alternate;
}

.hero__orb--2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(61, 139, 255, 0.08), transparent 70%);
  bottom: -15%;
  left: -10%;
  animation: orb-float 15s ease-in-out infinite alternate-reverse;
}

.hero__orb--3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.06), transparent 70%);
  top: 40%;
  left: 20%;
  animation: orb-float 10s ease-in-out infinite alternate;
}

@keyframes orb-float {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(40px, -30px) scale(1.1);
  }
}

/* Split Grid Layout */
.hero__grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

.hero__col-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero__logo-brand {
  margin-bottom: 2.25rem;
  opacity: 0;
  transform: translateY(20px);
  animation: hero-fade-in 0.8s 0.2s var(--ease-out-expo) forwards;
}

.hero__logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.hero__tagline-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.1rem;
  background: rgba(var(--accent-rgb), 0.08);
  border: 1px solid rgba(var(--accent-rgb), 0.25);
  border-radius: 100px;
  color: var(--accent);
  font-family: var(--font-ui);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: hero-fade-in 0.8s 0.4s var(--ease-out-expo) forwards;
}

.hero__tagline-dot {
  width: 6px;
  height: 6px;
  background-color: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent);
  animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(var(--accent-rgb), 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(var(--accent-rgb), 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(var(--accent-rgb), 0);
  }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.05rem, 4vw, 3.25rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  text-align: left;
  opacity: 0;
  transform: translateY(30px);
  animation: hero-fade-in 1s 0.6s var(--ease-out-expo) forwards;
}

.hero__subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-style: italic;
  text-align: left;
  opacity: 0;
  transform: translateY(20px);
  animation: hero-fade-in 1s 0.8s var(--ease-out-expo) forwards;
}

.hero__desc {
  font-size: clamp(0.95rem, 1.2vw, 1.12rem);
  color: var(--text-light-muted);
  line-height: 1.8;
  max-width: 520px;
  margin: 0 0 1.75rem 0;
  text-align: left;
  opacity: 0;
  transform: translateY(20px);
  animation: hero-fade-in 1s 1.0s var(--ease-out-expo) forwards;
}

.hero__desc strong {
  color: var(--text-light);
  font-weight: 600;
}

/* Features checklist */
.hero__features {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  opacity: 0;
  transform: translateY(20px);
  animation: hero-fade-in 1s 0.9s var(--ease-out-expo) forwards;
}

.hero__features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  color: var(--text-light-muted);
  line-height: 1.4;
  text-align: left;
  overflow: hidden;
}

.hero__features strong {
  color: var(--text-light);
  font-weight: 600;
}

.hero__feature-icon {
  width: 18px;
  min-width: 18px;
  max-width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}

/* CTA: Falar com Especialista & unified buttons */
.hero__ctas {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  opacity: 0;
  transform: translateY(15px);
  animation: hero-fade-in 1s 1s var(--ease-out-expo) forwards;
  margin-bottom: 2rem;
}

.hero__cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.9rem 2.25rem;
  border-radius: 50px;
  background: linear-gradient(135deg, #1ea952, #0d7037);
  color: #fff;
  font-family: var(--font-ui);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  box-shadow: 0 4px 20px rgba(30, 169, 82, 0.25);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border: 1.5px solid transparent;
}

.hero__cta-primary:hover {
  background: linear-gradient(135deg, #24be5f, #118c47);
  box-shadow: 0 10px 30px rgba(30, 169, 82, 0.45);
  transform: translateY(-2px);
  color: #fff;
}

.hero__cta-icon-mini {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(0) invert(1) !important;
  transition: transform 0.3s ease;
}

.hero__cta-primary:hover .hero__cta-icon-mini {
  transform: translateX(3px);
}

.hero__cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.25rem;
  border-radius: 50px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: var(--text-light);
  font-family: var(--font-ui);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  transition: all 0.3s ease;
  cursor: pointer;
  background: transparent;
}

.hero__cta-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(var(--accent-rgb), 0.05);
  transform: translateY(-2px);
}

.hero__cta-secondary--accent {
  border-color: rgba(var(--accent-rgb), 0.45);
  color: var(--accent);
  background: rgba(var(--accent-rgb), 0.08);
}

.hero__cta-secondary--accent:hover {
  border-color: var(--accent);
  color: var(--text-light);
  background: rgba(var(--accent-rgb), 0.25);
}

/* Trust Badge Container & Badges */
.hero__trust-badge-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  opacity: 0;
  transform: translateY(15px);
  animation: hero-fade-in 1s 1.2s var(--ease-out-expo) forwards;
}

.hero__trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-light-muted);
  background: rgba(255, 255, 255, 0.03);
  padding: 0.5rem 1.1rem;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.hero__trust-badge-icon {
  width: 14px;
  height: 14px;
  color: var(--accent);
}

@media (max-width: 576px) {
  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    width: 100%;
  }

  .hero__cta-primary {
    justify-content: center;
    width: 100%;
  }

  .hero__cta-secondary {
    width: 100%;
  }

  .about__ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    width: 100%;
  }

  .about__ctas .btn {
    width: 100%;
  }
}

/* Col Visual & Airplane Window */
.hero__col-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: scale(0.96) translateY(30px);
  animation: hero-fade-in 1.2s 0.7s var(--ease-out-expo) forwards;
}


.airplane-window {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1 / 1.38;
  position: relative;
  border-radius: 120px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6),
    0 0 100px rgba(197, 165, 90, 0.04);
  transition: transform 0.8s var(--ease-out-expo);
  animation: window-float 6s ease-in-out infinite alternate;
}

.airplane-window:hover {
  transform: scale(1.03) rotate(0.5deg);
}

@keyframes window-float {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-12px);
  }
}

.airplane-window__frame {
  width: 100%;
  height: 100%;
  border-radius: 120px;
  padding: 14px;
  background: linear-gradient(135deg, #1d2d40 0%, #0c1522 100%);
  box-shadow: inset 0 2px 6px rgba(255, 255, 255, 0.12),
    inset 0 -2px 6px rgba(0, 0, 0, 0.6);
}

.airplane-window__inner-bezel {
  width: 100%;
  height: 100%;
  border-radius: 106px;
  padding: 9px;
  background: linear-gradient(135deg, #0a121e 0%, #121d2b 100%);
  box-shadow: inset 0 10px 22px rgba(0, 0, 0, 0.85),
    inset -5px -5px 15px rgba(200, 162, 74, 0.08),
    /* warm gold sunset inner reflection */
    0 4px 8px rgba(0, 0, 0, 0.4);
}

.airplane-window__glass {
  width: 100%;
  height: 100%;
  border-radius: 98px;
  position: relative;
  overflow: hidden;
  background: #000;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.9);
}

.airplane-window__view-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.95;
  filter: saturate(1.15) brightness(0.92);
  transition: transform 0.8s var(--ease-out-expo);
}

.airplane-window:hover .airplane-window__view-video {
  transform: scale(1.06);
}

.airplane-window__reflection {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.015) 50.1%, rgba(255, 255, 255, 0) 100%);
  z-index: 2;
  pointer-events: none;
}

@keyframes hero-fade-in {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Hero scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  z-index: 5;
  animation: hero-fade-in 1s 1.2s var(--ease-out-expo) forwards;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  50.01% {
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

.hero__scroll-text {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.3);
}

/* ==========================================
   AUTHORITY BAR — Apple-style minimal stats
   ========================================== */
.authority {
  padding: 5rem 0;
  background: var(--bg-white);
  position: relative;
  overflow: hidden;
}

/* Very subtle pastel glow orbs on white background for premium refraction */
.authority::before,
.authority::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}

.authority::before {
  width: 320px;
  height: 320px;
  background: var(--primary-light);
  top: -100px;
  left: 8%;
}

.authority::after {
  width: 280px;
  height: 280px;
  background: var(--accent);
  bottom: -80px;
  right: 12%;
}

.authority .container {
  position: relative;
  z-index: 1;
}

.authority__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  max-width: var(--container);
  margin: 0 auto;
}

.authority__item {
  flex: 1 1 140px;
  max-width: 190px;
  background: rgba(246, 248, 252, 0.65);
  border: 1px solid rgba(11, 31, 77, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 12px;
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  transition: all 0.5s var(--ease-out-expo);
  box-shadow: 0 10px 30px rgba(11, 31, 77, 0.04);
  position: relative;
  overflow: hidden;
}

.authority__item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(var(--accent-rgb), 0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.authority__item:hover::before {
  opacity: 1;
}

.authority__item:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(var(--accent-rgb), 0.35);
  box-shadow: 0 20px 40px rgba(11, 31, 77, 0.08), 0 0 20px rgba(var(--accent-rgb), 0.05);
}

.authority__icon {
  width: 28px;
  height: 28px;
  color: var(--accent);
  margin-bottom: 0.25rem;
  transition: transform 0.5s var(--ease-out-expo);
}

.authority__item:hover .authority__icon {
  transform: scale(1.18) rotate(5deg);
}

.authority__value {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.authority__label {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-medium);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.4;
}

/* ==========================================
   TRUST & AUTHORITY SECTION (v2)
   ========================================== */
.trust {
  padding: var(--section-gap) 0;
  position: relative;
  background: var(--bg-dark);
}

.trust__grid {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 4rem;
  align-items: center;
}

.trust__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.trust__title {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  font-size: 2.25rem;
  line-height: 1.3;
}

.trust__text {
  color: var(--text-light-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.trust__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.trust-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.5s var(--ease-out-expo);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.trust-card::before {
  display: none;
}

.trust-card:hover {
  border-color: rgba(var(--accent-rgb), 0.2);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.trust-card:hover::before {
  display: none;
}

.trust-card__icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.trust-card__value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.2;
}

.trust-card__label {
  font-size: 0.88rem;
  color: var(--text-light-muted);
  margin-top: 0.5rem;
}

/* ==========================================
   SECTIONS — Apple-like spacing & reveals
   ========================================== */
.section {
  position: relative;
  padding: var(--section-gap) 0;
}

.section--dark {
  background: var(--bg-dark);
  color: var(--text-light);
}

.section--cream {
  background: var(--bg-cream);
  color: var(--text-dark);
}

.section--white {
  background: var(--bg-white);
  color: var(--text-dark);
}

.section--gradient {
  background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(11, 31, 77, 0.95) 50%, var(--bg-dark) 100%);
  color: var(--text-light);
}

.section__header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section__desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-top: 1rem;
}

.section--dark .section__desc {
  color: var(--text-light-muted);
}

/* ==========================================
   ABOUT — Split layout with image
   ========================================== */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about__visual {
  position: relative;
}

.about__img-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
  background: linear-gradient(180deg, rgba(11, 31, 77, 0.0) 0%, rgba(11, 31, 77, 0.05) 100%);
}

.about__carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.about__carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
  will-change: transform;
}

.about__carousel-slide {
  min-width: 100%;
  flex-shrink: 0;
  width: 100%;
  overflow: hidden;
}

.about__carousel-slide img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.8s var(--ease-out-expo);
}

.about__carousel-slide img:hover {
  transform: scale(1.03);
}

.about__carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.about__carousel:hover .about__carousel-btn {
  opacity: 1;
  pointer-events: auto;
}

.about__carousel-btn:hover {
  background: var(--accent);
  color: var(--primary-dark);
  border-color: var(--accent);
}

.about__carousel-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}


.about__carousel-btn--prev {
  left: 1rem;
}

.about__carousel-btn--next {
  right: 1rem;
}

.about__carousel-dots {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.about__carousel-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.about__carousel-dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
}

.about__carousel-dot.active {
  background: var(--accent);
  width: 20px;
  border-radius: 4px;
}

.about__float-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--glass-light);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-light-border);
  border-radius: 20px;
  padding: 1.5rem 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.about__float-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
}

.about__float-icon svg {
  width: 22px;
  height: 22px;
}

.about__float-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.about__float-label {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.about__corner-accent {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  border-top: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
  border-radius: 24px 0 0 0;
  opacity: 0.3;
}

.about__text-block h2 {
  font-size: clamp(1.85rem, 3.2vw, 2.65rem);
  margin-bottom: 2.25rem;
}

.about__text-block h3 {
  margin-bottom: 1.5rem;
}

.about__description {
  font-size: 1.05rem;
  color: var(--text-medium);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.about__ctas {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 2.75rem;
}

.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 2rem;
}

.about__feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
}

.about__feature svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}

/* ==========================================
   SERVICES — Gallery & Image Cards
   ========================================== */
.services__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-image-card {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.6s var(--ease-out-expo), box-shadow 0.6s var(--ease-out-expo), border-color 0.6s var(--ease-out-expo);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.25rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  background-color: var(--primary-dark);
}

.service-image-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  pointer-events: none;
  transition: transform 0.8s var(--ease-out-expo);
}

.service-image-card:hover .service-image-card__bg,
.service-image-card:focus-within .service-image-card__bg {
  transform: scale(1.06);
}

.service-image-card--featured {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

.service-image-card--wide {
  grid-column: span 2;
  aspect-ratio: auto;
}

.service-image-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(var(--accent-rgb), 0.15), transparent 80%);
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 1;
}

.service-image-card:hover,
.service-image-card:focus-within {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5), 0 0 35px rgba(var(--accent-rgb), 0.25);
  border-color: rgba(var(--accent-rgb), 0.45);
}

.service-image-card:hover::before,
.service-image-card:focus-within::before {
  opacity: 1;
}

.service-image-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(11, 31, 77, 0.15) 0%, rgba(11, 31, 77, 0.65) 50%, rgba(11, 31, 77, 0.98) 100%);
  z-index: 1;
  transition: background 0.6s ease;
}

.service-image-card:hover .service-image-card__overlay,
.service-image-card:focus-within .service-image-card__overlay {
  background: linear-gradient(to bottom, rgba(11, 31, 77, 0.05) 0%, rgba(11, 31, 77, 0.5) 40%, rgba(11, 31, 77, 0.92) 100%);
}

.service-image-card__number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--accent);
  line-height: 1;
  z-index: 3;
  transition: all 0.5s var(--ease-out-expo);
  user-select: none;
  opacity: 0.8;
}

.service-image-card:hover .service-image-card__number,
.service-image-card:focus-within .service-image-card__number {
  transform: scale(1.12) rotate(-5deg) translate(4px, -2px);
  opacity: 1;
  -webkit-text-stroke: 1.5px var(--accent-light);
  text-shadow: 0 0 15px rgba(var(--accent-rgb), 0.45);
}

.service-image-card__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transform: translateY(8px);
  transition: transform 0.5s var(--ease-out-expo);
}

.service-image-card:hover .service-image-card__content,
.service-image-card:focus-within .service-image-card__content {
  transform: translateY(0);
}

.service-image-card__tag {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-light);
  background: rgba(200, 162, 74, 0.12);
  border: 1px solid rgba(200, 162, 74, 0.25);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  width: fit-content;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.service-image-card__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-light);
  margin: 0.4rem 0 0.6rem 0;
  line-height: 1.3;
  letter-spacing: -0.01em;
  transition: color 0.4s var(--ease-out-expo);
}

.service-image-card:hover .service-image-card__title,
.service-image-card:focus-within .service-image-card__title {
  color: var(--accent);
}

.service-image-card__desc {
  font-size: 0.88rem;
  color: rgba(246, 248, 252, 0.7);
  line-height: 1.6;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease;
}

.service-image-card:hover .service-image-card__desc,
.service-image-card:focus-within .service-image-card__desc {
  color: rgba(255, 255, 255, 0.95);
}

/* Featured Card Font Sizing */
.service-image-card--featured .service-image-card__title {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

.service-image-card--featured .service-image-card__desc {
  font-size: 0.95rem;
  line-height: 1.65;
  -webkit-line-clamp: 5;
}

.service-image-card__ctas {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.75rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(15px);
  transition: opacity 0.4s var(--ease-out-expo), transform 0.4s var(--ease-out-expo), visibility 0.4s var(--ease-out-expo);
  z-index: 4;
  width: 100%;
}

.service-image-card:hover .service-image-card__ctas,
.service-image-card:focus-within .service-image-card__ctas {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.btn-service {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.75rem 1.25rem;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
  cursor: pointer;
  border: none;
}

/* Saber Mais: Transparent glass outline */
.btn-service--more {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-light);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-service--more:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.05);
}

/* Quero falar com especialista: Solid Gold */
.btn-service--specialist {
  background: linear-gradient(135deg, #1ea952, #0d7037);
  border: 1px solid #0d7037;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.btn-service--specialist::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.4),
      transparent);
  transform: skewX(-20deg);
  transition: none;
}

.service-image-card:hover .btn-service--specialist::after {
  animation: btnShine 1.5s infinite ease-in-out;
}

.btn-service--specialist:hover {
  background: linear-gradient(135deg, #24be5f, #118c47);
  border-color: #118c47;
  box-shadow: 0 0 20px rgba(30, 169, 82, 0.45);
  transform: translateY(-2px);
  color: #fff;
}

@keyframes btnShine {
  0% {
    left: -150%;
  }

  50% {
    left: 150%;
  }

  100% {
    left: 150%;
  }
}

/* Make card details and CTAs visible on mobile and tablets without hover */
@media (max-width: 1024px) {
  .service-image-card__content {
    transform: translateY(0) !important;
  }

  .service-image-card__ctas {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
  }
}

/* ==========================================
   SERVICE MODAL POPUP — Fully Responsive
   ========================================== */
.service-modal {
  border: none;
  background: transparent;
  padding: 0;
  max-width: 920px;
  width: calc(100% - 2rem);
  max-height: 90vh;
  outline: none;
  border-radius: 28px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
  overflow: visible;
  box-sizing: border-box;
  margin: auto;
}

.service-modal[open] {
  animation: serviceModalFadeIn 0.5s var(--ease-out-expo) forwards;
}

@keyframes serviceModalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(16px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.service-modal::backdrop {
  background-color: rgba(11, 31, 77, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.service-modal__container {
  position: relative;
  background: linear-gradient(160deg, rgba(11, 31, 77, 0.97), rgba(11, 31, 77, 0.99));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 2.5rem;
  overflow-y: auto;
  max-height: 90vh;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(var(--accent-rgb), 0.3) transparent;
}

.service-modal__container::-webkit-scrollbar {
  width: 5px;
}

.service-modal__container::-webkit-scrollbar-thumb {
  background-color: rgba(var(--accent-rgb), 0.3);
  border-radius: 10px;
}

.service-modal__close {
  position: sticky;
  top: 0;
  float: right;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-light-muted);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  line-height: 1;
  margin-bottom: -40px;
}

.service-modal__close:hover {
  background: var(--accent);
  color: var(--primary-dark);
  transform: rotate(90deg) scale(1.05);
  border-color: var(--accent);
}

.service-modal__body {
  color: var(--text-light-muted);
}

/* Modal inner elements */
.modal-service__header {
  margin-bottom: 1.5rem;
  padding-right: 3rem;
}

.modal-service__number {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
  display: block;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.modal-service__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--text-light);
  margin: 0;
  line-height: 1.2;
}

.modal-service__desc-wrapper {
  margin-bottom: 1.5rem;
}

.modal-service__text-block {
  font-size: clamp(0.88rem, 2.5vw, 0.98rem);
  line-height: 1.8;
  color: var(--text-light-muted);
}

.modal-service__text-block p {
  margin-bottom: 1.05rem;
}

.modal-service__text-block p:last-child {
  margin-bottom: 0;
}

/* TWO COLUMN GRID */
.modal-service__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
}

.modal-service__left-col {
  display: flex;
  flex-direction: column;
}

.modal-service__right-col {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* STATIC IMAGE CONTAINER */
.modal-service__image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45);
}

.modal-service__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* MODAL CAROUSEL */
.modal-service__carousel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.modal-service__carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
  height: 100%;
}

.modal-service__carousel-slide {
  min-width: 100%;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
}

.modal-service__carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.modal-service__carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(11, 31, 77, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  opacity: 0;
  transition: all 0.3s ease;
}

.modal-service__carousel:hover .modal-service__carousel-btn {
  opacity: 1;
}

.modal-service__carousel-btn:hover {
  background: var(--accent);
  color: var(--primary-dark);
  border-color: var(--accent);
}

.modal-service__carousel-btn--prev {
  left: 1rem;
}

.modal-service__carousel-btn--next {
  right: 1rem;
}

.modal-service__carousel-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.modal-service__carousel-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-service__carousel-dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
}

.modal-service__carousel-dot.active {
  background: var(--accent);
  width: 20px;
  border-radius: 4px;
}

.modal-service__cta-footer {
  margin-top: 2rem;
  text-align: center;
}

.modal-service__cta-footer .btn {
  width: 100%;
  max-width: 400px;
  white-space: normal;
  line-height: 1.4;
}


/* ==========================================
   PROCESS — Horizontal timeline
   ========================================== */
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process__steps::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(var(--accent-rgb), 0.3), rgba(var(--accent-rgb), 0.3), transparent);
}

.process__step {
  text-align: center;
  padding: 0 1rem;
  position: relative;
}

.process__step-circle {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.75rem;
  background: var(--bg-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: all 0.5s var(--ease-out-expo);
}

.process__step:hover .process__step-circle {
  border-color: rgba(var(--accent-rgb), 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.process__step-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent);
  transition: color 0.5s ease;
}

.process__step.active .process__step-circle {
  border-color: var(--primary);
  background: rgba(18, 60, 140, 0.04);
  box-shadow: 0 4px 20px rgba(18, 60, 140, 0.1);
}

.process__step.active .process__step-num {
  color: var(--primary);
}

.process__step-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.process__step-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ==========================================
   DIFFERENTIALS — Floating cards
   ========================================== */
.diff__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.diff-card {
  background: var(--bg-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.5s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.diff-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-light), var(--accent));
  transform: scaleX(0);
  transition: transform 0.5s var(--ease-out-expo);
}

.diff-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.diff-card:hover::after {
  transform: scaleX(1);
}

.diff-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  background: rgba(var(--accent-rgb), 0.06);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: all 0.4s var(--ease-out-expo);
}

.diff-card:hover .diff-card__icon {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--primary-dark);
  transform: scale(1.04);
}

.diff-card.active .diff-card__icon {
  background: rgba(18, 60, 140, 0.08);
  color: var(--primary);
  transform: scale(1.05);
}

.diff-card__icon svg {
  width: 26px;
  height: 26px;
}

.diff-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.diff-card__desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ==========================================
   TESTIMONIALS — Immersive cards
   ========================================== */
.testimonials__carousel {
  position: relative;
  overflow: hidden;
  margin: 0 -2rem;
  padding: 0 2rem;
}

.testimonials__track {
  display: flex;
  transition: transform 0.7s var(--ease-out-expo);
  gap: 1.5rem;
}

.testi-card {
  width: calc(33.333% - 1rem);
  min-width: calc(33.333% - 1rem);
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  padding: 2.5rem;
  flex-shrink: 0;
  position: relative;
  transition: all 0.4s var(--ease-out-expo);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
}

.testi-card:hover {
  border-color: var(--accent);
  /* Brand Gold accent border on hover */
  background: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}

.testi-card__quote {
  position: absolute;
  top: 1.5rem;
  left: 2rem;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.15;
  line-height: 1;
}

.testi-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1.25rem;
}

.testi-card__star {
  width: 16px;
  height: 16px;
  color: var(--star);
}

.testi-card__text {
  font-size: 0.95rem;
  color: #3e4756;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
  min-height: 100px;
}

.testi-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.testi-card__avatar {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.testi-card__name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary-dark);
}

.testi-card__source {
  font-size: 0.75rem;
  color: #4a5568;
}

/* Google Reviews Header Badge & Icon */
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1.15rem;
  border-radius: 50px;
  margin-top: 1.25rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.google-badge:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.google-badge__logo svg {
  display: block;
}

.google-badge__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.google-badge__title {
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.google-badge__rating {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  line-height: 1;
  margin-top: 0.1rem;
}

.google-badge__score {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-light);
}

.google-badge__stars {
  display: flex;
  gap: 2px;
}

.google-badge__stars svg {
  width: 11px;
  height: 11px;
}

.google-badge__reviews {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.testi-card__google-logo {
  position: absolute;
  top: 2rem;
  right: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonials__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
}

.testimonials__arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: all 0.3s ease;
}

.testimonials__arrow:hover {
  background: var(--accent);
  color: var(--primary-dark);
  border-color: var(--accent);
}

.testimonials__arrow svg {
  width: 18px;
  height: 18px;
}

.testimonials__dots {
  display: flex;
  gap: 6px;
}

.testimonials__dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transition: all 0.4s var(--ease-out-expo);
  padding: 0;
  cursor: pointer;
}

.testimonials__dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
}

.testimonials__dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 100px;
}

/* ==========================================
   FAQ — Minimal accordion
   ========================================== */
.faq__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
}

.faq__filter {
  font-family: var(--font-ui);
  padding: 0.55rem 1.4rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #4a5568;
  border: 1px solid var(--glass-light-border);
  transition: all 0.3s ease;
}

.faq__filter:hover,
.faq__filter.active {
  background: var(--primary);
  color: var(--accent);
  border-color: var(--primary);
}

.faq__list {
  max-width: var(--container-sm);
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.5rem 0;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: color 0.3s ease;
}

.faq__q:hover {
  color: var(--accent-dark);
}

.faq__q-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  margin-left: 1rem;
  transition: all 0.4s var(--ease-out-expo);
}

.faq__q-icon svg {
  width: 14px;
  height: 14px;
}

.faq__item.active .faq__q-icon {
  transform: rotate(45deg);
  background: var(--accent);
  color: var(--primary-dark);
}

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out-expo);
}

.faq__a-inner {
  padding: 0 0 1.5rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.85;
}

.faq__item.active .faq__a {
  max-height: 400px;
}

/* ==========================================
   GOOGLE REVIEWS ACTIONS
   ========================================== */
.google-reviews-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  margin-top: 3.5rem;
  flex-wrap: wrap;
}

.btn-google {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.9rem 1.85rem;
  border-radius: 50px;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  cursor: pointer;
}

.btn-google--primary {
  background: var(--bg-white);
  color: var(--primary-dark);
  border: 1px solid var(--bg-white);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-google--primary:hover {
  background: var(--bg-cream);
  color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-google--outline {
  background: transparent;
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.20);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-google--outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-2px);
}

/* ==========================================
   INSTAGRAM SECTION
   ========================================== */
.insta {
  padding: var(--section-gap) 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(11, 31, 77, 0.95) 50%, var(--bg-dark) 100%);
  overflow: hidden;
}

.insta__handle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-light);
  margin-top: 1rem;
  transition: color 0.3s ease;
}

.insta__handle:hover {
  color: var(--accent);
}

.insta__handle svg {
  width: 20px;
  height: 20px;
}

/* Instagram Stories Ring Badge */
.insta-badge {
  display: block;
  width: 84px;
  height: 84px;
  margin: 0 auto 1.5rem auto;
  border-radius: 50%;
  background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7);
  padding: 3px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.insta-badge:hover {
  transform: scale(1.08);
}

.insta-badge__inner {
  width: 100%;
  height: 100%;
  background: var(--bg-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.insta-badge__logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.insta-badge:hover .insta-badge__logo {
  transform: rotate(5deg) scale(1.05);
}

/* Feed Wrapper & Card (Glassmorphism) */
.insta-feed-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.insta-feed-card {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  background: rgba(11, 31, 77, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.insta-feed-card:hover {
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.6);
}

.insta-feed-iframe {
  width: 100%;
  border: none;
  min-height: 600px;
  height: 80vh;
  max-height: 850px;
  display: block;
}

/* ==========================================
   CTA FINAL
   ========================================== */
.cta-section {
  position: relative;
  padding: 8rem 0;
  text-align: center;
  overflow: hidden;
  background: var(--primary);
}

.cta-section__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.cta-section__orb--1 {
  width: 500px;
  height: 500px;
  background: rgba(var(--accent-rgb), 0.12);
  top: -20%;
  left: -10%;
  animation: orb-float 14s ease-in-out infinite alternate;
}

.cta-section__orb--2 {
  width: 400px;
  height: 400px;
  background: rgba(61, 139, 255, 0.08);
  bottom: -20%;
  right: -10%;
  animation: orb-float 18s ease-in-out infinite alternate-reverse;
}

.cta-section__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.cta-section__title {
  margin-bottom: 1.5rem;
}

.cta-section__desc {
  font-size: 1.1rem;
  color: var(--text-light-muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.cta-section__buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.cta-section__info {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cta-section__info-item {
  text-align: center;
}

.cta-section__info-item svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.cta-section__info-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-light-muted);
  margin-bottom: 0.25rem;
}

.cta-section__info-value {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}

/* ==========================================
   ONDE ENCONTRAR (LOCALIZAÇÃO)
   ========================================== */
.onde-encontrar__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.onde-encontrar__info-block {
  display: flex;
  flex-direction: column;
}

.onde-encontrar__description {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 1rem;
  margin-bottom: 2.5rem;
}

.onde-encontrar__cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.onde-encontrar__card {
  background: #ffffff;
  padding: 1.25rem 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(12, 44, 129, 0.05);
  box-shadow: 0 8px 24px rgba(12, 44, 129, 0.02);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: all 0.4s var(--ease-out-expo);
}

.onde-encontrar__card:hover {
  transform: translateX(6px);
  box-shadow: 0 12px 30px rgba(12, 44, 129, 0.06);
  border-color: var(--accent);
}

.onde-encontrar__icon-wrapper {
  width: 42px;
  height: 42px;
  background: rgba(11, 31, 77, 0.03);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.onde-encontrar__card:hover .onde-encontrar__icon-wrapper {
  background: var(--accent);
  color: var(--primary-dark);
}

.onde-encontrar__icon-wrapper svg {
  width: 20px;
  height: 20px;
}

.onde-encontrar__card-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.onde-encontrar__card-title {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

.onde-encontrar__card-value,
.onde-encontrar__card-link {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
  font-weight: 500;
  transition: color 0.2s ease;
  overflow-wrap: break-word;
  word-break: break-word;
}

.onde-encontrar__card-link:hover {
  color: var(--accent);
}

/* MACBOOK MOCKUP CSS */
.onde-encontrar__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.macbook-wrapper {
  perspective: 1200px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem 0;
}

.macbook {
  position: relative;
  width: 90%;
  max-width: 580px;
  transition: transform 0.6s var(--ease-out-expo);
}

.macbook:hover {
  transform: translateY(-8px) rotateX(1deg);
}

.macbook__screen {
  position: relative;
  width: 100%;
  padding-top: 62.5%;
  /* Proporção 16:10 premium */
  background: #000;
  border-radius: 18px 18px 0 0;
  border: 10px solid #1c1c1e;
  border-bottom: 15px solid #1c1c1e;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.macbook__screen::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  background: #111;
  border-radius: 50%;
  z-index: 10;
}

.macbook__screen-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #111;
}

.macbook__screen-content iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: contrast(102%) brightness(98%);
}

.macbook__hinge {
  height: 6px;
  background: #000;
  width: 82%;
  margin: 0 auto;
  border-radius: 0 0 4px 4px;
}

.macbook__base {
  position: relative;
  width: 112%;
  left: -6%;
  height: 12px;
  background: linear-gradient(to bottom, #e3e3e8 0%, #a2a2a7 100%);
  border-radius: 4px 4px 10px 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2), 0 2px 4px rgba(0, 0, 0, 0.1);
}

.macbook__base::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #3a3a3c;
  border-radius: 0 0 3px 3px;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 4rem 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.footer__brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.footer__brand-logo svg {
  width: 28px;
  height: 28px;
  color: var(--accent);
}

.footer__brand-logo span {
  color: var(--accent);
}

.footer__logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.footer__brand-text {
  font-size: 0.85rem;
  color: var(--text-light-muted);
  line-height: 1.7;
  max-width: 280px;
}

.footer__social {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.footer__social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light-muted);
  transition: all 0.3s ease;
}

.footer__social-link:hover {
  background: var(--accent);
  color: var(--primary-dark);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.footer__social-link svg {
  width: 16px;
  height: 16px;
}

.footer__col-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}

.footer__link {
  display: block;
  font-size: 0.85rem;
  color: var(--text-light-muted);
  margin-bottom: 0.6rem;
  transition: color 0.3s ease;
}

.footer__link:hover {
  color: var(--accent);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.60);
}

/* ==========================================
   WHATSAPP FLOAT
   ========================================== */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  z-index: 99;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  animation: wa-pulse 3s infinite;
}

.wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.wa-float svg {
  width: 28px;
  height: 28px;
}

@keyframes wa-pulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0.08);
  }
}

/* ==========================================
   SCROLL REVEAL ANIMATIONS
   ========================================== */
.reveal {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out-expo), filter 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal.visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.reveal-scale {
  opacity: 0;
  filter: blur(6px);
  transform: scale(0.96);
  transition: opacity 0.8s var(--ease-out-expo), filter 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal-scale.visible {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
}

.reveal-left {
  opacity: 0;
  filter: blur(8px);
  transform: translateX(-30px);
  transition: opacity 0.8s var(--ease-out-expo), filter 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal-left.visible {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  filter: blur(8px);
  transform: translateX(30px);
  transition: opacity 0.8s var(--ease-out-expo), filter 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal-right.visible {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0);
}

/* Stagger children */
.stagger-children .reveal:nth-child(1) {
  transition-delay: 0s;
}

.stagger-children .reveal:nth-child(2) {
  transition-delay: 0.1s;
}

.stagger-children .reveal:nth-child(3) {
  transition-delay: 0.2s;
}

.stagger-children .reveal:nth-child(4) {
  transition-delay: 0.3s;
}

.stagger-children .reveal:nth-child(5) {
  transition-delay: 0.4s;
}

.stagger-children .reveal:nth-child(6) {
  transition-delay: 0.5s;
}

/* ==========================================
   PROBLEMAS QUE RESOLVEMOS
   ========================================== */
.problems__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.problem-card {
  background: var(--bg-white);
  border: 1px solid rgba(18, 60, 140, 0.05);
  border-radius: 20px;
  padding: 2.25rem 1.75rem;
  text-align: left;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(11, 31, 77, 0.02);
  display: flex;
  flex-direction: column;
}

.problem-card::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--accent-light), var(--accent));
  transform: scaleY(0);
  transition: transform 0.4s var(--ease-out-expo);
  transform-origin: top;
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(11, 31, 77, 0.06);
  border-color: rgba(var(--accent-rgb), 0.2);
}

.problem-card:hover::after {
  transform: scaleY(1);
}

.problem-card__emoji {
  font-size: 2rem;
  margin-bottom: 1.25rem;
  display: inline-block;
  transition: transform 0.5s var(--ease-spring);
}

.problem-card:hover .problem-card__emoji {
  transform: scale(1.15) rotate(5deg);
}

.problem-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.problem-card__desc {
  font-size: 0.88rem;
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.problem-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  margin-top: auto;
  align-self: flex-start;
  text-decoration: none;
  max-width: 100%;
  overflow: hidden;
}

.problem-card__cta svg {
  width: 14px;
  min-width: 14px;
  max-width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.problem-card:hover .problem-card__cta {
  color: var(--accent-dark);
}

.problem-card__cta:hover {
  color: var(--accent) !important;
}

.problem-card__cta:hover svg {
  transform: translateX(4px);
}


.problems__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.problems__info-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(var(--accent-rgb), 0.06);
  border: 1px solid rgba(var(--accent-rgb), 0.15);
  border-radius: 16px;
  padding: 1.25rem 1.75rem;
  max-width: 800px;
}

.problems__info-icon {
  width: 24px;
  height: 24px;
  color: var(--accent-dark);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.problems__info-text {
  font-size: 0.9rem;
  color: #8b6a1a;
  line-height: 1.65;
}

.problems__info-text strong {
  color: #5c450f;
}

/* ==========================================
   INSTAGRAM SECTION MODERN DESIGN
   ========================================== */
.instagram-layout {
  display: grid;
  grid-template-columns: 4.2fr 5.8fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.instagram-content-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.instagram-feed-col {
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* Stories badge ring animation and styles */
.insta-badge {
  display: block;
  width: 84px;
  height: 84px;
  margin: 0 0 1.5rem 0 !important;
  border-radius: 50%;
  background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7);
  padding: 3px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  z-index: 5;
}

.insta-badge:hover {
  transform: scale(1.08);
}

.insta-badge-inner {
  width: 100%;
  height: 100%;
  background: var(--bg-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Glassmorphism embed container for Instagram Feed */
.insta-embed-container {
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  background: rgba(11, 31, 77, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  height: 480px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.insta-embed-container:hover {
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.6);
}

.insta-embed-iframe-responsive {
  width: 100% !important;
  border: none !important;
  display: block !important;
  height: 680px !important;
}

/* Follow CTA Button with premium gradient shadow */
.btn-insta {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
  border: none !important;
  color: #fff !important;
  font-family: var(--font-ui) !important;
  font-weight: 700 !important;
  padding: 1rem 2.25rem !important;
  font-size: 0.95rem !important;
  border-radius: 100px !important;
  box-shadow: 0 10px 20px rgba(220, 39, 67, 0.2) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  text-decoration: none !important;
}

.btn-insta:hover {
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow: 0 15px 30px rgba(220, 39, 67, 0.4) !important;
  filter: brightness(1.05) !important;
}

.btn-insta svg {
  transition: transform 0.3s ease;
}

.btn-insta:hover svg {
  transform: rotate(10deg) scale(1.1);
}

/* Follow Button Mobile/Desktop visibility flow */
.btn-insta-below {
  display: none !important;
}


.insta__headline-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-light);
  line-height: 1.4;
  margin: 1rem 0 1.25rem;
  font-style: italic;
}

.insta__description-text {
  font-size: 0.95rem;
  color: var(--text-light-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.insta__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.insta__pill {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  background: rgba(200, 162, 74, 0.08);
  border: 1px solid rgba(200, 162, 74, 0.25);
  color: var(--accent);
  transition: all 0.3s ease;
}

.insta__pill:hover {
  background: rgba(200, 162, 74, 0.2);
  transform: translateY(-1px);
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
  :root {
    --section-gap: 7rem;
  }

  /* Hero split grid mobile stacking */
  .hero {
    display: flex;
    flex-direction: column;
    padding: calc(var(--nav-height) + 2.5rem) 1.25rem 0;
    min-height: auto;
    background: var(--bg-dark);
  }

  .hero__media-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 11;
    min-height: 280px;
    max-height: 380px;
    z-index: 2;
    overflow: hidden;
    border-radius: 24px 24px 48px 48px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }

  .hero__video {
    position: absolute;
    top: 0;
    left: 0;
    right: auto;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 80% center;
  }

  .hero__overlay {
    display: none;
  }

  .hero .container {
    position: relative;
    width: 100%;
    z-index: 3;
    background: transparent;
    padding: 2.5rem 0.75rem 4rem;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 0;
    text-align: center;
    justify-items: center;
  }

  .hero__col-text {
    align-items: center;
    width: 100%;
  }

  .hero__col-spacer {
    display: none;
  }

  .hero__logo-brand {
    margin-bottom: 1.5rem;
  }

  .hero__title {
    text-align: center;
    margin-bottom: 1.25rem;
  }

  .hero__features {
    margin: 0 auto 2rem auto;
    max-width: 480px;
    align-self: center;
  }

  .hero__desc {
    text-align: center;
    margin: 0 auto 2rem auto;
  }

  .hero__trust-badge-container {
    justify-content: center;
    margin-top: 1.5rem;
  }

  .hero__scroll {
    display: none;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about__visual {
    max-width: 420px;
    margin: 0 auto;
  }

  .about__text-block {
    text-align: center;
  }

  .about__features {
    justify-items: center;
  }

  .about__ctas {
    justify-content: center;
    margin-top: 2.25rem;
  }

  .trust__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .services__gallery {
    grid-template-columns: 1fr 1fr;
  }

  .service-image-card {
    aspect-ratio: 3 / 4 !important;
    grid-column: span 1;
  }

  .service-image-card--featured {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: auto !important;
    min-height: 360px;
  }

  .service-image-card--wide {
    grid-column: span 1;
    aspect-ratio: 3 / 4 !important;
  }

  .services__gallery>.service-image-card:first-child {
    grid-column: span 2;
    aspect-ratio: auto !important;
    min-height: 360px;
  }

  .process__steps {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .process__steps::before {
    display: none;
  }

  .diff__grid {
    grid-template-columns: 1fr 1fr;
  }

  .testi-card {
    width: calc(50% - 0.75rem);
    min-width: calc(50% - 0.75rem);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  /* Problems and Instagram 1024px */
  .problems__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .instagram-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .instagram-content-col {
    align-items: center;
    text-align: center;
  }

  .insta-badge {
    margin: 0 auto 1.5rem auto !important;
  }

  #insta-follow-btn-above {
    display: none !important;
  }

  .btn-insta-below {
    display: inline-flex !important;
    margin-top: 1.5rem !important;
    width: 100% !important;
    max-width: 280px !important;
  }

  .scrollable-insta-card {
    height: 380px !important;
  }

  .insta-embed-iframe-responsive {
    height: 480px !important;
  }
}

@media (max-width: 768px) {
  :root {
    --section-gap: 5rem;
    --nav-height: 64px;
  }

  .nav {
    top: 1rem;
    left: 1rem;
    width: calc(100% - 2rem);
    transform: none;
    transition: all 0.4s var(--ease-out-expo);
  }

  .nav.scrolled {
    top: 0.5rem;
    left: 0.5rem;
    width: calc(100% - 1rem);
    transform: none;
  }

  .nav.nav--open {
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    height: 100dvh !important;
    border-radius: 0 !important;
    border: none !important;
    background: rgba(11, 31, 77, 0.98) !important;
    backdrop-filter: blur(40px) !important;
    -webkit-backdrop-filter: blur(40px) !important;
    box-shadow: none !important;
  }

  .nav.nav--open .nav__inner {
    height: var(--nav-height) !important;
  }

  .nav__links {
    position: absolute;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--nav-height));
    height: calc(100dvh - var(--nav-height));
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    z-index: 200;
    transition: transform 0.4s var(--ease-out-expo), opacity 0.4s ease, visibility 0.4s ease;
  }

  .nav__links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav__link {
    font-size: 1.3rem;
  }

  .nav__hamburger {
    display: flex;
  }

  .nav__cta-desktop {
    display: inline-flex;
    font-size: 1.1rem;
    padding: 0.8rem 2rem;
    margin-top: 1rem;
  }

  /* Hero Section Small Mobile Adjustments */
  .hero {
    padding: calc(var(--nav-height) + 2rem) 1rem 0;
    min-height: auto;
  }

  .hero__logo-brand {
    margin-bottom: 1.25rem;
  }

  .hero__logo-img {
    height: 42px;
  }

  .hero__title {
    font-size: clamp(1.9rem, 7vw, 2.6rem);
    margin-bottom: 1rem;
  }

  .hero__desc {
    margin-bottom: 2rem;
  }

  .hero__cta-specialist {
    gap: 1rem;
    font-size: 0.82rem;
  }

  .hero__cta-icon-circle {
    width: 48px;
    height: 48px;
  }

  .hero__cta-monogram {
    width: 22px;
    height: 22px;
  }

  .airplane-window {
    max-width: 250px;
    border-radius: 90px;
  }

  .airplane-window__frame {
    border-radius: 90px;
    padding: 10px;
  }

  .airplane-window__inner-bezel {
    border-radius: 80px;
    padding: 7px;
  }

  .airplane-window__glass {
    border-radius: 73px;
  }

  .hero__scroll {
    display: none;
  }

  .trust__cards {
    grid-template-columns: 1fr;
  }

  .authority {
    padding: 3.5rem 0;
  }

  .authority__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .authority__item {
    padding: 1.15rem 0.85rem;
    max-width: none;
    width: 100%;
    flex: none;
  }

  .services__gallery {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-image-card {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
    aspect-ratio: 4 / 5 !important;
    min-height: 420px;
  }

  .service-image-card--featured,
  .service-image-card--wide,
  .services__gallery>.service-image-card:first-child {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
    aspect-ratio: 4 / 5 !important;
    min-height: 420px;
  }

  /* Modal — Full mobile responsive */
  .service-modal {
    width: calc(100% - 1rem);
    max-height: 92vh;
    border-radius: 20px;
    margin: auto;
  }

  .service-modal__container {
    padding: 1.5rem 1.25rem 1.75rem;
    border-radius: 20px;
    max-height: 92vh;
  }

  .service-modal__close {
    width: 34px;
    height: 34px;
    font-size: 1.1rem;
    margin-bottom: -34px;
  }

  .modal-service__header {
    padding-right: 2.5rem;
    margin-bottom: 1rem;
  }

  .modal-service__number {
    font-size: 0.75rem;
  }

  .modal-service__grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .modal-service__image-container {
    border-radius: 16px;
    margin: 0;
    aspect-ratio: 16 / 10;
  }

  .modal-service__cta-footer {
    margin-top: 1.5rem;
  }

  .modal-service__cta-footer .btn {
    font-size: 0.85rem;
    padding: 0.9rem 1.5rem;
  }

  .modal-service__desc-wrapper {
    margin-bottom: 1rem;
  }

  .process__steps {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .diff__grid {
    grid-template-columns: 1fr;
  }

  .testi-card {
    width: 100%;
    min-width: 100%;
  }

  .section__header {
    margin-bottom: 3rem;
  }

  .cta-section {
    padding: 6rem 0;
  }

  .cta-section__glass-container {
    padding: 2rem 1.25rem !important;
  }

  .cta-section__details-grid {
    grid-template-columns: 1fr !important;
    gap: 1.75rem !important;
  }

  .cta-section__address-row {
    margin-bottom: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__brand-text {
    max-width: 100%;
  }

  .footer__social {
    justify-content: center;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .wa-float {
    width: 52px;
    height: 52px;
    bottom: 1.5rem;
    right: 1.5rem;
  }

  .wa-float svg {
    width: 24px;
    height: 24px;
  }

  /* Onde Encontrar & Macbook Mobile Responsive */
  .onde-encontrar__grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .onde-encontrar__cards {
    flex-direction: column;
    gap: 1rem;
  }

  .onde-encontrar__card {
    min-height: auto;
    height: auto;
  }

  .macbook {
    width: 85%;
  }

  /* Problems 768px */
  .problems__grid {
    grid-template-columns: 1fr;
  }

  .problems__info-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* ============================================================
   EMERGENCY SVG SIZE OVERRIDES — Prevents any SVG icon 
   from rendering at an unintended size.
   These rules use !important to guarantee they win.
   ============================================================ */

/* Hero checkmarks */
.hero__feature-icon {
  width: 18px !important;
  min-width: 18px !important;
  max-width: 18px !important;
  height: 18px !important;
  flex-shrink: 0 !important;
}

/* Problem/Direitos section arrow icons */
.problem-card__cta svg,
.problem-card__cta>svg {
  width: 14px !important;
  min-width: 14px !important;
  max-width: 14px !important;
  height: 14px !important;
  flex-shrink: 0 !important;
}

/* About section carousel buttons */
.about__carousel-btn svg,
.about__carousel-btn>svg {
  width: 16px !important;
  min-width: 16px !important;
  max-width: 16px !important;
  height: 16px !important;
  flex-shrink: 0 !important;
}

/* Diferenciais section icons */
.diff-card__icon svg,
.diff-card__icon>svg {
  width: 26px !important;
  min-width: 26px !important;
  max-width: 26px !important;
  height: 26px !important;
}

/* About section feature checkmarks */
.about__features .about__feature svg,
.about__feature>svg {
  width: 18px !important;
  min-width: 18px !important;
  max-width: 18px !important;
  height: 18px !important;
  flex-shrink: 0 !important;
}

/* Testimonials navigation arrows */
.testimonials__arrow svg {
  width: 18px !important;
  height: 18px !important;
}

/* Footer social icons */
.footer__social-link svg {
  width: 16px !important;
  height: 16px !important;
}

/* Processo / Steps icons */
.step__icon svg,
.step__icon>svg {
  width: 24px !important;
  height: 24px !important;
}

/* ==========================================
   PHOTO LIGHTBOX MODAL (GLASSMORPHIC)
   ========================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1200;
  /* above everything including nav */
  background: rgba(11, 31, 77, 0.4);
  /* deep blue tint overlay */
  backdrop-filter: blur(25px) saturate(180%);
  -webkit-backdrop-filter: blur(25px) saturate(180%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-modal__close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: #fff;
  font-size: 1.25rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1210;
  transition: background 0.3s, transform 0.3s, border-color 0.3s;
}

.lightbox-modal__close:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.25);
  transform: scale(1.08);
}

.lightbox-modal__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1210;
  transition: background 0.3s, transform 0.3s, border-color 0.3s;
}

.lightbox-modal__nav:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-50%) scale(1.08);
}

.lightbox-modal__nav--prev {
  left: 32px;
}

.lightbox-modal__nav--next {
  right: 32px;
}

.lightbox-modal__content {
  max-width: 80%;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1205;
}

.lightbox-modal__img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  transition: opacity 0.15s ease-in-out;
  opacity: 1;
}

.lightbox-modal__caption {
  color: #fff;
  margin-top: 1.5rem;
  font-size: 1.1rem;
  font-weight: 500;
  text-align: center;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  font-family: var(--font-display);
}

.lightbox-modal__counter {
  position: absolute;
  bottom: 24px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  font-family: var(--font-ui);
}

/* Cursor change on about images */
.about__carousel-slide img {
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
}

.about__carousel-slide img:hover {
  transform: scale(1.03);
  filter: brightness(1.05);
}

@media (max-width: 768px) {
  .lightbox-modal__nav {
    width: 48px;
    height: 48px;
  }

  .lightbox-modal__nav--prev {
    left: 16px;
  }

  .lightbox-modal__nav--next {
    right: 16px;
  }

  .lightbox-modal__content {
    max-width: 90%;
  }

  .lightbox-modal__close {
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
  }
}