: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: 70px;       /* ajuste se quiser maior/menor */
  width: auto;
  display:block;
  object-fit: contain;
  margin-top: 10px;
}


.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(182, 174, 13) 3%, rgb(209, 161, 0) 68%);
  color:#ffffff;
  box-shadow: 0 16px 40px rgba(245,197,66,.14);
  margin-top: 30px;
}
.btn--ghost{
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  color: var(--text);
}
.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.664) 0%,
      rgba(0, 0, 0, 0.45) 55%,
      rgba(10, 0, 147, 0.18) 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: rgba(255,255,255,.04);
  border: 1px solid rgba(255, 0, 0, 0.481);
  border-radius: 18px;
  padding: 18px;

  box-shadow: var(--shadow);
  overflow: hidden;
  min-height: 440px; /* opcional: dá “peso” e uniformiza */
}

.plan::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: radial-gradient(600px 200px at 20% 0%, rgba(245, 78, 66, 0.2), transparent 60%);
  pointer-events:none;
}

/* Cabeçalho */
.plan__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  position:relative;
}

.plan h3{
  margin:0;
  font-size: 18px;
}

/* Tags */
.tag{
  font-size: 12px;
  font-weight: 900;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(170, 0, 0, 0.08);
  border: 1px solid rgba(240, 0, 0, 0.401);
  color: var(--text);
  white-space: nowrap;
}

.tag--gold{
  background-color: #c21b1b;
  color:#ffffff;
  border-color: rgba(216, 187, 0, 0.327);
}

/* Velocidade */
.speed{
  margin: 14px 0 10px;
  display:flex;
  align-items:flex-end;
  gap:8px;
  position:relative;
}

.speed strong{
  font-size: 46px;
  line-height: 1;
  letter-spacing: -0.03em;
background: linear-gradient(90deg,rgb(237, 223, 65) 3%, rgb(229, 209, 55) 68%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.speed span{
  font-weight: 900;
  opacity:.9;
  margin-bottom: 8px;
}

/* Lista */
.plan__list{
  margin: 0 0 14px;
  padding-left: 18px;
  color: var(--muted);
  position:relative;
}

.plan__list li{
  margin: 8px 0;
}

/* Preço + botão alinhados no fundo */
.tag-valor{
  margin-top: auto;
  display: inline-block;
  align-self: flex-start;

  font-size: 15px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.942);
  border: 1px solid rgba(255, 225, 0, 0.462);
  color: var(--text);
}

.plan .btn--full{
  margin-top: 12px;
}

/* Featured (mais elegante com 4 colunas) */
.plan--featured{
  border-color: rgba(245,197,66,.35);
  transform: translateY(-4px);
}

.plan--featured::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius: 18px;
  box-shadow: 0 0 0 1px rgba(245,197,66,.18), 0 22px 80px rgba(245,197,66,.10);
  pointer-events:none;
}


/* CONTATO */
.contact{
  max-width: 520px;
}
.small{
  color: var(--muted);
  margin-top: 10px;
}

/* ===== FOOTER ===== */
/* ===== Rodapé (novo layout em card) ===== */
.rodape{
   background-color: #000b52;
  color: #fff;
  padding: 60px 0 22px;
}

.rodape__wrap{
  width: min(1200px, 92%);
  margin: 0 auto;
}

.rodape__card{
  display: grid;
  grid-template-columns: 1.1fr 1.4fr .9fr;
  gap: 22px;

  padding: 28px;
  border-radius: 22px;

  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.rodape__card::before{
  content:"";
  position:absolute;
  inset:-2px;
  pointer-events:none;
}

/* Marca */
.rodape__brand,
.rodape__contacts,
.rodape__seal{
  position: relative;
}

.rodape__logo{
  width: 150px;
  height: auto;
  display: block;
}

.rodape__slogan{
  margin: 12px 0 16px;
  color: rgba(255,255,255,.82);
  line-height: 1.5;
  max-width: 32ch;
}

.rodape__social{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.rodape__socialBtn{
  text-decoration: none;
  font-weight: 700;
  color: #fff;
  padding: 5px 7px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
background-color: #c0036ee7;}

.rodape__socialBtn:hover{
  transform: translateY(-2px);
  background: rgba(0,0,0,.22);
  border-color: rgba(245,197,66,.25);
}

/* Contatos */
.rodape__title{
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 900;
}

.rodape__list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.rodape__item{
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: start;

  padding: 14px;
  border-radius: 18px;

  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.10);
}

.rodape__icon{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;

  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
}

.rodape__link{
  color: #fff;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.rodape__link:hover{
  opacity: .9;
}

/* Selo */
.rodape__seal{
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 10px;
  padding: 14px;
}


.rodape__sealImg{
  width: 190px;
  max-width: 100%;
  height: auto;
  display: block;
  opacity: .95;
}

/* Bottom */
.rodape__bottom{
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.18);

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.rodape__copy,
.rodape__dev{
  margin: 0;
  color: rgba(255,255,255,.88);
}

.rodape__devLink{
  color: #fff;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ===== Responsivo ===== */
@media (max-width: 980px){
  .rodape__card{
    grid-template-columns: 1fr;
  }

  .rodape__seal{
    justify-items: start;
  }
}

@media (max-width: 520px){
  .rodape{
    padding: 46px 0 18px;
  }

  .benefit-ticker{
    margin-top: 70px;
  }

  .rodape__card{
    padding: 20px;
    border-radius: 18px;
  }

  .rodape__item{
    grid-template-columns: 36px 1fr;
    padding: 12px;
    border-radius: 16px;
  }

  .rodape__icon{
    width: 36px;
    height: 36px;
    border-radius: 12px;
  }

  .rodape__title{
    font-size: 20px;
  }
}

/* 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; }
}

/* ===== 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: 900;
  letter-spacing: -0.02em;
  line-height: 0.95;
  text-transform: uppercase;
  font-size: clamp(34px, 4.8vw, 66px);
  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(420px, 88%);
  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: 2;
    margin-top: 24px;
  }

  .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(0, 0, 0, 0.114) 0%,
    rgba(0, 0, 0, 0.337) 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: 140px;
  margin-top: 20px;
}

.brand__logo{
  margin-left: 20px;
  margin-top: 30px;
}

}

/* ===== 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: #c21b1b;
  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 ===== */
.whatsapp-float{
  position: fixed;
  right: clamp(14px, 3vw, 26px);
  bottom: clamp(14px, 3vw, 26px);
  z-index: 999;

  width: clamp(42px, 8vw, 58px);
  height: clamp(42px, 8vw, 58px);

  display: grid;
  place-items: center;

  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 14px 30px rgba(0,0,0,.35);

  transition: transform .2s ease, filter .2s ease;
}

.whatsapp-float img{
  width: 60%;
  height: auto;
  display: block;
}

.whatsapp-float:hover{
  transform: translateY(-4px);
  filter: brightness(1.05);
}

/* mobile: evita atrapalhar gestos */
@media (max-width: 480px){
  .whatsapp-float{
    right: 14px;
    bottom: 40px; /* sobe um pouco */
  }
}

