/* ════════════════════════════════════════════════
   FLOW ORANGE — CSS
   Paleta verde · Fundo azul-claro · Tema claro
════════════════════════════════════════════════ */

:root {
  --green:       #1A7A4A;
  --green-dark:  #0f4d2e;
  --green-light: #4CAF7D;
  --green-glow:  #6FCFA0;
  --orange:      #E87A00;
  --gold:        #F4A728;
}

/* ── Reset & Base ── */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background-color: #eef1fb;
  color: var(--green-dark);
  font-family: 'Inter', sans-serif;
}

body::before {
  content: '';
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  inset: 0;
  z-index: -1;
  background-image:
    radial-gradient(ellipse 60% 40% at 88%  5%,  rgba(26,122,74,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at  6% 92%,  rgba(76,175,125,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 50% 50%,  rgba(238,241,251,0.6) 0%, transparent 80%),
    linear-gradient(160deg, #e6edf5 0%, #eef1fb 50%, #f0f3fc 100%);
}

h1, h2, h3 { font-family: 'Plus Jakarta Sans', sans-serif; }

/* ── Utility text classes ── */
.body-text      { color: #3a4060; }
.secondary-text { color: #3a4060; }

.section-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.brand-strong { color: var(--green); font-weight: 600; }
.brand-orange  { color: var(--orange); font-weight: 700; }

/* ── Text Gradient (verde) ── */
.text-gradient {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 55%, var(--green-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Hero H1 Shimmer ── */
@keyframes skeleton {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}


.hero-h1 {
  background-image: linear-gradient(
    90deg,
    #E87A00  0%,
    #E87A00 22%,
    #FF9500 35%,
    #FFB347 42%,
    #FFE0B2 47%,
    #ffffff  50%,
    #FFE0B2 53%,
    #FFB347 58%,
    #FF9500 65%,
    #E87A00 78%,
    #E87A00 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: skeleton 5.5s ease-in-out infinite;
  will-change: background-position;
  font-size: 3rem;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  padding-bottom: 0.08em;
}

/* ── Divider ── */
.sun-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--green);
  opacity: 0.45;
}
.sun-divider::before,
.sun-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--green), transparent);
}
.star::before { content: '✦'; }

/* ── Cards ── */
.card-glow {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(26, 122, 74, 0.13);
  box-shadow: 0 2px 16px rgba(26, 122, 74, 0.04);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.card-glow:hover {
  border-color: rgba(232, 122, 0, 0.30);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26, 122, 74, 0.09);
  background: rgba(255, 255, 255, 0.96);
}

/* ── Fade-up Scroll Reveal ── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Buttons ── */
.btn-primary {
  background-image: linear-gradient(135deg, var(--orange), var(--gold));
  background-size: 100% 100%;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-block;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn-primary:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 32px rgba(232, 122, 0, 0.42);
}

.btn-outline {
  border: 1.5px solid var(--green);
  color: var(--green);
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
  display: inline-block;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn-outline:hover {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: #fff;
}

/* Outline button inside dark hero overlay */
.btn-outline-hero {
  border: 1.5px solid rgba(255, 255, 255, 0.65);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  display: inline-block;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn-outline-hero:hover {
  background: linear-gradient(135deg, rgba(255,255,255,0.25), rgba(255,255,255,0.10));
  border-color: #fff;
  color: #fff;
}

/* Hero: esquerda verde, direita laranja */
.hero-split .btn-primary {
  background-image: linear-gradient(135deg, var(--green), var(--green-light));
}
.hero-split .btn-primary:hover {
  box-shadow: 0 8px 32px rgba(26,122,74,0.42);
}
.hero-split .btn-outline-hero {
  background-image: linear-gradient(135deg, var(--orange), var(--gold));
  border-color: transparent;
  color: #fff;
}
.hero-split .btn-outline-hero:hover {
  background: linear-gradient(135deg, var(--orange), var(--gold));
  box-shadow: 0 8px 32px rgba(232,122,0,0.42);
  border-color: transparent;
  color: #fff;
}

/* Nuvem aparece em todos os botões ao passar o mouse */
.btn-primary::before,
.btn-outline::before,
.btn-outline-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  inset: 0;
  background: url('../assets/images/cloud.png') center / cover no-repeat;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  mix-blend-mode: soft-light;
  z-index: 0;
}
.btn-primary:hover::before,
.btn-outline:hover::before,
.btn-outline-hero:hover::before {
  opacity: 0.9;
}

/* ── Logo Glow ── */
@keyframes glow-pulse {
  0%, 100% { filter: drop-shadow(0 0 18px rgba(76,175,125,0.7)); }
  50%       { filter: drop-shadow(0 0 32px rgba(111,207,160,0.9)); }
}
.logo-glow { animation: glow-pulse 3.5s ease-in-out infinite; }

/* ── Urgency Badge (vermelho — senso de escassez) ── */
.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #c0392b 0%, #ef4444 50%, #ff6b6b 100%);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: #fff;
  margin-top: 1.5rem;
  position: relative;
  overflow: hidden;
  animation: badge-blink 1.4s ease-in-out infinite;
}
.urgency-badge::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  inset: 0;
  background: url('../assets/images/cloud.png') center / cover no-repeat;
  opacity: 0.9;
  pointer-events: none;
  mix-blend-mode: soft-light;
  z-index: 0;
}
.urgency-badge::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.70) 50%, transparent 100%);
  transform: translateX(-200%) skewX(-15deg);
  animation: badge-shine 2.4s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
.urgency-badge > * {
  position: relative;
  z-index: 2;
}
.urgency-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.55); }
  50%       { box-shadow: 0 0 0 6px transparent; }
}

/* ════════════════════════════════════════════════
   NAVBAR (efeito nuvem volumosa)
════════════════════════════════════════════════ */
.site-header {
  transition: background 0.35s ease, box-shadow 0.35s ease;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}
.site-header.scrolled {
  background: rgba(6, 9, 30, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.09);
}

.site-nav a {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.site-nav a:hover { color: #fff; }
.site-header.scrolled .site-nav a {
  color: rgba(255, 255, 255, 0.85);
  text-shadow: none;
}
.site-header.scrolled .site-nav a:hover { color: var(--green); }


.mobile-menu-bg { background: rgba(238, 241, 251, 0.98); }

/* ── Header logo responsiva ── */
.header-logo { width: 44px; height: 44px; }
@media (max-width: 860px) {
  .header-logo { width: 32px; height: 32px; }
}

/* ── Botão 3 pontos mobile ── */
.mobile-dots-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mobile-dots-btn span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--orange);
}

/* ── Dropdown mobile ── */
.mobile-dots-dropdown {
  position: absolute;
  top: 72px;
  right: 1rem;
  background: rgba(6, 9, 30, 0.92);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 14px;
  padding: 0.4rem;
  min-width: 170px;
  z-index: 100;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}
.mobile-dots-dropdown a {
  display: block;
  padding: 0.7rem 1rem;
  color: rgba(255, 255, 255, 0.85);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 10px;
  transition: background 0.18s;
}
.mobile-dots-dropdown a:hover { background: rgba(255,255,255,0.08); }
.mobile-dots-cta {
  margin-top: 0.25rem;
  background: var(--orange) !important;
  color: #fff !important;
  text-align: center;
  font-weight: 700 !important;
}

#mobile-menu a {
  display: block;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(26, 122, 74, 0.08);
  color: #1a2040;
  text-decoration: none;
  transition: color 0.2s;
}
#mobile-menu a:hover { color: var(--green); }

/* ════════════════════════════════════════════════
   HERO SPLIT
════════════════════════════════════════════════ */
.hero-split {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 1.5rem 5rem;
  position: relative;
  z-index: 0;
  overflow: hidden;
  background-color: #0a1628;
}

/* garante que body::before não apareça sobre o hero */
body::before { z-index: -2 !important; }

.hero-video-bg {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  display: block;
  pointer-events: none;
}

.hero-video-overlay {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to right,
    rgba(6, 9, 30, 0.96)  0%,
    rgba(6, 9, 30, 0.92) 35%,
    rgba(6, 9, 30, 0.80) 58%,
    rgba(6, 9, 30, 0.65) 75%,
    rgba(6, 9, 30, 0.55) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.hero-sun-logo {
  object-fit: contain;
  flex-shrink: 0;
  pointer-events: none;
}

.hero-sun-desktop {
  width: 320px;
  display: block;
  filter:
    drop-shadow(0 0 6px rgba(255, 150, 20, 0.60))
    drop-shadow(0 0 16px rgba(255, 120, 0, 0.30));
}

.hero-sun-mobile {
  display: none;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@keyframes cloud-breathe {
  0%, 100% { opacity: 0; }
  45%, 55% { opacity: 0.80; }
}

@keyframes price-shine {
  0%   { background-position: 0% center; }
  35%  { background-position: 100% center; }
  100% { background-position: 100% center; }
}

.hero-h1-wrap {
  filter:
    drop-shadow(0 0 6px rgba(255, 150, 20, 0.45))
    drop-shadow(0 2px 4px rgba(0, 0, 0, 0.50));
}

.hero-segunda {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: -1rem;
}

.hero-edicao {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-style: normal;
  color: #fff;
  letter-spacing: 0.01em;
  display: inline-block;
  background: linear-gradient(135deg, rgba(34, 180, 100, 0.85) 0%, rgba(80, 220, 140, 0.75) 100%);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.15), 0 4px 16px rgba(0,0,0,0.25);
  padding: 0.55rem 1.6rem;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}


.hero-edicao::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  inset: 0;
  background: url('assets/images/cloud.png') center / cover no-repeat;
  opacity: 0;
  animation: cloud-breathe 3.5s ease-in-out infinite;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 1;
}

.hero-sub {
  font-family: 'Oswald', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
  max-width: 460px;
  color: rgba(255, 255, 255, 0.78);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ────────────────────────────────────────────────
   HERO VISUAL — Sistema Solar
──────────────────────────────────────────────── */
.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual-wrap {
  width: 320px;
  height: 320px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Aura central (corona do sol) */
.hero-visual-wrap::before {
  content: '';
  position: absolute;
  width: 154px;
  height: 154px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(255, 255, 255, 0.20) 0%,
    rgba(255, 255, 255, 0.06) 45%,
    transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.hero-logo-center {
  width: 130px;
  height: 130px;
  object-fit: contain;
  position: relative;
  z-index: 10;
  filter: drop-shadow(0 0 22px rgba(255, 255, 255, 0.85))
          drop-shadow(0 0 48px rgba(255, 255, 255, 0.35));
}

/* Órbitas */
.hero-ring {
  position: absolute;
  border-radius: 50%;
  border-style: solid;
  border-width: 1px;
  will-change: transform;
}
.hero-ring::before {
  content: '';
  position: absolute;
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
}

@keyframes spin-cw  { from { transform: rotate(0deg);   } to { transform: rotate(360deg);  } }
@keyframes spin-ccw { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }

/* Órbita 1 — Mercúrio (interna, rápida) */
.hero-ring-1 {
  top: 112px; right: 112px; bottom: 112px; left: 112px;
  inset: 112px;
  border-color: rgba(255, 255, 255, 0.50);
  animation: spin-cw 6s linear infinite;
}
.hero-ring-1::before {
  width: 10px; height: 10px; top: -5px;
  background: #fff;
  box-shadow: 0 0 10px #fff, 0 0 20px rgba(255,255,255,0.6);
}

/* Órbita 2 — Vênus */
.hero-ring-2 {
  top: 76px; right: 76px; bottom: 76px; left: 76px;
  inset: 76px;
  border-color: rgba(255, 255, 255, 0.35);
  animation: spin-ccw 13s linear infinite;
}
.hero-ring-2::before {
  width: 9px; height: 9px; top: -4.5px;
  background: #fff;
  box-shadow: 0 0 9px #fff, 0 0 18px rgba(255,255,255,0.5);
}

/* Órbita 3 — Terra */
.hero-ring-3 {
  top: 36px; right: 36px; bottom: 36px; left: 36px;
  inset: 36px;
  border-color: rgba(255, 255, 255, 0.25);
  animation: spin-cw 23s linear infinite;
}
.hero-ring-3::before {
  width: 14px; height: 14px; top: -7px;
  background: #fff;
  box-shadow: 0 0 14px #fff, 0 0 28px rgba(255,255,255,0.45);
}

/* Órbita 4 — Marte */
.hero-ring-4 {
  top: -3px; right: -3px; bottom: -3px; left: -3px;
  inset: -3px;
  border-color: rgba(255, 255, 255, 0.16);
  animation: spin-ccw 36s linear infinite;
}
.hero-ring-4::before {
  width: 8px; height: 8px; top: -4px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 0 8px rgba(255,255,255,0.6);
}

/* Órbita 5 — Júpiter (externa, lenta) */
.hero-ring-5 {
  top: -35px; right: -35px; bottom: -35px; left: -35px;
  inset: -35px;
  border-color: rgba(255, 255, 255, 0.09);
  animation: spin-cw 60s linear infinite;
}
.hero-ring-5::before {
  width: 7px; height: 7px; top: -3.5px;
  background: rgba(255, 255, 255, 0.60);
  box-shadow: 0 0 7px rgba(255,255,255,0.35);
}

/* ── Badge flutuante mobile (fora do hero, controlado por JS) ── */
.urgency-float-mobile {
  display: none;
}

@media (max-width: 860px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
    gap: 0;
  }
  .hero-text  { align-items: center; }
  .hero-sub   { text-align: center; margin-left: auto; margin-right: auto; }
  .hero-ctas  { justify-content: center; }
  .hero-visual { display: none; }
  .hero-sun-desktop { display: none; }
  .hero-sun-mobile  { display: block; width: 140px; margin: 0 auto 1rem; filter: drop-shadow(0 0 10px rgba(255, 150, 20, 0.95)) drop-shadow(0 0 22px rgba(255, 120, 0, 0.60)); }

  .hero-video-overlay {
    background: rgba(6, 9, 30, 0.72);
  }

  .hero-h1 {
    font-size: 3.5rem;
    font-size: clamp(3rem, 11vw, 4rem);
  }
  .hero-h1-wrap {
    filter:
      drop-shadow(0 0 5px rgba(255, 150, 20, 0.40))
      drop-shadow(0 2px 4px rgba(0, 0, 0, 0.55));
  }

  /* No hero mobile: oculta badge verde e badge vermelho in-hero */
  .hero-edicao { display: none !important; }
  .hero-text .urgency-badge { display: none !important; }

  /* Badge flutuante fixo no rodapé */
  .urgency-float-mobile {
    display: inline-flex;
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(16px);
    z-index: 90;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.45s ease, transform 0.45s ease;
    white-space: nowrap;
  }
  .urgency-float-mobile.urgency-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
  }
}

/* ════════════════════════════════════════════════
   SOBRE
════════════════════════════════════════════════ */

/* ── Testimonial balloon na seção Sobre ── */
.sobre-foto-wrapper {
  position: relative;
}
.sobre-testimonial {
  position: absolute;
  bottom: 1.5rem;
  right: -2.5rem;
  background: #fff;
  border-radius: 1.25rem;
  padding: 1.1rem 1.35rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.13), 0 2px 8px rgba(26,122,74,0.08);
  max-width: 270px;
  border: 1px solid rgba(26,122,74,0.10);
  z-index: 10;
}
.sobre-testimonial::after {
  content: '';
  position: absolute;
  top: -9px;
  right: 2rem;
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 9px solid #fff;
}
.sobre-testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
}
.sobre-testimonial-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(26,122,74,0.08);
  border: 2px solid rgba(26,122,74,0.22);
  overflow: hidden;
  flex-shrink: 0;
}
.sobre-testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sobre-testimonial-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green-dark);
}
.sobre-testimonial-text {
  font-size: 0.76rem;
  line-height: 1.65;
  color: #3a4060;
  font-style: italic;
  margin: 0;
}

@media (max-width: 768px) {
  .sobre-testimonial {
    position: static;
    margin-top: 1rem;
    left: auto;
    bottom: auto;
    max-width: 100%;
  }
  .sobre-testimonial::after { display: none; }
}

/* ════════════════════════════════════════════════
   SERVIÇOS
════════════════════════════════════════════════ */
.servicos-section {
  background: rgba(26, 122, 74, 0.03);
}

.servicos-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.servicos-parcela {
  font-size: 1rem;
  line-height: 1.55;
  text-align: right;
  color: #3a4060;
  flex-shrink: 0;
}
.servicos-parcela strong {
  display: block;
  font-size: 1.15rem;
  color: var(--green);
  font-weight: 700;
}

.servicos-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.servico-card {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(26, 122, 74, 0.12);
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s, background 0.3s;
}
.servico-card:hover {
  background: #fff;
  border-color: rgba(232, 122, 0, 0.28);
  box-shadow: 0 16px 48px rgba(26, 122, 74, 0.08);
  transform: translateY(-5px);
}

.servico-icon {
  font-size: 2.8rem;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.servico-titulo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--green-dark);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.servico-destaque {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--orange);
}

.servico-lista {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(26, 122, 74, 0.10);
  padding-top: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.servico-lista li {
  font-size: 0.83rem;
  color: #3a4060;
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.55;
}
.servico-lista li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--green);
  font-size: 0.9rem;
}

.servicos-evento-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.helio-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center 60%;
  border-radius: 1.5rem;
  box-shadow: 0 12px 48px rgba(0,0,0,0.14);
  display: block;
}

@media (max-width: 768px) {
  .servicos-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .servicos-parcela { text-align: left; }
  .servicos-cards { grid-template-columns: 1fr; }

  .servicos-evento-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .helio-img {
    height: 280px;
  }

  #servicos { padding-top: 3rem !important; padding-bottom: 2rem !important; }
  #processo { padding-top: 2rem !important; padding-bottom: 2rem !important; }
  #sobre    { padding-top: 2rem !important; padding-bottom: 2rem !important; }
  #precos   { padding-top: 2rem !important; }

  .card-featured .text-gradient {
    background-image: linear-gradient(
      90deg,
      var(--green) 0%,
      var(--green) 25%,
      var(--green-light) 45%,
      #d4fff0 50%,
      var(--green-light) 55%,
      var(--green) 75%,
      var(--green) 100%
    ) !important;
    background-size: 400% auto !important;
    background-position: 0% center;
    background-repeat: no-repeat;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
    animation: price-shine 5s ease-in-out infinite;
    will-change: background-position;
  }
  .card-featured .price-value > span:first-child,
  .card-featured .price-prefix {
    color: var(--green-dark) !important;
    -webkit-text-fill-color: var(--green-dark) !important;
  }
}

/* ════════════════════════════════════════════════
   PROCESSO
════════════════════════════════════════════════ */
.step-number {
  background: #FF5C00;
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  position: relative;
  overflow: hidden;
}
.step-number::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  inset: 0;
  background: url('../assets/images/suntex.png') center / cover no-repeat;
  opacity: 0.22;
  pointer-events: none;
}

.step-title {
  color: var(--green);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.processo-card {
  position: relative;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(200, 215, 255, 0.40);
  box-shadow: 0 4px 20px rgba(200, 215, 255, 0.18);
  overflow: hidden;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.3s ease;
}
.processo-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  inset: 0;
  background: url('../assets/images/cloud.png') center / cover no-repeat;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}
.processo-card:hover::before { opacity: 0.88; }
.processo-card:hover {
  border-color: rgba(255, 255, 255, 0.85);
  box-shadow:
    0  6px 28px rgba(200, 215, 255, 0.36),
    0 16px 50px rgba(185, 208, 255, 0.16);
  transform: translateY(-2px);
}
.processo-card > * {
  position: relative;
  z-index: 1;
}

/* ════════════════════════════════════════════════
   PREÇOS
════════════════════════════════════════════════ */
.section-alt { background: rgba(26, 122, 74, 0.03); }

.price-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: var(--orange);
  margin-bottom: 0.3rem;
  display: block;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.price-card .price-value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}

.price-card .price-period {
  font-size: 0.75rem;
  color: #3a4060;
  opacity: 0.65;
  margin-top: 0.15rem;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}
.price-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #3a4060;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(26, 122, 74, 0.08);
}
.price-card ul li::before {
  content: '✦';
  color: var(--green);
  flex-shrink: 0;
  font-size: 0.65rem;
  margin-top: 0.2rem;
}

/* Overlay verde no hover — acelerado por GPU */
.price-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  inset: 0;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
  z-index: 0;
}
.price-card > * { position: relative; z-index: 3; }

.price-card:hover::after { opacity: 1; }
.price-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 56px rgba(26, 122, 74, 0.28);
  border-color: var(--green);
}

/* Texto branco sobre overlay verde */
.price-card:hover .text-gradient {
  background: none !important;
  -webkit-text-fill-color: #fff !important;
  color: #fff !important;
}
.price-card:hover .price-period    { color: rgba(255,255,255,0.80) !important; opacity: 1 !important; }
.price-card:hover ul li            { color: #fff !important; border-bottom-color: rgba(255,255,255,0.20) !important; }
.price-card:hover ul li::before    { color: rgba(255,255,255,0.75) !important; }
.price-card:hover .price-label     { color: rgba(255,255,255,0.85) !important; }

/* Card destaque (Logo de Poder) — overlay laranja no hover */
.card-featured {
  border-color: rgba(232, 122, 0, 0.35) !important;
  background: rgba(255, 140, 0, 0.10) !important;
  box-shadow: 0 8px 40px rgba(232, 122, 0, 0.14) !important;
  transform: scale(1.04);
  z-index: 1;
}
.card-featured .text-gradient {
  background-image: linear-gradient(
    90deg,
    var(--green) 0%,
    var(--green) 25%,
    var(--green-light) 45%,
    #d4fff0 50%,
    var(--green-light) 55%,
    var(--green) 75%,
    var(--green) 100%
  );
  background-size: 400% auto;
  background-position: 0% center;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: price-shine 5s ease-in-out infinite;
  will-change: background-position;
}
.card-featured .price-value > span:first-child {
  color: var(--green-light) !important;
  -webkit-text-fill-color: var(--green-light) !important;
}
.price-card .price-prefix {
  color: var(--green-light) !important;
  -webkit-text-fill-color: var(--green-light) !important;
}
.price-card:hover .price-prefix,
.card-featured .price-prefix,
.card-featured:hover .price-prefix {
  color: var(--green-dark) !important;
  -webkit-text-fill-color: var(--green-dark) !important;
}
.card-featured::after {
  background: linear-gradient(135deg, var(--orange) 0%, var(--gold) 100%);
  transition: background 0.3s ease, opacity 0.25s ease;
}
.card-featured:hover::after {
  background: linear-gradient(135deg, var(--orange) 0%, var(--gold) 100%);
}
.card-featured:hover {
  transform: scale(1.04) translateY(-8px) !important;
  box-shadow: 0 20px 56px rgba(232, 122, 0, 0.42) !important;
  border-color: var(--orange) !important;
}
.card-featured:hover .text-gradient {
  background: none !important;
  -webkit-text-fill-color: var(--green-dark) !important;
  color: var(--green-dark) !important;
}
.card-featured:hover .price-value > span:first-child {
  color: var(--green-dark) !important;
  -webkit-text-fill-color: var(--green-dark) !important;
}
.card-featured:hover .price-period,
.card-featured:hover [style*="color: var(--green-dark)"],
.card-featured:hover [style*="color: #6b7c9e"] { color: rgba(255,255,255,0.88) !important; }
.card-featured:hover .price-label { color: rgba(255,255,255,0.80) !important; }
.card-featured::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  inset: 0;
  background: url('../assets/images/logo.png') center / 62% no-repeat;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 2;
}
.card-featured:hover::before { opacity: 0.13; }

.badge-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--orange), var(--gold));
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
  white-space: nowrap;
}


/* Botões dentro dos price cards */
.price-btn {
  font-weight: 600;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.price-btn-outline {
  background: #eef1fb;
  border: 1.5px solid rgba(26, 122, 74, 0.22);
  color: var(--green-dark);
}
.price-btn-outline:hover {
  background: #fff;
  border-color: var(--orange);
  color: var(--orange);
}
.price-btn-primary {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: #fff;
  border: none;
}
.price-btn-primary:hover {
  box-shadow: 0 6px 24px rgba(26, 122, 74, 0.45);
  transform: scale(1.03);
}

/* ════════════════════════════════════════════════
   PORTFÓLIO CAROUSEL
════════════════════════════════════════════════ */
.carousel-wrapper {
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  padding: 2.5rem 0 4rem;
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

.carousel-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: carousel-scroll 55s linear infinite;
  padding: 1.5rem 0;
}
.carousel-wrapper:hover .carousel-track { animation-play-state: paused; }

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

.carousel-item {
  flex-shrink: 0;
  width: 440px;
  height: 360px;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(26, 122, 74, 0.15);
  background: rgba(255, 255, 255, 0.70);
  transition: border-color 0.35s, transform 0.35s, box-shadow 0.35s;
  cursor: pointer;
}
.carousel-item:hover {
  border-color: rgba(26, 122, 74, 0.50);
  transform: scale(1.03);
  box-shadow: 0 8px 28px rgba(26, 122, 74, 0.12);
}
.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

@media (max-width: 768px) { .carousel-item { width: 320px; height: 260px; } }
@media (max-width: 480px) { .carousel-item { width: 280px; height: 230px; } }

/* ════════════════════════════════════════════════
   DEPOIMENTOS
════════════════════════════════════════════════ */
.testimonial-card   { display: flex; flex-direction: column; gap: 1rem; }
.testimonial-quote  { font-size: 3rem; line-height: 1; color: var(--green); opacity: 0.22; font-family: Georgia, serif; }
.testimonial-stars  { color: var(--gold); letter-spacing: 3px; font-size: 0.85rem; }
.testimonial-text   { font-size: 0.9rem; line-height: 1.72; color: #3a4060; flex: 1; }
.testimonial-author strong { color: var(--green-dark); font-size: 0.9rem; }
.testimonial-author span   { font-size: 0.75rem; color: #6b7c9e; }

/* ════════════════════════════════════════════════
   CTA FULL DARK
════════════════════════════════════════════════ */
.cta-full-dark {
  background: linear-gradient(150deg, #060c25 0%, #0a1f12 50%, #060c25 100%);
  color: #f0f8f3;
  position: relative;
  overflow: hidden;
}
.cta-full-dark::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 60% at 75% 50%, rgba(26, 122, 74, 0.28) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 15% 50%, rgba(232, 122, 0, 0.10) 0%, transparent 60%);
  pointer-events: none;
}

/* Gradiente verde luminoso no CTA escuro */
.cta-gradient {
  background: linear-gradient(135deg, var(--green-glow) 0%, var(--green-light) 50%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ════════════════════════════════════════════════
   CONTATO
════════════════════════════════════════════════ */
.contato-section { background: rgba(6, 9, 30, 0.92); }

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 5rem;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}

.contato-info .logo-contato {
  width: 52px;
  height: 52px;
  object-fit: contain;
  margin-bottom: 1.5rem;
  opacity: 0.85;
}

.contato-info h3 { font-size: 1.75rem; font-weight: 700; margin-bottom: 1rem; line-height: 1.2; }

/* Gradiente verde claro visível sobre fundo escuro */
.contato-gradient {
  background: linear-gradient(135deg, var(--green-glow) 0%, var(--green-light) 55%, var(--green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contato-desc {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(200, 220, 200, 0.70);
  margin-bottom: 2rem;
}

.contato-social { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.contato-social a {
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(76, 175, 125, 0.40);
  font-size: 0.8rem;
  color: var(--green-light);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  text-decoration: none;
}
.contato-social a:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

.contato-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-light);
  margin-bottom: 0.5rem;
}

.contato-input {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(76, 175, 125, 0.28);
  color: #f0f8f3;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contato-input::placeholder { color: rgba(200, 220, 200, 0.40); }
.contato-input:focus {
  border-color: var(--green-light);
  box-shadow: 0 0 0 2px rgba(76, 175, 125, 0.20);
  outline: none;
}

@media (max-width: 768px) {
  .contato-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════ */
.site-footer {
  background: #eef1fb;
  border-top: 1px solid rgba(26, 122, 74, 0.12);
  color: #6b7c9e;
}

/* ════════════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
════════════════════════════════════════════════ */
#whatsapp-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 100;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.40);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
#whatsapp-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.60);
}
#whatsapp-btn svg { width: 28px; height: 28px; }

/* ════════════════════════════════════════════════
   MOBILE — hero buttons & urgency badge
════════════════════════════════════════════════ */
@media (max-width: 860px) {
  .hero-split .btn-primary::before,
  .hero-split .btn-outline-hero::before { opacity: 0.9; }

  .hero-split .btn-primary {
    background-image: linear-gradient(135deg, #1A7A4A, #4CAF7D) !important;
    background-size: 100% 100% !important;
    background-repeat: no-repeat !important;
    border-color: transparent !important;
    color: #fff !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
    animation: pulse-btn 4s ease-in-out infinite !important;
  }
  .hero-split .btn-outline-hero {
    background-image: linear-gradient(135deg, var(--orange), var(--gold)) !important;
    background-size: 100% 100% !important;
    background-repeat: no-repeat !important;
    border-color: transparent !important;
    color: #fff !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
    animation: pulse-btn 4s ease-in-out infinite !important;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
  }

  .hero-split .hero-sub {
    text-shadow:
      0 1px 8px rgba(0, 0, 0, 0.75),
      0 2px 20px rgba(0, 0, 0, 0.55);
    color: #fff !important;
    font-weight: 500;
  }

  .hero-split .urgency-dot {
    background: #fff !important;
    box-shadow: none !important;
  }
}

@keyframes badge-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.45; }
}

@keyframes badge-shine {
  0%   { transform: translateX(-200%) skewX(-15deg); }
  100% { transform: translateX(350%) skewX(-15deg); }
}

@keyframes pulse-btn {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 16px rgba(0,0,0,0.22);
  }
  50% {
    transform: scale(1.018);
    box-shadow: 0 5px 20px rgba(26,122,74,0.30);
  }
}

/* ── Espaçamento entre seções ── */
#processo { padding-bottom: 3rem; }
#sobre    { padding-top: 3rem; padding-bottom: 3rem; }
#precos   { padding-top: 3rem; }

/* ── Hero — tamanho maior no desktop ── */
@media (min-width: 861px) {
  .hero-h1 {
    font-size: 5rem;
    font-size: clamp(4rem, 6vw, 6.5rem);
  }
  .hero-sub {
    font-size: 1.35rem;
    max-width: 580px;
    line-height: 1.7;
  }
}

/* ── Carrossel de Depoimentos ── */
.dep-carousel-outer {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.dep-carousel-wrapper {
  overflow: hidden;
  flex: 1;
  padding: 16px 4px;
  margin: -16px -4px;
}
.dep-track {
  display: flex;
  align-items: flex-start;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.dep-card {
  min-width: 100%;
  box-sizing: border-box;
  background: #fff;
  border-radius: 1.5rem;
  padding: 2.25rem 2.75rem;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.dep-quote {
  font-size: 4rem;
  line-height: 1;
  color: var(--green-light);
  font-family: Georgia, serif;
  opacity: 0.5;
  margin-bottom: -0.5rem;
}
.dep-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #3a4060;
  font-style: italic;
}
.dep-card-footer {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(26,122,74,0.09);
}
.dep-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(26,122,74,0.08);
  border: 2px solid rgba(26,122,74,0.22);
  overflow: hidden;
  flex-shrink: 0;
}
.dep-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dep-name {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--green-dark);
}
.dep-stars {
  display: block;
  font-size: 0.8rem;
  color: var(--orange);
  margin-top: 0.15rem;
  letter-spacing: 0.05em;
}
.dep-arrow {
  background: #fff;
  border: 1.5px solid rgba(26,122,74,0.20);
  color: var(--green-dark);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.dep-arrow:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
  box-shadow: 0 4px 16px rgba(26,122,74,0.25);
}
.dep-dots {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1.75rem;
}
.dep-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(26,122,74,0.20);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}
.dep-dot.active {
  background: var(--green);
  transform: scale(1.35);
}
@media (max-width: 768px) {
  .dep-carousel-outer {
    overflow: hidden;
  }
  .dep-carousel-wrapper {
    overflow: visible;
    flex: none;
    width: calc(100% - 72px);
    margin: -16px auto;
  }
  .dep-card { padding: 1.5rem 1.5rem; min-width: 100%; transform: scale(0.88); }
  .dep-arrow { width: 38px; height: 38px; font-size: 1.3rem; display: none; }
}

/* ── Galeria Flow Orange — Slideshow ── */
.galeria-slide-outer {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.galeria-slide-wrapper {
  flex: 1;
  overflow: hidden;
  border-radius: 1.5rem;
}
.galeria-slide-track {
  display: flex;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}
.galeria-slide {
  min-width: 100%;
  height: 360px;
  overflow: hidden;
}
@supports (aspect-ratio: 4/3) {
  .galeria-slide {
    height: auto;
    aspect-ratio: 4 / 3;
  }
}
.galeria-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.galeria-arrow {
  background: #fff;
  border: 1.5px solid rgba(26,122,74,0.20);
  color: var(--green-dark);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.galeria-arrow:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
  box-shadow: 0 4px 16px rgba(26,122,74,0.25);
}
.galeria-dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1.25rem;
}
.galeria-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(26,122,74,0.20);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}
.galeria-dot.active {
  background: var(--green);
  transform: scale(1.35);
}

@media (max-width: 768px) {
  .galeria-slide { height: 520px; }
  @supports (aspect-ratio: 9/16) {
    .galeria-slide { height: auto; aspect-ratio: 9 / 16; }
  }
  .galeria-arrow { width: 36px; height: 36px; font-size: 1.3rem; }
}

/* ════════════════════════════════════════════════
   REDUCED MOTION ACCESSIBILITY
════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .hero-ring,
  .hero-h1,
  .urgency-dot,
  .logo-glow,
  .carousel-track { animation: none !important; }
}

/* ── Termos e Condições Modal ── */
.terms-overlay {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  inset: 0;
  z-index: 200;
  background: rgba(4, 6, 20, 0.78);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
}
.terms-overlay[hidden] { display: none; }

.terms-box {
  background: rgba(10, 14, 40, 0.40);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 1.5rem;
  max-width: 560px; width: 100%;
  max-height: 85vh; overflow-y: auto;
  box-shadow: 0 32px 80px rgba(0,0,0,0.55);
  display: flex; flex-direction: column;
}

.terms-header {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.75rem 2rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  border-radius: 1.5rem 1.5rem 0 0;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background: rgba(10, 14, 40, 0.40);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}
.terms-logo { width: 40px; height: 40px; object-fit: contain; flex-shrink: 0; opacity: 0.9; }
.terms-title {
  font-family: 'Anton', sans-serif; font-size: 1.4rem;
  color: #fff; letter-spacing: 0.04em; margin: 0;
  font-weight: 400;
}

.terms-body {
  padding: 1.75rem 2rem; font-family: 'Inter', sans-serif;
  font-size: 0.875rem; line-height: 1.8; color: rgba(255,255,255,0.72);
  flex: 1;
}
.terms-body ol { padding-left: 1.25rem; margin: 1rem 0; }
.terms-body li { margin-bottom: 0.6rem; }
.terms-body strong { color: rgba(255,255,255,0.95); font-weight: 600; }
.terms-body em { color: rgba(255,255,255,0.85); font-style: italic; }
.terms-body p:first-child { margin-top: 0; }
.terms-section-title {
  font-family: 'Inter', sans-serif; font-size: 0.7rem;
  color: rgba(255,255,255,0.35); letter-spacing: 0.12em;
  margin: 0 0 1.5rem; text-transform: uppercase; font-weight: 500;
}
.terms-body p { margin: 0.5rem 0; }

.terms-decline-msg {
  margin-top: 1rem; color: #ff6b6b;
  font-weight: 600; font-size: 0.85rem;
}

.terms-actions {
  display: flex; gap: 0.75rem; justify-content: flex-end;
  padding: 1.25rem 2rem 1.75rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
  background: rgba(10, 14, 40, 0.40);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-radius: 0 0 1.5rem 1.5rem;
}
.terms-btn {
  font-family: 'Inter', sans-serif; font-weight: 600;
  font-size: 0.875rem; padding: 0.6rem 1.5rem;
  border-radius: 999px; border: none; cursor: pointer;
  transition: opacity 0.2s;
}
.terms-btn:hover { opacity: 0.75; }
.terms-btn--decline {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.12);
}
.terms-btn--accept { background: #fff; color: #0a0e28; }

@media (max-width: 600px) {
  .terms-box { border-radius: 1.25rem; max-height: 90vh; }
  .terms-header { padding: 1.25rem 1.25rem 1rem; }
  .terms-body { padding: 1.25rem; font-size: 0.85rem; }
  .terms-actions { padding: 1rem 1.25rem 1.25rem; flex-direction: column-reverse; }
  .terms-btn { width: 100%; text-align: center; }
}
