/* =========================================================
CLV CLEAN — BASE PREMIUM LIMPA
Arquivo: style-premium-clean2.css
========================================================= */


/* =========================================================
1. RESET
========================================================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:Arial, Helvetica, sans-serif;
  background:#071423;
  color:#fff;
  overflow-x:hidden;
}

img,
video{
  max-width:100%;
  display:block;
}

a{
  text-decoration:none;
}

ul{
  list-style:none;
}



/* =========================================================
2. TOPO PREMIUM — FRASE POR FRASE COM ÍCONES
========================================================= */

.top-message{
  width:100%;
  height:52px;
  background:#ffffff;
  color:#071423;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  position:relative;
  z-index:9999;
  border-bottom:2px solid rgba(255,193,7,.55);
  box-shadow:0 4px 18px rgba(0,0,0,.08);
}

.top-message span{
  position:absolute;
  left:0;
  right:0;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  opacity:0;
  font-size:14px;
  font-weight:900;
  color:#071423;
  white-space:nowrap;
  transform:translateX(110%);
  animation:topPhrase 9s infinite ease-in-out;
}

.top-message span img{
  width:20px;
  height:20px;
  min-width:20px;
  object-fit:contain;
  border-radius:50%;
  filter:
    drop-shadow(0 0 8px rgba(255,193,7,.55))
    drop-shadow(0 0 14px rgba(255,255,255,.65));
  animation:topIconPulse 2.8s ease-in-out infinite;
}

.top-message span:nth-child(1){
  animation-delay:0s;
}

.top-message span:nth-child(2){
  animation-delay:3s;
}

.top-message span:nth-child(3){
  animation-delay:6s;
}

@keyframes topPhrase{
  0%{
    opacity:0;
    transform:translateX(110%);
  }

  10%{
    opacity:1;
    transform:translateX(0);
  }

  32%{
    opacity:1;
    transform:translateX(0);
  }

  43%{
    opacity:0;
    transform:translateX(-110%);
  }

  100%{
    opacity:0;
    transform:translateX(-110%);
  }
}

@keyframes topIconPulse{
  0%,100%{
    transform:scale(1);
  }

  50%{
    transform:scale(1.08);
  }
}

/* =========================================================
3. HEADER
========================================================= */

.header{
  width:100%;
  position:sticky;
  top:0;
  z-index:999;
  background:#071423;
  border-bottom:1px solid rgba(255,255,255,.06);
}

.container{
  max-width:1200px;
  margin:0 auto;
  padding:18px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.logo{
  font-size:28px;
  font-weight:900;
  color:#fff;
  white-space:nowrap;
}

.header nav{
  display:flex;
  gap:25px;
}

.header nav a{
  color:#fff;
  font-size:15px;
  transition:.3s;
}

.header nav a:hover{
  color:#ffc107;
}

.btn-header{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  background:#25D366;
  color:#fff;
  padding:14px 22px;
  border-radius:12px;
  font-weight:800;
  transition:.35s;
}

.btn-header:hover{
  transform:translateY(-4px);
  box-shadow:0 0 30px rgba(37,211,102,.45);
}

.header nav a{
  position:relative;
  color:#f8fafc;
  font-size:16px;
  font-weight:800;
  padding:8px 2px;
  transition:.35s ease;
}

.header nav a::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:0;
  width:0;
  height:3px;
  background:#ffc107;
  border-radius:999px;
  transform:translateX(-50%);
  transition:.35s ease;
  box-shadow:0 0 14px rgba(255,193,7,.55);
}

.header nav a:hover{
  color:#ffc107;
  text-shadow:0 0 14px rgba(255,193,7,.35);
  transform:translateY(-2px);
}

.header nav a:hover::after{
  width:100%;
}

.header nav a:active{
  color:#25D366;
}

.header nav a:active::after{
  background:#25D366;
  box-shadow:0 0 14px rgba(37,211,102,.55);
}
/* =========================================================
4. HERO
========================================================= */

.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  padding:95px 20px 65px;
  background:
    linear-gradient(to right,rgba(2,8,18,.88),rgba(2,8,18,.58)),
    url("/imagens/hero/sofa-higienizacao-clv-clean.png")
    center/cover no-repeat;
}

.hero-left{
  max-width:720px;
}

.tag{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#ffc107;
  color:#000;
  padding:10px 18px;
  border-radius:999px;
  font-size:13px;
  font-weight:900;
  margin-bottom:24px;
}

.hero h1{
  font-size:68px;
  line-height:1.08;
  margin-bottom:25px;
  color:#fff;
}

.hero-destaque{
  color:#ffc107;
}

.hero p{
  font-size:20px;
  line-height:1.7;
  color:#d5dfeb;
  margin-bottom:35px;
}

.hero-buttons{
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:nowrap;
  margin-bottom:0;
}

.btn-whatsapp{
  background:#25D366;
  color:#fff;
  padding:18px 30px;
  border-radius:14px;
  font-weight:900;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  transition:.35s;
  box-shadow:0 0 22px rgba(37,211,102,.25);
}

.btn-outline{
  border:1px solid rgba(255,193,7,.45);
  color:#fff;
  padding:18px 30px;
  border-radius:14px;
  font-weight:800;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition:.35s;
  box-shadow:0 0 18px rgba(255,193,7,.10);
}

.btn-whatsapp:hover,
.btn-outline:hover{
  transform:translateY(-5px);
  box-shadow:0 0 35px rgba(255,193,7,.45);
}

.hero-trust{
  display:flex;
  gap:18px;
  flex-wrap:nowrap;
  margin-top:40px;
}

.trust-item{
  min-width:230px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  padding:16px 20px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  color:#fff;
  font-weight:700;
  transition:.35s;
}

.trust-item:hover{
  transform:translateY(-6px);
  box-shadow:0 0 28px rgba(255,193,7,.35);
  border-color:rgba(255,193,7,.45);
}

.trust-item i{
  color:#ffc107;
}

.hero-selo-premium{
  position:absolute;
  top:110px;
  right:40px;
  width:155px;
  z-index:20;
  filter:
    drop-shadow(0 0 12px rgba(255,193,7,.65))
    drop-shadow(0 0 25px rgba(255,193,7,.45))
    drop-shadow(0 15px 35px rgba(0,0,0,.45));
  animation:seloPulse 3.5s ease-in-out infinite;
}

@keyframes seloPulse{
  0%{
    transform:scale(1) rotate(0deg);
  }

  50%{
    transform:scale(1.04) rotate(.5deg);
  }

  100%{
    transform:scale(1) rotate(0deg);
  }
}

/* =========================================================
PROMOÇÃO DO MÊS — CARROSSEL PREMIUM
========================================================= */

.promo-carousel{
  position:relative;
  width:100%;
  background:#ffffff;
  padding:34px 20px 58px;
  overflow:hidden;
  border-top:1px solid rgba(7,20,35,.06);
  border-bottom:1px solid rgba(7,20,35,.06);
}

.promo-carousel::before{
  content:"PROMOÇÃO ESPECIAL";
  display:flex;
  align-items:center;
  justify-content:center;
  width:max-content;
  margin:0 auto 22px;
  padding:10px 22px;
  border-radius:999px;
  background:#ffc107;
  color:#071423;
  font-size:13px;
  font-weight:900;
  box-shadow:0 0 28px rgba(255,193,7,.42);
}

.promo-carousel-inner{
  position:relative;
  width:100%;
  max-width:1380px;
  margin:0 auto;
  overflow:hidden;
  border-radius:34px;
  background:#071423;
  border:1px solid rgba(255,193,7,.20);
  box-shadow:
    0 24px 70px rgba(0,0,0,.20),
    0 0 38px rgba(255,193,7,.10);
}

.promo-track{
  position:relative;
  width:100%;
  min-height:460px;
}

.promo-slide{
  position:absolute;
  inset:0;
  width:100%;
  opacity:0;
  visibility:hidden;
  transform:translateX(40px);
  transition:.55s ease;
}

.promo-slide.active{
  position:relative;
  opacity:1;
  visibility:visible;
  transform:translateX(0);
}

.promo-banner-img{
  width:100%;
  height:auto;
  display:block;
  border-radius:34px;
}

.promo-wait{
  background:
    radial-gradient(circle at top left,rgba(255,193,7,.18),transparent 32%),
    linear-gradient(135deg,#071423,#0b1b2d);
  padding:70px 20px;
}

.promo-wait-content{
  max-width:1120px;
  margin:0 auto;
  text-align:center;
  color:#fff;
}

.promo-wait-tag{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#ffc107;
  color:#071423;
  padding:10px 20px;
  border-radius:999px;
  font-size:13px;
  font-weight:900;
  margin-bottom:22px;
  box-shadow:0 0 26px rgba(255,193,7,.35);
}

.promo-wait h2{
  font-size:54px;
  line-height:1.05;
  margin-bottom:18px;
  text-shadow:0 0 28px rgba(255,193,7,.18);
}

.promo-wait p{
  color:#c8d5e5;
  font-size:20px;
  line-height:1.45;
  margin-bottom:38px;
}

.promo-icons-row{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
  max-width:850px;
  margin:0 auto 36px;
}

.promo-icon-card{
  background:#fff;
  color:#071423;
  border-radius:28px;
  padding:26px 18px;
  box-shadow:
    0 16px 38px rgba(0,0,0,.22),
    0 0 28px rgba(255,193,7,.14);
  transition:.35s ease;
}

.promo-icon-card:hover{
  transform:translateY(-6px);
  box-shadow:
    0 0 36px rgba(255,193,7,.35),
    0 20px 45px rgba(0,0,0,.28);
}

.promo-icon-card img{
  width:120px;
  height:120px;
  object-fit:contain;
  margin:0 auto 14px;
}

.promo-icon-card span{
  display:block;
  font-size:18px;
  font-weight:900;
}

.promo-wait-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  background:#25D366;
  color:#fff;
  padding:18px 30px;
  border-radius:18px;
  font-size:18px;
  font-weight:900;
  box-shadow:0 0 32px rgba(37,211,102,.35);
  transition:.35s ease;
}

.promo-wait-btn:hover{
  transform:translateY(-5px) scale(1.03);
  box-shadow:0 0 45px rgba(37,211,102,.55);
}

.promo-arrow{
  position:absolute;
  top:50%;
  z-index:10;
  transform:translateY(-50%);
  width:54px;
  height:54px;
  border:none;
  border-radius:50%;
  background:rgba(255,255,255,.96);
  color:#071423;
  font-size:38px;
  font-weight:900;
  cursor:pointer;
  box-shadow:0 14px 34px rgba(0,0,0,.22);
  transition:.3s ease;
}

.promo-arrow:hover{
  background:#ffc107;
  transform:translateY(-50%) scale(1.08);
}

.promo-prev{
  left:18px;
}

.promo-next{
  right:18px;
}

.promo-dots{
  position:absolute;
  left:50%;
  bottom:18px;
  z-index:12;
  transform:translateX(-50%);
  display:flex;
  align-items:center;
  gap:9px;
}

.promo-dots button{
  width:11px;
  height:11px;
  border:none;
  border-radius:50%;
  background:rgba(255,255,255,.58);
  cursor:pointer;
  transition:.3s ease;
}

.promo-dots button.active{
  width:28px;
  border-radius:999px;
  background:#ffc107;
}

/* =========================================================
5. HERO FOOTER — BARRA PREMIUM BRANCA COMPACTA
========================================================= */

.hero-footer{
  padding:55px 20px;
  background:#ffffff;
}

.hero-footer-title{
  text-align:center;
  margin-bottom:36px;
}

.mini-tag{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#ffc107;
  color:#000;
  padding:9px 16px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
  margin-bottom:16px;
}

.hero-footer-title h2{
  font-size:40px;
  margin-bottom:12px;
  color:#071423;
}

.hero-footer-title p{
  color:#475569;
  font-size:17px;
}

.hero-footer-inner{
  max-width:1180px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.footer-card{
  background:#fff;
  border-radius:22px;
  padding:30px 22px;
  text-align:center;
  border:1px solid rgba(7,20,35,.09);
  box-shadow:0 12px 32px rgba(0,0,0,.08);
  transition:.35s;
}

.footer-card:hover{
  transform:translateY(-6px);
  box-shadow:0 0 24px rgba(255,193,7,.22);
}

.card-icon img{
  width:68px;
  margin:0 auto 16px auto;
}

.footer-card strong{
  display:block;
  margin-bottom:10px;
  font-size:21px;
  color:#071423;
}

.footer-card p{
  color:#475569;
  line-height:1.55;
  font-size:15px;
}

/* =========================================================
6. CARROSSEL PREMIUM — COMPACTO FINAL
========================================================= */

.servicos-carousel-v2{
  background:#ffffff;

  padding:6px 0 10px;

  border-top:1px solid rgba(7,20,35,.06);
  border-bottom:1px solid rgba(7,20,35,.06);

  box-shadow:0 4px 16px rgba(0,0,0,.04);

  overflow:hidden;
}

.servicos-carousel-v2 h2{
  text-align:center;

  font-size:22px;
  font-weight:900;

  color:#071423;

  margin-bottom:0px;

  line-height:1.2;
}

.servicos-carousel-v2 h2 span{
  display:block;

  margin-top:2px;

  font-size:13px;

  font-weight:700;

  color:#64748b;
}

.carousel-wrapper-v2{
  width:100%;
  max-width:1320px;

  margin:0 auto;

  padding:0 8px;

  display:flex;
  align-items:center;

  gap:8px;
}

.servicos-scroll-v2{
  flex:1 1 auto;
  min-width:0;

  display:flex;
  align-items:center;

  gap:8px;

  overflow-x:auto;
  overflow-y:hidden;

  scroll-behavior:smooth;

  scrollbar-width:none;

  padding:4px 2px 6px;
}

.servicos-scroll-v2::-webkit-scrollbar{
  display:none;
}

.servico-icone-v2{
  flex:0 0 auto;

  width:145px;
  height:145px;

  background:#fff;

  border-radius:22px;

  display:flex;
  align-items:center;
  justify-content:center;

  overflow:hidden;

  border:1px solid rgba(7,20,35,.08);

  box-shadow:
    0 8px 22px rgba(0,0,0,.07),
    0 0 18px rgba(255,193,7,.08);

  transition:.35s ease;
}

.servico-icone-v2 img{
  width:128px !important;
  height:128px !important;

  max-width:128px !important;
  max-height:128px !important;

  object-fit:contain !important;

  display:block;

  transition:.35s ease;
}

.servico-icone-v2:hover{
  transform:translateY(-4px) scale(1.03);

  border-color:rgba(255,193,7,.42);

  box-shadow:
    0 0 22px rgba(255,193,7,.14),
    0 10px 22px rgba(0,0,0,.10);
}

.servico-icone-v2:hover img{
  transform:scale(1.05);
}

.carousel-btn-v2{
  flex:0 0 40px;

  width:40px;
  height:40px;

  border:none;
  border-radius:50%;

  background:#ffc107;
  color:#071423;

  font-size:28px;
  font-weight:900;

  cursor:pointer;

  display:flex;
  align-items:center;
  justify-content:center;

  box-shadow:0 6px 16px rgba(255,193,7,.24);

  transition:.35s ease;
}

.carousel-btn-v2:hover{
  transform:scale(1.08);

  box-shadow:0 0 22px rgba(255,193,7,.40);
}
/* =========================================================
7. ANTES E DEPOIS PREMIUM
========================================================= */

.antes-depois{
  padding:60px 20px;
  background:#071423;
  position:relative;
  overflow:hidden;
}

.antes-container{
  max-width:1350px;
  margin:0 auto;
  text-align:center;
}

.section-title-premium{
  text-align:center;
  margin-bottom:35px;
}

.section-title-premium .mini-tag{
  margin-left:auto;
  margin-right:auto;
}

.section-title-premium h2,
.section-title-premium p{
  text-align:center;
}

.section-tag{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#ffc107;
  color:#000;
  padding:10px 18px;
  border-radius:999px;
  font-size:13px;
  font-weight:900;
  margin-bottom:24px;
  box-shadow:0 0 18px rgba(255,193,7,.25);
}

.antes-container h2{
  font-size:52px;
  line-height:1.1;
  color:#fff;
  margin-bottom:18px;
  text-shadow:0 0 25px rgba(255,193,7,.12);
}

.antes-container p{
  font-size:19px;
  color:#c8d5e5;
  margin-bottom:55px;
}


/* =========================================================
8. VÍDEOS
========================================================= */

.videos-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:28px;
  margin-bottom:28px;
}

.video-box{
  position:relative;
  aspect-ratio:4 / 5;
  border-radius:32px;
  padding:4px;
  overflow:hidden;
  background:#071423;
  border:none;
  box-shadow:0 20px 50px rgba(0,0,0,.35);
  transition:.35s ease;
}

.video-box::before{
  content:"";
  position:absolute;
  inset:-3px;
  z-index:0;
  background:linear-gradient(
    120deg,
    #ffc107,
    #00d4ff,
    #25d366,
    #ffc107
  );
  background-size:300% 300%;
  animation:borderGradientMove 4s linear infinite;
  filter:blur(.3px);
}

.video-box video,
.video-premium{
  position:relative;
  z-index:2;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
  border-radius:28px;
  background:#000;
}

.video-box:hover::before{
  filter:blur(1.2px);
}

.video-box:hover{
  transform:translateY(-8px) scale(1.01);
  box-shadow:
    0 0 42px rgba(255,193,7,.35),
    0 0 58px rgba(0,212,255,.18),
    0 25px 65px rgba(0,0,0,.50);
}

.tag-etapa{
  position:absolute;
  top:18px;
  left:18px;
  z-index:5;
  background:#071423;
  color:#fff;
  padding:9px 16px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
  letter-spacing:.5px;
  border:1px solid rgba(255,255,255,.12);
  backdrop-filter:blur(8px);
}

.tag-etapa.depois{
  background:#ffc107;
  color:#000;
}

.tag-info{
  position:absolute;
  top:18px;
  right:18px;
  z-index:5;
  background:rgba(7,20,35,.78);
  color:#fff;
  padding:8px 14px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  backdrop-filter:blur(8px);
}

.video-label{
  position:absolute;
  top:18px;
  left:50%;
  z-index:8;
  transform:translateX(-50%);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:rgba(7,20,35,.92);
  color:#fff;
  border:2px solid rgba(255,193,7,.35);
  border-radius:999px;
  padding:10px 18px;
  font-size:12px;
  font-weight:900;
  letter-spacing:.4px;
  white-space:nowrap;
  backdrop-filter:blur(8px);
  box-shadow:
    0 0 18px rgba(255,193,7,.35),
    inset 0 0 12px rgba(255,255,255,.18);
  animation:tagPremiumGlow 2.8s ease-in-out infinite;
}

.video-box.destaque .video-label{
  background:linear-gradient(135deg,#25D366,#128C7E);
  color:#fff;
  border-color:rgba(37,211,102,.55);
  box-shadow:
    0 0 24px rgba(37,211,102,.42),
    inset 0 0 12px rgba(255,255,255,.16);
}

.emblema-higienizacao-premium{
  position:absolute;
  right:18px;
  bottom:88px;
  width:105px;
  z-index:6;
  filter:
    drop-shadow(0 8px 18px rgba(0,0,0,.45))
    drop-shadow(0 0 20px rgba(255,193,7,.18));
  transition:.35s;
}

.video-box:hover .emblema-higienizacao-premium{
  transform:scale(1.05);
}

.video-cta{
  width:fit-content;
  margin:0 auto 70px auto;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  background:#25d366;
  color:#fff;
  padding:18px 34px;
  border-radius:18px;
  text-decoration:none;
  font-size:18px;
  font-weight:900;
  box-shadow:0 0 25px rgba(37,211,102,.28);
  transition:.35s;
}

.video-cta:hover{
  transform:translateY(-4px) scale(1.03);
  box-shadow:0 0 35px rgba(37,211,102,.45);
}

.impacto-texto{
  text-align:center;
  color:#fff;
  font-size:40px;
  font-weight:900;
  line-height:1.2;
  margin-bottom:35px;
}

.impacto-texto span{
  color:#ffc107;
  text-shadow:0 0 18px rgba(255,193,7,.25);
}

.impacto-wrapper{
  width:100%;
  max-width:680px;
  margin:0 auto;
  padding:20px;
  border-radius:38px;
  background:
    linear-gradient(
      145deg,
      rgba(255,193,7,.06),
      rgba(255,255,255,.02)
    );
  border:1px solid rgba(255,193,7,.14);
  box-shadow:
    0 0 45px rgba(255,193,7,.08),
    0 20px 55px rgba(0,0,0,.30);
}

.video-impacto{
  position:relative;
  width:100%;
  max-width:430px;
  aspect-ratio:9 / 16;
  height:auto;
  object-fit:cover;
  object-position:center;
  display:block;
  margin:22px auto 0 auto;
  border-radius:34px;
  background:#000;
  border:3px solid transparent;
  background-image:
    linear-gradient(#000,#000),
    linear-gradient(
      120deg,
      #ffc107,
      #00d4ff,
      #25d366,
      #ffc107
    );
  background-origin:border-box;
  background-clip:padding-box,border-box;
  background-size:100% 100%,300% 300%;
  animation:
    borderGradientImpacto 5s linear infinite,
    videoPremiumPulse 3s ease-in-out infinite;
  box-shadow:
    0 20px 55px rgba(0,0,0,.45),
    0 0 45px rgba(255,193,7,.22),
    0 0 65px rgba(0,212,255,.10);
  transition:.35s ease;
}

.video-impacto:hover{
  transform:translateY(-8px) scale(1.02);
  box-shadow:
    0 30px 70px rgba(0,0,0,.55),
    0 0 65px rgba(255,193,7,.35),
    0 0 85px rgba(0,212,255,.18);
}

/* =========================================================
9. DEPOIMENTOS
========================================================= */

.depoimentos-final{
  position:relative;
  padding:80px 20px;
  background:
    radial-gradient(circle at top,rgba(255,193,7,.08),transparent 32%),
    #071423;
  text-align:center;
}

.depoimentos-final h2{
  font-size:50px;
  color:#fff;
  margin-bottom:14px;
  text-align:center;
  text-shadow:
    0 0 18px rgba(255,255,255,.12),
    0 0 26px rgba(255,193,7,.18);
}

.depoimentos-sub{
  color:#c8d5e5;
  font-size:18px;
  margin-bottom:55px;
}

.depoimentos-grid{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
}

.depoimento-card{
  position:relative;
  overflow:hidden;
  border-radius:28px;
  padding:36px 28px;
  min-height:280px;
  text-align:left;
  color:#fff;
  border:2px solid rgba(255,255,255,.14);
  outline:1px solid rgba(255,193,7,.14);
  outline-offset:-8px;
  box-shadow:0 20px 50px rgba(0,0,0,.32);
  transition:.4s ease;
}

.depoimento-card:hover{
  transform:translateY(-10px) scale(1.025);
  border-color:rgba(255,193,7,.45);
  box-shadow:
    0 0 42px rgba(255,193,7,.28),
    0 25px 65px rgba(0,0,0,.45);
}

.depoimento-card.instagram{
  background:linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045);
}

.depoimento-card.whatsapp{
  background:linear-gradient(135deg,#25D366,#128C7E);
}

.depoimento-card::after{
  content:"";
  position:absolute;
  width:190px;
  height:190px;
  border-radius:50%;
  background:rgba(255,255,255,.10);
  top:-90px;
  right:-80px;
  transition:.4s ease;
}

.depoimento-card:hover::after{
  transform:scale(1.25);
}

.estrelas{
  color:#ffc107;
  font-size:24px;
  letter-spacing:2px;
  margin-bottom:18px;
  text-shadow:
    0 0 12px rgba(255,193,7,.60),
    0 0 24px rgba(255,193,7,.30);
}

.depoimento-card p{
  font-size:18px;
  font-weight:700;
  line-height:1.7;
  margin-bottom:24px;
}

.depoimento-card strong{
  display:block;
  color:#fff;
  font-size:15px;
  margin-bottom:18px;
  text-shadow:0 0 12px rgba(255,255,255,.18);
}

.depoimento-card span{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.16);
  font-weight:900;
  box-shadow:inset 0 0 12px rgba(255,255,255,.08);
}

.depoimento-card span i{
  font-size:20px;
  color:#fff;
}


/* =========================================================
10. SOCIAL FINAL
========================================================= */

.social-final{
  padding:60px 20px;
  background:#ffffff;
}

.social-final-inner{
  max-width:1150px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
}

.social-text h2{
  font-size:42px;
  color:#071423;
  margin-bottom:10px;
}

.social-text p{
  color:#475569;
  font-size:18px;
}

.social-buttons{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.btn-social{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:18px 28px;
  border-radius:18px;
  color:#fff;
  font-weight:900;
  transition:.35s ease;
  box-shadow:0 12px 30px rgba(0,0,0,.18);
}

.btn-social:hover{
  transform:translateY(-6px) scale(1.03);
}

.btn-social.instagram{
  background:linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045);
}

.btn-social.whatsapp{
  background:#25D366;
}

.btn-social.instagram:hover{
  box-shadow:0 0 38px rgba(253,29,29,.38);
}

.btn-social.whatsapp:hover{
  box-shadow:0 0 38px rgba(37,211,102,.45);
}

.btn-social img{
  width:26px;
  height:26px;
  object-fit:cover;
  border-radius:50%;
}

.btn-social i{
  font-size:24px;
}


/* =========================================================
11. FOOTER
========================================================= */

.footer-premium{
  position:relative;
  overflow:hidden;
  padding:60px 20px 35px;
  background:linear-gradient(135deg,#ff7b00,#ff9f1c);
  color:#fff;
}

.footer-premium::before,
.footer-premium::after{
  content:"";
  position:absolute;
  width:260px;
  height:260px;
  border-radius:50%;
  background:rgba(255,255,255,.10);
  animation:footerBalls 7s ease-in-out infinite;
}

.footer-premium::before{
  top:-90px;
  left:-80px;
}

.footer-premium::after{
  bottom:-120px;
  right:-90px;
  animation-delay:3s;
}

.footer-container{
  position:relative;
  z-index:2;
  max-width:950px;
  margin:0 auto;
  text-align:center;
}

.footer-container h3{
  font-size:42px;
  margin-bottom:18px;
}

.footer-container p{
  font-size:18px;
  line-height:1.7;
  margin-bottom:16px;
}

.footer-horario{
  font-weight:800;
}

.footer-contatos{
  display:flex;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
  margin:35px 0;
}

.footer-contatos a{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:rgba(255,255,255,.16);
  color:#fff;
  padding:16px 22px;
  border-radius:16px;
  font-weight:900;
  transition:.35s ease;
}

.footer-contatos a:hover{
  transform:translateY(-5px);
  box-shadow:0 0 28px rgba(255,255,255,.28);
}

.footer-copy{
  font-size:14px;
  opacity:.9;
}

/* =========================================================
EFEITOS PREMIUM — PROMOÇÃO EM DESTAQUE
========================================================= */

/* Brilho pulsando em volta do bloco */
.promo-carousel-inner{
  position:relative;
  animation:promoBoxGlow 2.8s ease-in-out infinite;
}

/* Linha de brilho passando por cima da promoção */
.promo-carousel-inner::before{
  content:"";
  position:absolute;
  top:0;
  left:-120%;
  width:55%;
  height:100%;
  z-index:4;
  pointer-events:none;
  background:linear-gradient(
    110deg,
    transparent 0%,
    rgba(255,255,255,.08) 35%,
    rgba(255,255,255,.38) 50%,
    rgba(255,193,7,.24) 62%,
    transparent 100%
  );
  transform:skewX(-18deg);
  animation:promoLightSweep 4.5s ease-in-out infinite;
}

/* Destaque piscando na etiqueta PROMOÇÃO ESPECIAL */
.promo-carousel::before{
  animation:promoTagBlink 1.6s ease-in-out infinite;
}

/* Bolinha ativa com brilho */
.promo-dots button.active{
  box-shadow:
    0 0 10px rgba(255,193,7,.75),
    0 0 22px rgba(255,193,7,.45);
  animation:promoDotPulse 1.3s ease-in-out infinite;
}

/* Setas com leve chamada de atenção */
.promo-arrow{
  animation:promoArrowPulse 2s ease-in-out infinite;
}

/* Animações */
@keyframes promoBoxGlow{
  0%,100%{
    box-shadow:
      0 24px 70px rgba(0,0,0,.20),
      0 0 18px rgba(255,193,7,.18);
  }

  50%{
    box-shadow:
      0 28px 80px rgba(0,0,0,.24),
      0 0 42px rgba(255,193,7,.42);
  }
}

@keyframes promoLightSweep{
  0%{
    left:-120%;
    opacity:0;
  }

  18%{
    opacity:1;
  }

  48%{
    left:130%;
    opacity:1;
  }

  70%,100%{
    left:130%;
    opacity:0;
  }
}

@keyframes promoTagBlink{
  0%,100%{
    transform:scale(1);
    box-shadow:
      0 0 18px rgba(255,193,7,.38),
      0 0 0 rgba(255,193,7,0);
  }

  50%{
    transform:scale(1.04);
    box-shadow:
      0 0 28px rgba(255,193,7,.75),
      0 0 45px rgba(255,193,7,.38);
  }
}

@keyframes promoDotPulse{
  0%,100%{
    transform:scale(1);
  }

  50%{
    transform:scale(1.18);
  }
}

@keyframes promoArrowPulse{
  0%,100%{
    box-shadow:0 14px 34px rgba(0,0,0,.22);
  }

  50%{
    box-shadow:
      0 14px 34px rgba(0,0,0,.22),
      0 0 24px rgba(255,193,7,.55);
  }
}

/* =========================================================
12. ANIMAÇÕES
========================================================= */

.mini-tag,
.tag,
.section-title-premium .mini-tag,
.video-label{
  box-shadow:
    0 0 18px rgba(255,193,7,.35),
    inset 0 0 12px rgba(255,255,255,.18);
  animation:tagPremiumGlow 2.8s ease-in-out infinite;
  transition:.35s ease;
}

.mini-tag:hover,
.tag:hover,
.section-title-premium .mini-tag:hover,
.video-label:hover{
  transform:translateY(-3px) scale(1.04);
  box-shadow:
    0 0 30px rgba(255,193,7,.65),
    inset 0 0 14px rgba(255,255,255,.22);
}

@keyframes tagGlow{
  0%,100%{
    box-shadow:0 0 12px rgba(255,193,7,.20);
  }

  50%{
    box-shadow:0 0 28px rgba(255,193,7,.48);
  }
}

@keyframes tagPremiumGlow{
  0%,100%{
    box-shadow:0 0 14px rgba(255,193,7,.28);
  }

  50%{
    box-shadow:0 0 28px rgba(255,193,7,.58);
  }
}

@keyframes borderGradientMove{
  0%{
    background-position:0% 50%;
  }

  50%{
    background-position:100% 50%;
  }

  100%{
    background-position:0% 50%;
  }
}

@keyframes borderGradientImpacto{
  0%{
    background-position:
      0 0,
      0% 50%;
  }

  50%{
    background-position:
      0 0,
      100% 50%;
  }

  100%{
    background-position:
      0 0,
      0% 50%;
  }
}

@keyframes videoPremiumPulse{
  0%,100%{
    box-shadow:
      0 20px 55px rgba(0,0,0,.45),
      0 0 32px rgba(255,193,7,.20);
  }

  50%{
    box-shadow:
      0 20px 55px rgba(0,0,0,.45),
      0 0 58px rgba(255,193,7,.36);
  }
}

@keyframes footerBalls{
  0%,100%{
    transform:translateY(0);
  }

  50%{
    transform:translateY(-18px);
  }
}


/* =========================================================
13. RESPONSIVO TABLET
========================================================= */

@media(max-width:980px){

  .hero-footer-inner{
    grid-template-columns:repeat(2,1fr);
  }

  .videos-grid{
    grid-template-columns:1fr;
  }

  .antes-container h2{
    font-size:42px;
  }

  .depoimentos-grid{
    grid-template-columns:1fr;
  }

  .social-final-inner{
    flex-direction:column;
    text-align:center;
  }

  .social-buttons{
    justify-content:center;
  }

}


/* =========================================================
14. RESPONSIVO MOBILE
========================================================= */

@media(max-width:768px){

  html,
  body{
    width:100%;
    max-width:100%;
    overflow-x:hidden;
  }

  .top-message{
    height:46px;
  }

  .top-message span{
    font-size:12px;
    padding:0 14px;
  }

   .header{
    position:sticky;
    top:0;
    overflow:hidden;
  }

  .container{
    width:100%;
    max-width:100%;
    padding:14px 14px;
    display:flex;
    align-items:center;
    justify-content:flex-start;
    gap:16px;
    overflow:hidden;
  }

  .logo{
    flex:0 0 auto;
    font-size:28px;
    line-height:1;
    white-space:nowrap;
  }

  .header nav{
  flex:1 1 auto;
  min-width:0;
  display:flex;
  align-items:center;
  gap:14px;
  overflow-x:auto;
  overflow-y:hidden;
  white-space:nowrap;
  scrollbar-width:none;
  padding:4px 0;
  scroll-behavior:smooth;
  scroll-snap-type:x proximity;
}

  .header nav::-webkit-scrollbar{
    display:none;
  }

  .header nav a{
  flex:0 0 auto;
  font-size:14px;
  font-weight:900;
  padding:8px 0;
  scroll-snap-align:start;
}
  .btn-header{
    display:none;
  }

  .hero{
    min-height:auto;
    padding:70px 20px 45px;
    background-position:center;
    overflow:hidden;
  }

  .hero-left{
    max-width:100%;
  }

  .tag{
    font-size:12px;
    padding:9px 15px;
  }

  .hero h1{
    font-size:46px;
    line-height:1.05;
    margin-bottom:20px;
  }

  .hero p{
    font-size:18px;
    line-height:1.45;
    margin-bottom:28px;
  }

  .hero-buttons{
  width:100%;
  display:flex;
  flex-direction:column;
  gap:14px;
  overflow:visible;
  padding:0;
}

.btn-whatsapp,
.btn-outline{
  width:100%;
  min-width:0;
  padding:16px 18px;
  font-size:15px;
  justify-content:center;
  white-space:normal;
  text-align:center;
}

  .hero-trust{
  width:100%;
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
  overflow:visible;
}

.trust-item{
  width:100%;
  min-width:0;
  padding:15px 18px;
  justify-content:center;
  text-align:center;
}
    .hero-selo-premium{
    width:105px;
    top:95px;
    right:15px;
  }

  .hero-footer{
    padding:45px 16px;
  }

  .hero-footer-title h2{
    font-size:34px;
  }

  .hero-footer-title p{
    font-size:16px;
  }

  .hero-footer-inner{
    grid-template-columns:1fr;
  }

  .footer-card{
    padding:26px 20px;
  }

  .servicos-carousel-v2{
    padding:10px 0 14px;
  }

  .servicos-carousel-v2 h2{
    font-size:28px;
    line-height:1.15;
    padding:0 12px;
  }

  .servicos-carousel-v2 h2 span{
    font-size:16px;
  }

  .carousel-wrapper-v2{
    max-width:100%;
    padding:0 6px;
    gap:6px;
  }

  .servicos-scroll-v2{
    overflow-x:auto;
    scroll-snap-type:x mandatory;
  }

  .servico-icone-v2{
    width:135px;
    height:135px;
    flex:0 0 135px;
    scroll-snap-align:center;
  }

  .servico-icone-v2 img{
    width:118px !important;
    height:118px !important;
  }

  .carousel-btn-v2{
    flex:0 0 42px;
    width:42px;
    height:42px;
  }

  .antes-depois{
    padding:60px 16px;
  }

  .antes-container h2{
    font-size:36px;
    line-height:1.12;
  }

  .antes-container p{
    font-size:16px;
    line-height:1.45;
    margin-bottom:38px;
  }

 .videos-grid{
  grid-template-columns:1fr;
  justify-items:center;
  gap:22px;
}

.video-box{
  position:relative;
  width:82%;
  max-width:330px;
  aspect-ratio:4 / 5;
  margin:0 auto 24px auto;
  border-radius:26px;
  overflow:hidden;
}

.video-box video,
.video-premium{
  position:absolute;
  inset:4px;
  width:calc(100% - 8px);
  height:calc(100% - 8px);
  max-height:none;
  object-fit:cover;
  object-position:center;
  border-radius:22px;
}
  .video-label{
    font-size:11px;
    padding:8px 13px;
  }

  .impacto-texto{
    font-size:28px;
  }

  .impacto-wrapper{
    width:100%;
    max-width:100%;
    padding:16px;
  }

  .video-impacto{
    width:100%;
    max-width:92vw;
    aspect-ratio:9 / 16;
    height:auto;
    max-height:none;
    object-fit:cover;
    object-position:center;
    border-radius:28px;
}

  .emblema-higienizacao-premium{
    width:76px;
    bottom:72px;
  }

  .depoimentos-final{
    padding:60px 16px;
  }

  .depoimentos-final h2{
    font-size:34px;
  }

  .depoimentos-grid{
    grid-template-columns:1fr;
  }

  .social-final{
    padding:50px 16px;
  }

  .social-final-inner{
    flex-direction:column;
    text-align:center;
  }

  .social-text h2{
    font-size:32px;
  }

  .social-buttons{
    width:100%;
    flex-direction:column;
  }

  .btn-social{
    width:100%;
  }

  .footer-premium{
    padding:50px 16px 30px;
  }

  .footer-container h3{
    font-size:34px;
  }

  .footer-container p{
    font-size:17px;
  }

  .footer-contatos{
    flex-direction:column;
  }

  .footer-contatos a{
    width:100%;
    justify-content:center;
  }

  .promo-carousel{
    padding:24px 12px 44px;
    background:#fff;
  }

  .promo-carousel::before{
    margin-bottom:16px;
    font-size:12px;
    padding:9px 18px;
  }

  .promo-carousel-inner{
    border-radius:24px;
  }

  .promo-carousel-inner::before{
    width:70%;
    animation-duration:5.5s;
  }

  .promo-track{
    min-height:0;
  }

  .promo-banner-img{
    border-radius:24px;
  }

  .promo-arrow{
    width:42px;
    height:42px;
    font-size:30px;
    animation:none;
  }

  .promo-prev{
    left:8px;
  }

  .promo-next{
    right:8px;
  }

  .promo-wait{
    padding:55px 16px 70px;
  }

  .promo-wait h2{
    font-size:36px;
  }

  .promo-wait p{
    font-size:17px;
  }

  .promo-icons-row{
    grid-template-columns:1fr;
    max-width:310px;
    gap:16px;
  }

  .promo-icon-card{
    padding:22px 16px;
  }

  .promo-icon-card img{
    width:95px;
    height:95px;
  }

  .promo-wait-btn{
    width:100%;
    max-width:330px;
    font-size:16px;
    padding:16px 20px;
  }

  .promo-dots{
    bottom:12px;
  }

}

/* =========================================================
16. EXPERIÊNCIA PREMIUM — MOTION UI LIMPA
========================================================= */

:root{
  --clv-gold:#ffc107;
  --clv-green:#25D366;
  --clv-dark:#071423;
  --clv-cyan:#00d4ff;
}

/* Estado inicial seguro: só ativa quando o JS marca o body */
.motion-ready .footer-card,
.motion-ready .servico-icone-v2,
.motion-ready .depoimento-card,
.motion-ready .btn-social,
.motion-ready .promo-icon-card,
.motion-ready .trust-item{
  opacity:0;
  transform:translateY(34px) scale(.96);
  transition:
    opacity .75s ease,
    transform .75s cubic-bezier(.2,.8,.2,1),
    box-shadow .35s ease,
    border-color .35s ease,
    filter .35s ease;
  will-change:opacity, transform;
}

/* Estado visível */
.motion-ready .footer-card.is-visible,
.motion-ready .servico-icone-v2.is-visible,
.motion-ready .depoimento-card.is-visible,
.motion-ready .btn-social.is-visible,
.motion-ready .promo-icon-card.is-visible,
.motion-ready .trust-item.is-visible{
  opacity:1;
  transform:translateY(0) scale(1);
}

/* Base do brilho premium */
.footer-card,
.depoimento-card,
.servico-icone-v2,
.promo-icon-card{
  position:relative;
  isolation:isolate;
}

/* Faixa de brilho reaproveitável */
.footer-card::before,
.depoimento-card::before,
.servico-icone-v2::before,
.promo-icon-card::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  border-radius:inherit;
  background:linear-gradient(
    115deg,
    transparent 0%,
    rgba(255,255,255,.04) 35%,
    rgba(255,193,7,.20) 50%,
    rgba(255,255,255,.07) 65%,
    transparent 100%
  );
  transform:translateX(-130%) skewX(-18deg);
  opacity:0;
  pointer-events:none;
}

/* Garante conteúdo acima do brilho */
.footer-card > *,
.depoimento-card > *,
.servico-icone-v2 > *,
.promo-icon-card > *{
  position:relative;
  z-index:2;
}

/* Um único hover genérico para o brilho */
.footer-card:hover::before,
.depoimento-card:hover::before,
.servico-icone-v2:hover::before,
.promo-icon-card:hover::before{
  animation:clvLightSweep 1.1s ease forwards;
}

/* Microinteração dos ícones */
.footer-card .card-icon img,
.servico-icone-v2 img,
.promo-icon-card img{
  transition:
    transform .45s cubic-bezier(.2,.8,.2,1),
    filter .35s ease;
}

.footer-card:hover .card-icon img,
.servico-icone-v2:hover img,
.promo-icon-card:hover img{
  transform:scale(1.08);
  filter:
    drop-shadow(0 0 10px rgba(255,193,7,.42))
    drop-shadow(0 0 18px rgba(255,193,7,.20));
}

/* Estrelas com vida */
.depoimento-card .estrelas{
  animation:clvStarsPulse 2.2s ease-in-out infinite;
}

/* Ícones principais respirando */
.trust-item i,
.btn-social i,
.video-cta i,
.btn-whatsapp i,
.btn-header i{
  animation:clvIconBreath 2.8s ease-in-out infinite;
}

/* Botões com brilho de ação */
.btn-whatsapp,
.btn-header,
.video-cta,
.promo-wait-btn{
  position:relative;
  overflow:hidden;
}

.btn-whatsapp::after,
.btn-header::after,
.video-cta::after,
.promo-wait-btn::after{
  content:"";
  position:absolute;
  top:0;
  left:-120%;
  width:70%;
  height:100%;
  background:linear-gradient(
    110deg,
    transparent,
    rgba(255,255,255,.35),
    transparent
  );
  transform:skewX(-18deg);
  pointer-events:none;
}

.btn-whatsapp:hover::after,
.btn-header:hover::after,
.video-cta:hover::after,
.promo-wait-btn:hover::after{
  animation:clvButtonShine .9s ease forwards;
}

/* Animações */
@keyframes clvLightSweep{
  0%{
    transform:translateX(-130%) skewX(-18deg);
    opacity:0;
  }

  25%{
    opacity:1;
  }

  100%{
    transform:translateX(130%) skewX(-18deg);
    opacity:0;
  }
}

@keyframes clvStarsPulse{
  0%,100%{
    transform:scale(1);
    text-shadow:0 0 10px rgba(255,193,7,.35);
  }

  50%{
    transform:scale(1.04);
    text-shadow:
      0 0 12px rgba(255,193,7,.75),
      0 0 28px rgba(255,193,7,.35);
  }
}

@keyframes clvIconBreath{
  0%,100%{
    transform:scale(1);
  }

  50%{
    transform:scale(1.12);
  }
}

@keyframes clvButtonShine{
  0%{
    left:-120%;
  }

  100%{
    left:130%;
  }
}

/* Mobile: mantém leve */
@media(max-width:768px){
  .motion-ready .footer-card,
  .motion-ready .servico-icone-v2,
  .motion-ready .depoimento-card,
  .motion-ready .btn-social,
  .motion-ready .promo-icon-card{
    transform:translateY(22px) scale(.98);
  }

  .motion-ready .footer-card.is-visible,
  .motion-ready .servico-icone-v2.is-visible,
  .motion-ready .depoimento-card.is-visible,
  .motion-ready .btn-social.is-visible,
  .motion-ready .promo-icon-card.is-visible{
    transform:translateY(0) scale(1);
  }

  .hero-trust .trust-item,
  .hero-trust .trust-item.is-visible,
  .motion-ready .hero-trust .trust-item,
  .motion-ready .hero-trust .trust-item.is-visible{
    opacity:1;
    transform:none;
  }
}

/* Acessibilidade */
@media(prefers-reduced-motion:reduce){
  .motion-ready .footer-card,
  .motion-ready .servico-icone-v2,
  .motion-ready .depoimento-card,
  .motion-ready .btn-social,
  .motion-ready .promo-icon-card,
  .motion-ready .trust-item,
  .trust-item i,
  .btn-social i,
  .video-cta i,
  .btn-whatsapp i,
  .btn-header i,
  .depoimento-card .estrelas{
    animation:none;
    transition:none;
    opacity:1;
    transform:none;
  }
}