:root{
  --bg:#070709;
  --bg2:#0e0e12;
  --text:#f3f3f3;
  --muted:#cfcfcf;

  --gold:#f5c542;
  --gold2:#d6a11e;

  --stroke: rgba(255,255,255,.12);
  --shadow: 0 18px 60px rgba(0,0,0,.55);

  --whats:#19c37d;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
   background-color: #000b52;
  color: var(--text);
}

.container{
  width:min(1100px, calc(100% - 32px));
  margin-inline:auto;
}

/* HEADER */
.header{
  position: sticky;
  top:0;
  z-index:50;
  background: rgb(255, 255, 255);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,.08);
  padding-bottom: 10px;
}

.nav{
  height:72px;
  display:flex;
  align-items:center;
  gap:18px;
}


.brand{
  display:flex;
  align-items:center;
  text-decoration:none;
}

.brand__logo{
  height: 200px;       /* ajuste se quiser maior/menor */
  width: auto;
  display:block;
  object-fit: contain;
  margin-top: 20px;
}


.nav__links{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:22px;
}
.nav__links a{
  color:#000000;
  text-decoration:none;
  font-weight:600;
  opacity:.9;
}
.nav__links a:hover{ opacity:1; }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 12px;
  padding: 12px 16px;
  font-weight: 800;
  text-decoration:none;
  border: 1px solid transparent;
  cursor:pointer;
  transition: transform .08s ease, opacity .2s ease;
}
.btn:active{ transform: translateY(1px); }

.btn--primary{
background: linear-gradient(90deg,rgb(0, 133, 53) 3%, rgb(6, 174, 73) 68%);
  color:#ffffff;
  box-shadow: 0 16px 40px rgba(245,197,66,.14);
  margin-top: 30px;
}

.btn--whats{
  background-color: #0054c1;
  color:#ffffff;
}
.btn--full{ width:100%; }

/* BURGER */
.burger{
  display:none;
  width:44px; height:44px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.12);
  background: #1b23bd;
  cursor:pointer;
  align-items:center;
  justify-content:center;
  gap:5px;
  padding:10px;
}
.burger span{
  display:block;
  height:2px;
  width:100%;
  background:#ffffff;
  border-radius:999px;
}

/* MOBILE MENU */
.mobile{
  border-top: 1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.96);
}
.mobile__links{
  display:flex;
  flex-direction:column;
  gap:10px;
  padding: 14px 16px 18px;
}
.mobile__links a{
  color:#2c2c2c;
  text-decoration:none;
  padding:10px 8px;
  border-radius: 10px;
  font-weight: bold;
  margin-top: 10px;
}
.mobile__links a:hover{ background: rgba(0,0,0,.06); }

/* HERO / SLIDER */
.hero{ position:relative; }
.slider{
  position:relative;
  min-height: calc(100svh - 72px);
  overflow:hidden;
}
.slide{
  position:absolute;
  inset:0;
  opacity:0;
  pointer-events:none;
  transform: scale(1.02);
  transition: opacity .6s ease, transform .6s ease;

  background-image:
    linear-gradient(
      90deg,
      rgba(5, 0, 96, 0.196) 0%,
      rgba(0, 0, 0, 0.45) 55%,
      rgba(10, 0, 147, 0) 100%
    ),
    var(--bg-img);

  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
}

.slide.is-active{
  opacity:1;
  pointer-events:auto;
  transform: scale(1);
}


.hero__content{
  padding: 110px 0 80px;
  max-width: 680px;
  position:relative;
}

.pill{
  display:inline-flex;
  align-items:center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  font-weight: 800;
  width: fit-content;
}

.hero h1{
  margin: 16px 0 10px;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.hero__sub{
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.hero__actions{
  display:flex;
  gap:12px;
  flex-wrap: wrap;
}

.ultra{
  position:absolute;
  right: clamp(12px, 4vw, 60px);
  bottom: 26px;
  font-weight: 900;
  letter-spacing: .06em;
  font-size: clamp(24px, 4vw, 52px);
  opacity: .18;
  text-transform: uppercase;
  text-shadow: 0 6px 30px rgba(0,0,0,.55);
}

/* arrows + dots */
.arrow{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  width:44px; height:44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.28);
  color: #fff;
  font-size: 28px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  backdrop-filter: blur(8px);
}
.arrow--left{ left: 14px; }
.arrow--right{ right: 14px; }

.dots{
  position:absolute;
  left:50%;
  transform: translateX(-50%);
  bottom: 18px;
  display:flex;
  gap:10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
}
.dot{
  width:10px; height:10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.18);
  cursor:pointer;
}
.dot.is-active{
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  border-color: rgba(0,0,0,.25);
}

/* PLANS */
.plans{
  display: grid;
  grid-template-columns: repeat(4, minmax(240px, 1fr));
  gap: 18px;
  align-items: stretch;
}

/* Card voltou a existir */
.plan{
  position: relative;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 2px solid rgba(0, 119, 255, 0.15);
  border-radius: 20px;
  padding: 28px;

  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  min-height: 480px;
  transition: all 0.3s ease, transform 0.3s ease;
}

.plan:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 119, 255, 0.15);
  border-color: rgba(0, 119, 255, 0.35); /* opcional: dá “peso” e uniformiza */
}

.plan::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: radial-gradient(600px 200px at 20% 0%, rgba(0, 119, 255, 0.05), transparent 60%);
  pointer-events:none;
}

/* Cabeçalho */
.plan__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  position:relative;
  margin-bottom: 12px;
}

.plan h3{
  margin:0;
  font-size: 22px;
  font-weight: 700;
  color: #0061cc;
  letter-spacing: -0.5px;
}

/* Tags */
.tag{
  font-size: 11px;
  font-weight: 900;
  padding: 7px 12px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(0, 119, 255, 0.15), rgba(0, 89, 255, 0.1));
  border: 1px solid rgba(0, 119, 255, 0.4);
  color: #0066cc;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tag--gold{
  background: linear-gradient(135deg, #ff6b3d, #ff8c5a);
  color:#ffffff;
  border-color: #ff6b3d;
  box-shadow: 0 4px 15px rgba(255, 107, 61, 0.25);
}

/* Velocidade */
.speed{
  margin: 12px 0 20px;
  display:flex;
  align-items:flex-end;
  gap:8px;
  position:relative;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(0, 119, 255, 0.1);
}

.speed strong{
  font-size: 52px;
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #0066cc 0%, #0089ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
}

.speed span{
  font-weight: 900;
  color: #666666;
  margin-bottom: 10px;
  font-size: 13px;
}

/* Lista */
.plan__list{
  margin: 0 0 18px;
  padding-left: 0;
  color: #555555;
  position:relative;
  flex-grow: 1;
}

.plan__list li{
  margin: 11px 0;
  padding-left: 24px;
  font-size: 14px;
  line-height: 1.5;
}

.plan__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0066cc;
  font-weight: bold;
  font-size: 16px;
}

/* Preço + botão alinhados no fundo */
.tag-valor{
  margin-top: auto;
  display: inline-block;
  align-self: flex-start;
  font-size: 16px;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 10px;
  background: linear-gradient(135deg, #000c68, #0052a3);
  border: none;
  color: #ffffff;
  margin-bottom: 12px;
  box-shadow: 0 6px 20px rgba(0, 102, 204, 0.25);
}

.plan .btn--full{
  margin-top: auto;
  border-radius: 12px;
  font-weight: 700;
  padding: 14px 18px;
  transition: all 0.3s ease;
}

.plan .btn--full:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 133, 53, 0.35);
}

/* Featured (mais elegante com 4 colunas) */
.plan--featured{
  border-color: rgba(0, 119, 255, 0.5);
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(0, 119, 255, 0.2);
  background: linear-gradient(135deg, #ffffff 0%, #f0f6ff 100%);
}

.plan--featured:hover {
  transform: translateY(-16px);
  box-shadow: 0 24px 60px rgba(0, 119, 255, 0.25);
}

.plan--featured::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius: 18px;
  box-shadow: 0 0 0 1px rgba(0,119,255,.2), 0 22px 80px rgba(0,119,255,.08);
  pointer-events:none;
}


/* CONTATO */
.contact{
  max-width: 520px;
}
.small{
  color: var(--muted);
  margin-top: 10px;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #f3f3f3;
  padding: 60px 20px 24px;
  font-family: Arial, sans-serif;
  color: #1f2a44;
}

.footer-box {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.brand-logo img {
  max-width: 320px;
  width: 100%;
  height: auto;
  display: block;
}

.brand-text {
  max-width: 430px;
  font-size: 18px;
  line-height: 1.7;
  margin: 0;
  margin-top: -150px;
}

.brand-social {
  display: flex;
  gap: 14px;
}

.social-link {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #ffffff;
  font-size: 24px;
  font-weight: bold;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-link:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.social-facebook {
  background: #1877f2;
}

.social-instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-title {
  margin: 0;
  font-size: 48px;
  line-height: 1.1;
  font-weight: 800;
  color: #1f2a44;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid #22b8ff;
  font-size: 18px;
}

.contact-icon {
  flex-shrink: 0;
  font-size: 20px;
}

.contact-item a {
  color: #1f2a44;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

.footer-certification {
  margin-top: 8px;
}

.certification-image {
  max-width: 200px;
  background: #ffffff;
  padding: 12px;
}

.certification-image img {
  width: 100%;
  height: auto;
  display: block;
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid #d8d8d8;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  font-size: 16px;
  color: #1f2a44;
}

/* Tablet */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-title {
    font-size: 38px;
  }

  .brand-text {
    max-width: 100%;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .site-footer {
    padding: 40px 16px 20px;
  }

  .footer-grid {
    gap: 32px;
  }

  .footer-title {
    font-size: 30px;
  }

  .brand-text {
    font-size: 16px;
    line-height: 1.6;
  }

  .contact-item {
    align-items: flex-start;
    font-size: 16px;
    line-height: 1.5;
    padding: 14px 0;
  }

  .social-link {
    width: 46px;
    height: 46px;
    font-size: 20px;
  }

  .certification-title {
    font-size: 12px;
  }

  .footer-bottom {
    margin-top: 36px;
    padding-top: 20px;
    flex-direction: column;
    gap: 10px;
  }

  .footer-bottom p {
    font-size: 14px;
  }

.brand-logo img {
  margin-left: -40px;
}
}
/* FOOTER */

/* RESPONSIVO */
@media (max-width: 920px){
  .nav__links{ display:none; }
  .btn--whats{ display:none; }
  .burger{ display:flex; }

  .hero__content{ padding: 90px 0 80px; }
  .plans{ grid-template-columns: 1fr; }
  .plan--featured{ transform:none; }

}

@media (max-width: 1200px){
  .plans{ grid-template-columns: repeat(2, 1fr); }
  .plan--featured{ transform: none; }
}

@media (max-width: 700px){
  .plans{ grid-template-columns: 1fr; }
}

@media (max-width: 520px){
  .hero__sub{ font-size: 16px; }
  .arrow{ display:none; }


.hero h1{
margin-top: 120px;}

  
}

/* ===== COVERAGE SECTION ===== */
.coverage{
  padding: clamp(56px, 6vw, 96px) 0;
   background-color: #000b52;
  color: #fff;
}

.coverage__container{
  width: min(1200px, 92vw);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
}

.coverage__title{
  margin: 0 0 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.95;
  text-transform: uppercase;
  font-size: clamp(25px, 3.5vw, 66px) !important;
  color: #f2e500;
}

.coverage__desc{
  margin: 0 0 26px;
  max-width: 56ch;
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.7;
  color: rgba(255,255,255,.9);
}

.coverage__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 14px;
  font-weight: 800;
  text-decoration: none;
  color: #ffffff;
  background: #3fd117;
  box-shadow: 0 14px 40px rgba(0,0,0,.35);
  transition: transform .2s ease, filter .2s ease;
}

.coverage__btn:hover{
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.coverage__media{
  display: grid;
  place-items: center;
}

.coverage__phone{
  width: min(520px, 98%);
  height: auto;
  display: block;
  filter: drop-shadow(0 22px 48px rgba(0,0,0,.45));
}

/* ===== RESPONSIVO ===== */
@media (max-width: 900px){
  .coverage__container{
    grid-template-columns: 1fr;
  }

  .coverage__media{
    order: 1;
  }

  .coverage__text{
    order: 2;
  }

  .coverage__title{
    line-height: 1.05;
  }

  .coverage__desc{
    max-width: 65ch;
  }
}

/* ===== TICKER / FAIXA ANIMADA ===== */
.ticker{
  background: #ffffff;
  overflow: hidden;
  border-top: 1px solid rgba(0,0,0,.08);
  border-bottom: 1px solid rgba(0,0,0,.08);
  height: 80px;
}

.ticker__track{
  display: flex;
  width: max-content;
  animation: tickerMove 14s linear infinite;
}

.ticker__text{
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 10px 10px;

  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;

  font-size: clamp(14px, 2.4vw, 20px);
  color: #0b1020;
}

.ticker__text span{
  color: #f5b423;
}

/* animação direita → esquerda */
@keyframes tickerMove{
  from{
    transform: translateX(0);
  }
  to{
    transform: translateX(-50%);
  }
}

/* pausa ao passar o mouse (opcional) */
.ticker:hover .ticker__track{
  animation-play-state: paused;
}

/* ===== MOBILE ===== */
@media (max-width: 600px){
  .ticker__text{
    padding: 14px 20px;
    gap: 16px;
  }
  .header{
    padding-bottom: 20px;
}
 }
 
/* ===== TICKER / FAIXA ANIMADA ===== */

/* ===== CTA IMAGE (IMG NO HTML) ===== */
.cta-image{
  position: relative;
  min-height: clamp(320px, 46vw, 520px);
  overflow: hidden;
  display: grid;
  place-items: center;
  color: #fff;
  text-align: center;
}

/* imagem ocupa toda a área */
.cta-image__img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* overlay para leitura */
.cta-image__overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 4, 192, 0.526) 0%,
    rgba(10, 165, 255, 0.388) 100%
  );
}

/* conteúdo acima da imagem */
.cta-image__content{
  position: relative;
  z-index: 1;
  padding: clamp(24px, 5vw, 48px);
  max-width: 900px;
}

.cta-image__content h2{
  margin: 0;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-size: clamp(22px, 4vw, 42px);
}

.cta-image__content strong{
  display: block;
  margin-top: 10px;
  font-weight: 900;
  color: #f5b423;
}

/* ===== MOBILE ===== */
@media (max-width: 520px){
  .cta-image{
    min-height: 280px;
  }

  .cta-image__content h2{
    line-height: 1.2;
  }

.agencia{
  font-size: 10px !important;
  margin-left: 150px;
}
.burger{
  margin-left: 90px;
  margin-top: 20px;
}

.brand__logo{
  margin-left: -15px;
  margin-top: 35px;
  width: 180px;
}

}

/* ===== imagem filmes ===== */
.agencia{
  font-size: 10px !important;
  text-align: center;
 
}
.inicio{
  color: #f5b423 !important;
}

/* ===== BENEFÍCIOS ===== */
.benefit-ticker{
  padding: clamp(36px, 5vw, 70px) 0;
  background: #11b0ff00;
  margin-top: 50px;
}

.benefit-ticker__title{
  margin: 0 0 22px;
  text-align: center;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: clamp(18px, 2.6vw, 34px);
  color: #ffffff;
}
.benefit-ticker__title span{ font-weight: 900; }

.benefit-ticker__wrap{
  overflow: hidden;
}

.benefit-ticker__track{
  display: flex;
  width: max-content;
  gap: clamp(22px, 4vw, 46px);
  padding: 22px 12px;
  animation: benefitMove 18s linear infinite;
}

.benefit-ticker__item{
  width: clamp(150px, 18vw, 210px);
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.benefit-ticker__item img{
  width: clamp(54px, 6vw, 92px);
  height: auto;
  display: block;
}

.benefit-ticker__item p{
  margin: 0;
  font-size: clamp(12px, 1.4vw, 16px);
  color: #ffffff;
  line-height: 1.2;
}
.benefit-ticker__item strong{ font-weight: 900; }

@keyframes benefitMove{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* pausa no hover (desktop) */
@media (hover:hover){
  .benefit-ticker__wrap:hover .benefit-ticker__track{
    animation-play-state: paused;
  }
}

/* acessibilidade: reduz movimento */
@media (prefers-reduced-motion: reduce){
  .benefit-ticker__track{ animation: none; }
}

/* ===== BENEFÍCIOS ===== */

/* ===== WHATSAPP FLOAT ===== */
.wa-widget {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  display: flex;
  align-items: end;
  gap: 12px;
}

.wa-popup {
  position: relative;
  max-width: 320px;
  background: #f3f3f3;
  border-radius: 22px;
  padding: 18px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.wa-popup.is-hidden {
  display: none;
}

.wa-popup-content {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-right: 22px;
}

.wa-popup-icon {
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
}

.wa-popup-text {
  color: #2d3142;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 500;
}

.wa-close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: 0;
  background: transparent;
  color: #999;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.wa-popup-arrow {
  position: absolute;
  right: -10px;
  bottom: 18px;
  width: 0;
  height: 0;
  border-left: 12px solid #f3f3f3;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.wa-button {
  width: 76px;
  height: 76px;
  min-width: 76px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s ease;
}

.wa-button:hover {
  transform: scale(1.05);
}

.wa-icon {
  width: 34px;
  height: 34px;
}

@media (max-width: 768px) {
  .wa-widget {
    right: 14px;
    bottom: 14px;
    gap: 10px;
  }

  .wa-popup {
    max-width: 230px;
    padding: 16px 16px;
    border-radius: 18px;
  }

  .wa-popup-text {
    font-size: 15px;
    line-height: 1.4;
  }

  .wa-button {
    width: 62px;
    height: 62px;
    min-width: 62px;
  }

  .wa-icon {
    width: 28px;
    height: 28px;
  }

  .wa-popup-arrow {
    right: -8px;
    bottom: 16px;
    border-left: 10px solid #f3f3f3;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
  }
}

@media (max-width: 480px) {
  .wa-popup {
    max-width: 200px;
    padding: 14px 14px;
  }

  .wa-popup-text {
    font-size: 14px;
  }

  .wa-close {
    font-size: 22px;
    top: 8px;
    right: 10px;
  }
}
/* ===== WHATSAPP FLOAT ===== */




/*efeito suave aparece*/
.grade_canais {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.grade_canais.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* animação individual dos cards */
.grade_canais__card {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.grade_canais__card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* delay em cascata (fica bonito demais 😮‍🔥) */
.grade_canais__card:nth-child(1) {
  transition-delay: 0.2s;
}

.grade_canais__card:nth-child(2) {
  transition-delay: 0.4s;
}

.grade_canais__card:nth-child(3) {
  transition-delay: 0.6s;
}
/*efeito suave aparece*/
