/* ==========================================================
   STYLE.CSS — FINAL APPLE-LEVEL PREMIUM VERSION
   Clean • Modern • Smooth • Mobile-first
========================================================== */


/* ==========================================================
   1. TOKENS (DESIGN SYSTEM)
========================================================== */

:root {
  --green: #45da00;
  --green-soft: #39b54a18;
  --dark: #0b0b0d;
  --dark-soft: #181818;
  --muted: #6b7280;
  --muted-light: #9ca3af;
  --border: #e5e7eb;
  --bg: #ffffff;
  --glass: rgba(255,255,255,0.34);

  /* Spacing */
  --xs: 6px;
  --sm: 12px;
  --md: 20px;
  --lg: 36px;
  --xl: 60px;
  --xxl: 90px;

  /* Radius */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 30px;

  /* Shadows */
  --shadow-sm: 0 6px 16px rgba(0,0,0,0.06);
  --shadow-md: 0 12px 28px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 50px rgba(0,0,0,0.15);

  /* Fonts */
  --font-heading: "Montserrat", system-ui, sans-serif;
  --font-body: "Roboto", system-ui, sans-serif;

  --transition: .25s ease;
}



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

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

html, body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--dark);
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding-inline: var(--md);
}



/* ==========================================================
   HEADER
========================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
  transition: transform .35s ease, opacity .35s ease;
  background: #ffffff !important;
  backdrop-filter: none !important;
  border-bottom: 1px solid rgba(0,0,0,0.06); /* leve detalhe premium */
  padding: 15px;
}

/* Escondido ao descer */
.site-header.hide-header {
  transform: translateY(-100%);
  opacity: 0;
}

/* BOTÃO FLOTANTE DE VOLTAR AO TOPO */
#scrollTopBtn {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 52px;
  height: 52px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 26px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease, transform .35s ease;
  z-index: 3000;
}

/* Aparece quando ativo */
#scrollTopBtn.show-btn {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--sm);
}

.logo-text {
  font-weight: 800;
  font-size: 18px;
  font-family: var(--font-heading);
}

.desktop-nav ul {
  display: flex;
  list-style: none;
  gap: var(--lg);
}

.desktop-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  font-size: 15px;
  transition: color .22s ease;
}

.desktop-nav a:hover {
  color: var(--dark);
}


/* ## Default
$hero-color: #FFF;
$hero-height: 100vh;
$hero-width: 100vw;
$hero-bg-mix: rgba(#29042f, 0.4); // hide with false

.hero {
  display: grid;
  position: relative;
  grid-template-columns: $hero-width;
  grid-template-rows: $hero-height;
  place-items: center;
  overflow: hidden;
  animation: clip-hero-anim 1.25s cubic-bezier(0.29, 0.8, 0.8, 0.98);
  will-change: clip-path;

  &__bg,
  &__cnt {
    align-self: center;
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }

  // Images
  &__bg {
    display: grid;
    position: relative;
    z-index: 0;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    place-items: center;
    animation: fade-in 0.75s linear;
    will-change: opacity;

    // Smoothing background gradient
    @if ($hero-bg-mix) {
      &::before {
        content: "";
        display: block;
        position: absolute;
        z-index: 5;
        top: -10%;
        right: -10%;
        bottom: -10%;
        left: -10%;
        background: $hero-bg-mix;
        background-blend-mode: screen;
      }
    }

    & picture {
      display: flex;
      height: $hero-height;
      width: $hero-width;
      animation: scaling-hero-anim 4s 0.25s cubic-bezier(0, 0.71, 0.4, 0.97)
        forwards;
      will-change: transform;
    }

    & img {
      display: block;
      object-fit: cover;
      object-position: 77% 50%;
      height: auto;
      width: 100%;
    }
  }

  &__cnt {
    display: grid;
    position: relative;
    place-items: center;
    z-index: 10;
    color: $hero-color;
    font-size: 2.5vw;
    text-transform: uppercase;
    opacity: 0;
    animation: fade-in 0.75s 1.5s linear forwards;
    
    & svg {
      height: 12vw;
      & path {
        fill: #FFF;
      }
    }
    
    & h1 {
      margin-bottom: 0;
    }
  }
}

// ## Animation
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes scaling-hero-anim {
  from {
    transform: scale(1.25);
  }
  to {
    transform: scale(1.1);
  }
}
@keyframes clip-hero-anim {
  from {
    clip-path: polygon(50% 50%, 50% 50%, 50% 50%, 50% 50%);
  }
  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
}



/* ==========================================================
   MOBILE NAV — FULLSCREEN MODAL
========================================================== */

.toggler-bar {
  width: 36px;
  height: 28px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 300;
}

.toggler-bar span {
  height: 3px;
  width: 100%;
  background: var(--dark);
  border-radius: 4px;
  transition: .35s;
}

.toggler-bar.active span:nth-child(1) { transform: translateY(11px) rotate(45deg); }
.toggler-bar.active span:nth-child(2) { opacity: 0; }
.toggler-bar.active span:nth-child(3) { transform: translateY(-11px) rotate(-45deg); }

.nav-modal {
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 250;
}

.nav-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.nav-modal-inner {
  display: flex;
  flex-direction: column;
  gap: 26px;
  transform: translateY(20px);
  opacity: 0;
  transition: .4s ease;
}

.nav-modal.open .nav-modal-inner {
  transform: translateY(0);
  opacity: 1;
}

.nav-item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px 22px;
  font-size: 20px;
  font-weight: 700;
  border-radius: 18px;
  text-decoration: none;
  background: rgba(255,255,255,0.45);
  backdrop-filter: blur(8px);
  width: 240px;
  margin: 0 auto;
  color: var(--dark);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, background .25s ease;
}

.nav-item:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.85);
}

.nav-item i {
  color: var(--green);
  font-size: 22px;
}



/* ==========================================================
   HERO
========================================================== */
/* ==========================================================
   HERO — MELHORADO (LAYOUT + BOTÕES + ESPAÇAMENTO)
========================================================== */

/* ==========================================================
   HERO — PREMIUM + ANIMAÇÕES
========================================================== */

.hero {
  display: grid;
  position: relative;
  width: 100%;
  height: 105vh;
  place-items: center;
  overflow: hidden;
}

/* Background */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      rgba(0,0,0,0.3),
      rgba(0,0,0,0.45)
  );
}

/* Content */
.hero__cnt {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 680px;
  padding: 0 20px;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;

  /* Animação do bloco inteiro */
  opacity: 0;
  transform: translateY(28px);
  animation: heroFadeUp 1.1s ease-out forwards;
  animation-delay: 0.2s;
}

/* Logo */
.hero-logo {
  width: 70%;
  max-width: 260px;
  margin-bottom: 8px;

  /* animation */
  opacity: 0;
  transform: scale(0.88);
  animation: logoPop 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.35s;
}

/* Title */
.hero-title {
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.15;
  font-weight: 800;
  margin: 0;
  font-family: var(--font-heading);

  opacity: 0;
  transform: translateY(20px);
  animation: fadeUpSmall 1s ease-out forwards;
  animation-delay: 0.55s;
}

/* Subtitle */
.hero-subtitle {
  font-size: 1.05rem;
  opacity: 0.92;
  max-width: 500px;

  opacity: 0;
  transform: translateY(20px);
  animation: fadeUpSmall 1s ease-out forwards;
  animation-delay: 0.75s;
}

/* Buttons */
.hero__actions {
  display: flex;
  gap: 14px;
  margin-top: 14px;

  opacity: 0;
  transform: translateY(20px);
  animation: fadeUpSmall 1s ease-out forwards;
  animation-delay: 0.95s;
}

.btn-hero,
.btn-hero-outline {
  padding: 12px 24px;
  min-width: 160px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 10px;
  transition: 0.25s ease;
}

.btn-hero {
  background: #45da00;
  color: #ffffff;
  text-decoration: none;
  width: 50%;
}
.btn-hero:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.btn-hero-outline {
  border: 2px solid #fff;
  color: #fff;
  text-decoration: none;
}
.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

/* Badges */
.hero__badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
  opacity: 0;
  animation: fadeIn 1.2s ease forwards;
  animation-delay: 1.2s;
}

.hero__badges span {
  padding: 6px 16px;
  background: rgba(255,255,255,0.18);
  border-radius: 6px;
  font-size: 0.82rem;
  backdrop-filter: blur(6px);
}

/* MOBILE */
@media (max-width: 768px) {
  .hero { height: 80vh;  margin-bottom: 10px;}

  .hero-logo { width: 68%; }

  .hero__actions { flex-direction: column; width: 50%; }

  .btn-hero, .btn-hero-outline { width: 100%; }
}

/* HERO BADGES — CENTRALIZAÇÃO NO MOBILE */
@media (max-width: 700px) {
  .hero__badges {
    width: 100%;
    justify-content: center;   /* centraliza horizontalmente */
    align-items: center;       /* garante alinhamento */
    text-align: center;
    gap: 10px;
  }

  .hero__badges span {
    margin: 0 auto;
    /* cada badge encaixando ao centro */
  }
}


/* ==========================================================
   ANIMAÇÕES
========================================================== */
@keyframes heroFadeUp {
  0% { opacity: 0; transform: translateY(28px); }
  100% { opacity: 1; transform: translateY(0); }
}


@keyframes fadeUpSmall {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ==========================================================
   TRUST BADGES
========================================================== */

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--xs);
  margin-top: var(--sm);
}

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  padding: var(--xs) var(--sm);
  border-radius: 999px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  font-size: 14px;
  font-weight: 700;
}

.hero-logo {
  width: 70%;
  max-width: 260px;
  margin-bottom: 8px;
  
  opacity: 0;
  transform: scale(0.85);
  animation: logoEntrance 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards,
             logoShine 2s ease-out 1.2s forwards;
  position: relative;
  overflow: hidden;
}

/* Efeito de brilho diagonal */
.hero-logo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      135deg,
      rgba(255,255,255,0) 0%,
      rgba(255,255,255,0.85) 50%,
      rgba(255,255,255,0) 100%
  );
  transform: translateX(-150%) skewX(-20deg);
  animation: shineSweep 1.6s ease-out 1.4s forwards;
  pointer-events: none;
  filter: blur(8px);
}

/* Entrada + escala */
@keyframes logoEntrance {
  0% {
    opacity: 0;
    transform: scale(0.85);
    filter: brightness(0.4);
  }
  60% {
    opacity: 1;
    transform: scale(1.05);
    filter: brightness(1.2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: brightness(1);
  }
}

/* Brilho ampliando */
@keyframes logoShine {
  0% {
    filter: drop-shadow(0 0 0px rgba(255,255,255,0));
  }
  60% {
    filter: drop-shadow(0 0 18px rgba(255,255,255,0.6));
  }
  100% {
    filter: drop-shadow(0 0 6px rgba(255,255,255,0.25));
  }
}

/* Sweep diagonal de luz */
@keyframes shineSweep {
  0% {
    transform: translateX(-150%) skewX(-20deg);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    transform: translateX(150%) skewX(-20deg);
    opacity: 0;
  }
}

/* ==========================================================
   HOW IT WORKS
========================================================== */

.hiw-header {
  text-align: center;
  margin-bottom: var(--lg);
  padding-top: 50px;}

.hiw-eyebrow {
  color: var(--green);
  font-weight: 800;
  margin-bottom: var(--xs);
}

.hiw-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 800;
  margin-bottom: var(--xs);
}

.timeline-wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: var(--lg);
  padding-top: var(--xl);
}

.timeline-line {
  position: absolute;
  top: 72px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--border);
}

.timeline-step {
  width: 33%;
  text-align: center;
}

.timeline-icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--green-soft);
  color: var(--green);
  font-size: 30px;
  margin: 0 auto var(--sm);
}



/* ==========================================================
   ABOUT
========================================================== */

.about-wrapper {
  margin-block: var(--xxl);
}

.about-container {
  display: grid;
  gap: var(--xl);
  grid-template-columns: 1fr 1fr;
}

.about-image img {
  /*border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);*/
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 80% 100%;
}

.about-content h2 {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 800;
  font-family: var(--font-heading);
  margin-bottom: var(--sm);
}

.about-content p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: var(--xs);
}

.about-subtitle {
  font-weight: 700;
  margin: var(--sm) 0 var(--xs);
}

.about-list {
  padding-left: var(--md);
  line-height: 1.7;
}



/* ==========================================================
   BEFORE & AFTER
========================================================== */

.before-after-section {
  margin-block: var(--xxl);
}

.ba-header {
  text-align: center;
  margin-bottom: var(--lg);
}

.ba-image-wrapper {
  position: relative;
  height: clamp(280px, 50vw, 430px);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.ba-before,
.ba-after {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-after {
  position: absolute;
  left: 0;
  top: 0;
  clip-path: inset(0 0 0 50%);
}

.ba-divider {
  position: absolute;
  left: 50%;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--green);
  transform: translateX(-50%);
}

.ba-divider {
  touch-action: none; /* evita scroll interferindo no drag */
  cursor: ew-resize;
}

/* Fade suave ao trocar automaticamente */
.ba-before,
.ba-after {
  transition: opacity 1s ease-in-out;
}




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

.contact-section {
  padding-block: var(--xxl);
}

.contact-container {
  display: grid;
  gap: var(--xl);
  grid-template-columns: 1fr 1fr;
}

.contact-form {
  padding: var(--lg);
  background: white;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: var(--sm);
}

.contact-form input,
.contact-form textarea {
  background: #fdfdfd;
  padding: var(--sm);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
}

.contact-form button {
  background: var(--green);
  color: white;
  padding: var(--sm);
  border-radius: var(--r-md);
  font-weight: 800;
}

/* ABOUT — small side image */
.about-side-img {
  width: 140px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  margin: var(--sm) 0 var(--md);
}

/* CONTACT — new call box */
.contact-call-box {
  background: white;
  border-radius: var(--r-lg);
  padding: var(--lg);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: var(--sm);
  text-align: center;
}
.contact-call-box h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  margin-bottom: var(--xs);
}
.contact-call-box p {
  color: var(--muted);
  margin-bottom: var(--sm);
}

/* Mobile fix */
@media(max-width:700px){
  .about-side-img {
    width: 100%;
    margin: var(--md) 0;
  }
}

/*==========================================================
 CAROUSEL  SECTION
 ========================================================*/
/* ===== FULL-WIDTH SINGLE IMAGE CAROUSEL ===== */

/* ===== CARROSSEL EM CARDS (2 POR VEZ) ===== */

.carousel-section {
  width: 100%;
  padding: 60px 0;
  background: #f7f7f7;
}

.carousel-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 25px;
}

/* Wrapper */
.carousel-wrapper {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  gap: 20px;
  padding: 10px;
  scrollbar-width: none;
}

.carousel-wrapper::-webkit-scrollbar {
  display: none;
}

/* Cada card */
.carousel-item {
  flex: 0 0 85%;    /* mobile: ocupa quase toda a largura */
  scroll-snap-align: center;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  position: relative;
  height: 280px;
}

/* imagem */
.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}

.carousel-item img.zoom-active {
  transform: scale(1.05);
}

/* ===== DESKTOP: 2 CARDS POR VEZ ===== */
@media (min-width: 900px) {
  .carousel-item {
    flex: 0 0 calc(50% - 15px); /* dois cards lado a lado */
    height: 340px;
  }
}



/* ==========================================================
   SPLIT VIDEO — PREMIUM SECTION
========================================================== */

.split-video-section {
  width: 100%;
  display: flex;
  justify-content: center; /* centraliza o bloco */
  margin: 80px 0;
}

.split-video-container {
  width: 90%;
  max-width: 1280px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* LADO DO VÍDEO */
.split-video-left {
  position: relative;
  background: #000;
}

.split-video-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* LADO DO TEXTO */
.split-video-right {
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.split-video-right h2 {
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 800;
  font-family: var(--font-heading);
}

.split-video-right p {
  color: var(--muted);
  line-height: 1.6;
}

.split-video-right ul {
  margin-top: 10px;
  padding-left: 18px;
  line-height: 1.7;
  color: var(--dark);
  font-weight: 500;
}

/* ============================================
   SPLIT VIDEO PREVIEW COM PLAY CENTRAL
============================================ */

.video-preview {
  position: relative;
  width: 100%;
  height: 100%;
}

.video-preview video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--r-lg) 0 0 var(--r-lg);
}

/* Botão Play Central */
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.85);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  cursor: pointer;

  display: flex;
  justify-content: center;
  align-items: center;

  transition: .25s ease;
}

.video-play-btn i {
  font-size: 34px;
  color: var(--green);
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.07);
  background: white;
}

/* ============================================
   MODAL DE VIDEO REAL
============================================ */

.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 4000;
}

.video-modal-content {
  width: 50%;
  max-width: 300px;
  background: #000;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}

.modal-video-element {
  width: 100%;
  height: auto;
  display: block;
}

/* Botão fechar */
.video-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
  z-index: 10;
  transition: .2s;
}

.video-close:hover {
  opacity: 0.7;
}

/* ============================================
   PLAY BUTTON — PULSE EFFECT
============================================ */

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  
  width: 82px;
  height: 82px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.85);
  box-shadow: 0 8px 25px rgba(0,0,0,0.35);
  cursor: pointer;

  display: flex;
  justify-content: center;
  align-items: center;

  transition: .25s ease;
  z-index: 5;

  /* efeito pulse */
  animation: pulsePlay 1.8s ease-in-out infinite;
}

.video-play-btn i {
  font-size: 34px;
  color: var(--green);
}

@keyframes pulsePlay {
  0% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 0 0 rgba(69,218,0,0.45);
  }
  70% {
    transform: translate(-50%, -50%) scale(1.12);
    box-shadow: 0 0 22px 20px rgba(69,218,0,0);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 0 0 rgba(69,218,0,0);
  }
}

.video-play-btn:hover {
  background: white;
  transform: translate(-50%, -50%) scale(1.15);
}

/* ============================================
   PREVIEW VIDEO — OVERLAY + BLUR PREMIUM
============================================ */

.video-preview {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.video-preview video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  /* blur premium */
  filter: brightness(0.75) blur(1px);
}

/* Overlay escurecendo */
.video-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,0.25),
    rgba(0,0,0,0.35)
  );
  z-index: 2;
}

/* ===============================
   THUMBNAIL PREVIEW + BLUR
=============================== */

.video-preview {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  /* blur suave estilo cinematográfico */
  filter: brightness(0.75) blur(1px);
}

/* overlay escuro */
.video-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,0.25),
    rgba(0,0,0,0.35)
  );
  z-index: 2;
}

/* ==========================================================
   RESPONSIVO
========================================================== */
@media (max-width: 900px) {
  .split-video-container {
    grid-template-columns: 1fr;
  }

  .split-video-right {
    padding: 30px;
    text-align: center;
  }

  .split-video-right ul {
    text-align: left;
    width: fit-content;
    margin: 0 auto;
  }
}

/* ==========================================================
   DIVISOR PREMIUM — LINHA VERDE
========================================================== */

.section-divider {
  width: 100%;
  height: 4px;
  background: linear-gradient(
    to right,
    transparent,
    var(--green),
    transparent
  );
  margin: 40px auto 60px;
  border-radius: 50px;
  box-shadow: 0 0 12px rgba(69,218,0,0.35);
}

/* ==========================================================
   11. GOOGLE REVIEW WIDGET (FADE CAROUSEL)
========================================================== */

.reviews-widget{
  display:flex;gap:var(--xl);padding-block:var(--xl);
}
.reviews-left,.reviews-right{
  flex:1;min-width:320px;
}

.google-review-btn{
  display:inline-flex;align-items:center;
  gap:8px;background:var(--green);
  color:white;text-decoration:none;
  padding:var(--sm) var(--md);
  border-radius:var(--r-md);
  margin-bottom:var(--lg);
  font-weight:800;
}

.map-wrap iframe{
  width:100%;height:320px;
  border-radius:var(--r-lg);
  box-shadow:var(--shadow-md);
  border:0;
}

/* fallback reviews */
.fallback-reviews{
  background:white;padding:var(--md);
  border-radius:var(--r-lg);box-shadow:var(--shadow-sm);
}

.rating-row{
  display:flex;gap:var(--sm);
  align-items:center;margin-bottom:var(--md);
}
.big-score{
  font-size:34px;font-weight:900;color:var(--green);
}
.stars{
  color:var(--green);font-weight:800;
}
.total-reviews{color:var(--muted);}

/* carousel fade */
.carousel{
  position:relative;min-height:140px;
}
.slide{
  position:absolute;top:0;left:0;
  width:100%;opacity:0;pointer-events:none;
  transform:translateY(8px);
  transition:opacity .35s ease, transform .35s ease;
}
.slide.active{
  opacity:1;pointer-events:all;
  transform:translateY(0);
}
.slide .author{
  font-weight:800;margin-bottom:var(--xs);
}
.slide .text{
  color:var(--muted);line-height:1.5;margin-bottom:var(--sm);
}
.on-google{
  color:var(--green);font-weight:700;text-decoration:none;
}

/* controls */
.carousel-controls{
  display:flex;gap:var(--xs);align-items:center;margin-top:var(--md);
}
.carousel-controls button{
  background:white;border:1px solid var(--border);
  padding:var(--xs) var(--sm);
  border-radius:var(--r-sm);
  cursor:pointer;
}


/* ==========================================================
   12. STATS
========================================================== */
.stats-strip{
  background:var(--dark);color:white;
  border-radius:var(--r-lg);padding:var(--lg);
  display:flex;justify-content:space-between; ;
  margin-top:var(--xxl);
}
.stats-num{font-size:32px;font-weight:800;}



/* ================================
   CALL MODAL — FIXED + VISIBLE
================================ */

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);   /* ← AGORA O BACKDROP É VISÍVEL */
  backdrop-filter: blur(6px);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
  z-index: 9999;
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.call-modal {
  text-align: center;
  padding: 40px;
  border-radius: 22px;
  background: white;
  max-width: 420px;
  width: 90%;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
  transform: scale(.8);
  opacity: 0;
  transition: transform .35s ease, opacity .35s ease;
}

.modal-backdrop.open .call-modal {
  opacity: 1;
  transform: scale(1);
}

.call-title {
  font-family: var(--font-heading);
  font-size: 28px;
  margin-bottom: 18px;
  font-weight: 800;
  color: var(--dark);
}

.phone-large {
  font-size: 26px;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 26px;
}

.call-btn {
  width: 100%;
  padding: 16px;
  background: var(--green);
  color: white;
  border: none;
  border-radius: 16px;
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: .25s ease;
}

.call-btn:hover {
  transform: translateY(-3px);
  opacity: .92;
}

.close-x {
  position: absolute;
  right: 18px;
  top: 18px;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: var(--muted);
  transition: .2s ease;
}

.close-x:hover {
  color: var(--dark);
}

/* BOTÃO 'TEXT US' DO MODAL — IGUAL AO HERO BUTTON */
.sms-btn {
  width: 100%;
  padding: 14px 24px;
  background: var(--green);        /* igual ao hero */
  color: #fff;                     /* igual ao hero */
  font-size: 18px;
  font-weight: 700;
  border-radius: 12px;             /* igual ao hero */
  border: none;                    /* igual ao hero */
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: .25s ease;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(69, 218, 0, 0.28); /* extra premium */
}

.sms-btn i {
  font-size: 20px;
}

.sms-btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}





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

.footer {
  background: #0a0a0a;
  color: #ddd;
  padding-block: var(--xxl);
  padding-left: 50px;
  border-top: 4px solid var(--green);
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: var(--xl);
}

.footer-logo {
  display: flex;
  gap: var(--sm);
  align-items: center;
  font-weight: 800;
  margin-bottom: var(--sm);
}

.footer-desc {
  color: var(--muted-light);
  line-height: 1.6;
  margin-bottom: var(--sm);
}

.footer-social a {
  color: white;
  margin-right: var(--sm);
  font-size: 18px;
  transition: .25s;
}

.footer-social a:hover {
  color: var(--green);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: var(--xs);
}

.footer-col a {
  text-decoration: none;
  color: #d1d5db;
  transition: .25s;
}

.footer-col a:hover {
  color: var(--green);
}

/*.newsletter-box {
  display: flex;
}

.newsletter-box input {
  flex: 1;
  border-radius: var(--r-md) 0 0 var(--r-md);
  border: none;
  padding: var(--sm);
}*/

/* Footer contact list */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin-top: var(--sm);
  line-height: 1.8;
  color: #d1d5db;
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.footer-contact-list i {
  color: var(--green);
  font-size: 16px;
}



/* ==========================================================
   RESPONSIVE BREAKPOINTS
========================================================== */

@media (max-width: 540px) {
  .desktop-nav { display: none; }
  .toggler-bar { display: flex; }

  .hero-premium {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--lg);
  }
  .hero-right { order: -1; }

  .reviews-widget {
    flex-direction: column;
  }
}

@media (max-width: 540px) {
  .about-container {
    grid-template-columns: 1fr;
  }

  .timeline-wrapper {
    flex-direction: column;
  }
  .timeline-line {
    display: none;
  }


@media (max-width: 540px) {
  .hero-premium h1 { font-size: 32px; }

  .stats-strip {
    flex-direction: row;
    text-align: center;
  }

  .how

  .nav-item {
    width: 200px;
  }
}

/* ==========================================================
   HOW IT WORKS — FULL MOBILE CENTER FIX
========================================================== */

@media (max-width: 700px) {

  /* Garantir que o container não empurre nada para a esquerda */
  #how,
  .how-it-works-timeline {
    width: 100%;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* Centraliza o bloco do título */
  .hiw-header {
    text-align: center;
    width: 100%;
    margin: 0 auto;
    padding-inline: 20px;
  }

  .hiw-header h2,
  .hiw-header p,
  .hiw-eyebrow {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  /* Corrige a timeline */
  .timeline-wrapper {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
  }

  .timeline-step {
    max-width: 360px;
    width: 100%;
    text-align: center;
    margin: 0 auto;
  }

  .timeline-icon {
    margin: 0 auto 10px;
  }

  .timeline-line {
    display: none; /* some no mobile */
  }
}

/* ==========================================================
   FOOTER — RESPONSIVE IMPROVEMENTS (VERSÃO CORRIGIDA)
========================================================== */

@media (max-width: 700px) {

  .footer {
    padding-block: 60px;
    padding-left: 0;              /* remove o alinhamento para a esquerda */
    padding-right: 0;
    text-align: center;
  }

  .footer-container {
    display: flex;                /* garante alinhamento real no centro */
    flex-direction: column;
    align-items: center;          /* centraliza horizontalmente */
    justify-content: center;
    gap: 48px;
    width: 100%;
  }

  /* LOGO */
  .footer-logo {
    justify-content: center;
    width: 100%;
    display: flex;
    align-items: center;
  }

  /* DESCRIPTION */
  .footer-desc {
    max-width: 360px;
    margin-inline: auto;
    text-align: center;
  }

  /* COLUNA INDIVIDUAL DO FOOTER */
  .footer-col {
    width: 100%;
    max-width: 400px;             /* largura elegante */
    margin: 0 auto;
  }

  .footer-col h4 {
    font-size: 20px;
    margin-bottom: 12px;
    text-align: center;
    width: 100%;
  }

  .footer-col ul {
    padding: 0;
    width: 100%;
  }

  .footer-col ul li {
    margin-bottom: 10px;
    font-size: 16px;
    text-align: center;
  }

  /* LISTA DE CONTATO */
  .footer-contact-list {
    margin-top: 16px;
    width: 100%;
    padding: 0;
  }

  .footer-contact-list li {
    justify-content: center;
    font-size: 16px;
    width: 100%;
  }

  .footer-contact-list i {
    font-size: 18px;
  }

  /* SOCIAL ICONS */
  .footer-social {
    margin-top: 12px;
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .footer-social a {
    font-size: 20px;
    margin: 0 12px;
  }

  /* COPYRIGHT */
  .footer-bottom {
    margin-top: 40px;
    text-align: center;
    font-size: 14px;
    padding-top: 20px;
    width: 100%;
  }
}

}