:root{
  --azul-escuro:#003B8E;
  --azul-profundo:#00285f;
  --azul-medio:#0077D9;
  --azul-claro:#4DB8FF;
  --amarelo:#F4B400;
  --amarelo-claro:#FFC928;
  --amarelo-hover:#D99800;
  --fundo:#F5F9FF;
  --branco:#FFFFFF;
  --texto:#3F4651;
  --texto-claro:#667085;
  --borda:#DCEAFF;
  --verde:#25D366;
  --sombra:0 14px 40px rgba(0,59,142,.12);
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Montserrat', Arial, Helvetica, sans-serif;
}

html{
  scroll-behavior:smooth;
  scroll-padding-top:85px;
}

body{
  background:var(--fundo);
  color:var(--texto);
  overflow-x:hidden;
}

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

a,
button,
input,
select{
  -webkit-tap-highlight-color:transparent;
}

button,
input,
select{
  font:inherit;
}


/* CABEÇALHO */

header{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  z-index:1000;
  background:linear-gradient(
    180deg,
    rgba(0,40,95,.96),
    rgba(0,59,142,.42),
    transparent
  );
}

nav{
  width:100%;
  padding:20px 8%;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo{
  width:110px;
}

nav ul{
  display:flex;
  align-items:center;
  gap:28px;
  list-style:none;
}

nav a{
  color:white;
  text-decoration:none;
  font-weight:700;
  transition:.3s;
}

nav ul a{
  position:relative;
  padding-bottom:7px;
}

nav ul a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:0;
  height:2px;
  background:var(--amarelo);
  transition:.3s;
}

nav ul a:hover{
  color:var(--amarelo);
}

nav ul a:hover::after{
  width:100%;
}

.menu-toggle{
  display:none;
  width:44px;
  height:44px;
  padding:9px;
  border:1px solid rgba(255,255,255,.35);
  border-radius:11px;
  background:rgba(255,255,255,.12);
  cursor:pointer;
}

.menu-toggle span{
  display:block;
  width:100%;
  height:3px;
  margin:5px 0;
  border-radius:10px;
  background:white;
  transition:.3s;
}


/* ELEMENTOS GERAIS */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:16px 34px;
  border:0;
  border-radius:999px;
  background:linear-gradient(
    135deg,
    var(--amarelo-claro),
    var(--amarelo)
  );
  color:white;
  text-decoration:none;
  text-align:center;
  font-weight:900;
  box-shadow:0 12px 28px rgba(244,180,0,.27);
  cursor:pointer;
  transition:.3s;
}

.btn:hover{
  background:linear-gradient(
    135deg,
    var(--amarelo),
    var(--amarelo-hover)
  );
  transform:translateY(-3px) scale(1.02);
  box-shadow:0 16px 34px rgba(244,180,0,.35);
}

.btn-secundario{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:15px 31px;
  border:1px solid rgba(255,255,255,.52);
  border-radius:999px;
  background:rgba(255,255,255,.10);
  color:white;
  text-decoration:none;
  font-weight:800;
  backdrop-filter:blur(8px);
  transition:.3s;
}

.btn-secundario:hover{
  background:white;
  color:var(--azul-escuro);
  transform:translateY(-3px);
}

.section-tag{
  display:inline-block;
  margin-bottom:13px;
  padding:8px 18px;
  border-radius:999px;
  background:rgba(244,180,0,.15);
  color:#B77B00;
  font-size:13px;
  font-weight:900;
  letter-spacing:.5px;
  text-transform:uppercase;
}

.section-tag-clara{
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.13);
  color:var(--amarelo-claro);
}

.section-heading{
  max-width:850px;
  margin:0 auto 52px;
  text-align:center;
}

.section-heading h2{
  margin-bottom:17px;
  color:var(--azul-escuro);
  font-size:42px;
  line-height:1.15;
}

.section-heading p{
  color:var(--texto-claro);
  font-size:17px;
  line-height:1.7;
}


/* HERO */

.hero-transfer{
  position:relative;
  min-height:100svh;
  padding:175px 8% 100px;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:
    radial-gradient(circle at 85% 20%, rgba(77,184,255,.30), transparent 32%),
    linear-gradient(135deg, var(--azul-profundo), var(--azul-medio));
}

.hero-transfer::before{
  content:"";
  position:absolute;
  top:-160px;
  right:-120px;
  width:500px;
  height:500px;
  border-radius:50%;
  background:rgba(255,255,255,.07);
}

.hero-transfer::after{
  content:"";
  position:absolute;
  left:-130px;
  bottom:-180px;
  width:460px;
  height:460px;
  border-radius:50%;
  background:rgba(255,255,255,.045);
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      90deg,
      rgba(0,40,95,.55),
      transparent 62%
    );
}

.hero-container{
  position:relative;
  z-index:2;
  width:100%;
  max-width:1450px;
  margin:0 auto;
  display:grid;
  grid-template-columns:.92fr 1.08fr;
  align-items:center;
  gap:55px;
}

.hero-tag{
  display:inline-block;
  margin-bottom:18px;
  padding:10px 20px;
  border:1px solid rgba(255,255,255,.28);
  border-radius:999px;
  background:rgba(255,255,255,.12);
  color:var(--amarelo-claro);
  font-size:13px;
  font-weight:900;
  letter-spacing:.6px;
  text-transform:uppercase;
  backdrop-filter:blur(8px);
}

.hero-texto h1{
  max-width:700px;
  color:white;
  font-size:60px;
  font-weight:900;
  line-height:1.03;
  text-transform:uppercase;
  text-shadow:0 6px 22px rgba(0,0,0,.25);
}

.hero-texto > p{
  max-width:660px;
  margin-top:22px;
  color:rgba(255,255,255,.90);
  font-size:20px;
  line-height:1.65;
}

.hero-badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:28px;
}

.hero-badges span{
  padding:10px 15px;
  border:1px solid rgba(255,255,255,.19);
  border-radius:999px;
  background:rgba(255,255,255,.10);
  color:white;
  font-size:13px;
  font-weight:700;
  backdrop-filter:blur(7px);
}

.hero-acoes{
  display:flex;
  flex-wrap:wrap;
  gap:13px;
  margin-top:30px;
}

.hero-foto{
  position:relative;
  min-height:550px;
  overflow:hidden;
  border:7px solid rgba(255,255,255,.16);
  border-radius:34px;
  box-shadow:0 30px 70px rgba(0,0,0,.32);
  transform:rotate(1deg);
}

.hero-foto::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    180deg,
    transparent 55%,
    rgba(0,32,75,.65)
  );
}

.hero-foto img{
  width:100%;
  height:100%;
  min-height:550px;
  object-fit:cover;
}

.hero-foto-legenda{
  position:absolute;
  z-index:3;
  left:22px;
  right:22px;
  bottom:22px;
  padding:17px 20px;
  display:flex;
  align-items:center;
  gap:13px;
  border:1px solid rgba(255,255,255,.2);
  border-radius:18px;
  background:rgba(0,40,95,.72);
  color:white;
  backdrop-filter:blur(12px);
}

.hero-foto-legenda > span{
  font-size:30px;
}

.hero-foto-legenda strong{
  display:block;
  font-size:15px;
}

.hero-foto-legenda small{
  display:block;
  margin-top:4px;
  opacity:.82;
}

.scroll-indicator{
  position:absolute;
  z-index:3;
  left:50%;
  bottom:24px;
  width:30px;
  height:50px;
  border:2px solid rgba(255,255,255,.60);
  border-radius:999px;
  transform:translateX(-50%);
}

.scroll-indicator span{
  position:absolute;
  top:9px;
  left:50%;
  width:5px;
  height:9px;
  border-radius:999px;
  background:white;
  transform:translateX(-50%);
  animation:scrollMove 1.6s infinite;
}

@keyframes scrollMove{
  0%{
    opacity:0;
    transform:translate(-50%, 0);
  }

  30%{
    opacity:1;
  }

  100%{
    opacity:0;
    transform:translate(-50%, 17px);
  }
}


/* FAIXA DE PREÇO */

.faixa-preco{
  padding:35px 8% 25px;
  background:white;
  box-shadow:0 14px 35px rgba(0,59,142,.07);
}

.faixa-preco-conteudo{
  max-width:1200px;
  margin:0 auto;
  padding:27px 34px;
  display:grid;
  grid-template-columns:1.1fr .8fr auto;
  align-items:center;
  gap:30px;
  border-radius:24px;
  background:
    radial-gradient(circle at right top, rgba(77,184,255,.25), transparent 30%),
    linear-gradient(135deg, var(--azul-profundo), var(--azul-medio));
  color:white;
  box-shadow:var(--sombra);
}

.faixa-preco-rota{
  display:flex;
  align-items:center;
  gap:16px;
}

.icone-rota{
  min-width:62px;
  height:62px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:18px;
  background:rgba(255,255,255,.13);
  font-size:29px;
}

.faixa-preco-rota small,
.faixa-preco-rota strong{
  display:block;
}

.faixa-preco-rota small{
  margin-bottom:5px;
  color:var(--amarelo-claro);
  font-size:12px;
  font-weight:900;
  letter-spacing:.6px;
  text-transform:uppercase;
}

.faixa-preco-rota strong{
  font-size:23px;
}

.faixa-preco-valor span,
.faixa-preco-valor strong{
  display:block;
}

.faixa-preco-valor span{
  font-size:13px;
  opacity:.84;
}

.faixa-preco-valor strong{
  color:var(--amarelo-claro);
  font-size:38px;
  line-height:1.1;
}

.btn-faixa{
  white-space:nowrap;
}

.observacao-preco{
  max-width:1200px;
  margin:15px auto 0;
  color:#7A8493;
  font-size:12px;
  text-align:center;
}


/* SIMULADOR */

.simulador{
  padding:100px 8%;
  background:var(--fundo);
}

.simulador-container{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:60px;
  align-items:center;
}

.simulador-texto h2{
  max-width:530px;
  margin-bottom:18px;
  color:var(--azul-escuro);
  font-size:44px;
  line-height:1.12;
}

.simulador-texto > p{
  max-width:570px;
  color:var(--texto-claro);
  font-size:17px;
  line-height:1.75;
}

.simulador-vantagens{
  margin-top:27px;
  display:flex;
  flex-direction:column;
  gap:13px;
}

.simulador-vantagens span{
  color:var(--azul-escuro);
  font-weight:800;
}

.simulador-form{
  padding:38px;
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:22px;
  border:1px solid var(--borda);
  border-radius:28px;
  background:white;
  box-shadow:var(--sombra);
}

.campo{
  min-width:0;
}

.campo label{
  display:block;
  margin-bottom:9px;
  color:var(--azul-escuro);
  font-size:13px;
  font-weight:900;
}

.campo-controle{
  min-height:58px;
  padding:0 16px;
  display:flex;
  align-items:center;
  gap:10px;
  border:2px solid #E5EEFA;
  border-radius:15px;
  background:#FBFDFF;
  transition:.3s;
}

.campo-controle:focus-within{
  border-color:var(--azul-medio);
  box-shadow:0 0 0 4px rgba(0,119,217,.10);
}

.campo-controle > span{
  font-size:21px;
}

.campo input,
.campo select{
  width:100%;
  min-width:0;
  padding:17px 0;
  border:0;
  outline:0;
  background:transparent;
  color:var(--texto);
  font-weight:700;
}

.campo select{
  cursor:pointer;
}

.campo-outro-local{
  display:none;
  grid-column:1 / -1;
}

.campo-outro-local.ativo{
  display:block;
}

.btn-form{
  grid-column:1 / -1;
  width:100%;
  margin-top:3px;
}

.form-seguranca{
  grid-column:1 / -1;
  color:#7B8492;
  font-size:11px;
  text-align:center;
}


/* COMO FUNCIONA */

.como-funciona{
  padding:100px 8%;
  background:white;
}

.passos{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:20px;
}

.passo{
  position:relative;
  padding:34px 25px 28px;
  overflow:hidden;
  border:1px solid var(--borda);
  border-radius:23px;
  background:var(--fundo);
  text-align:center;
  transition:.3s;
}

.passo:hover{
  transform:translateY(-8px);
  border-color:rgba(244,180,0,.65);
  background:white;
  box-shadow:var(--sombra);
}

.passo-numero{
  position:absolute;
  top:15px;
  right:17px;
  color:rgba(0,59,142,.09);
  font-size:47px;
  font-weight:900;
}

.passo-icone{
  width:68px;
  height:68px;
  margin:0 auto 21px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:20px;
  background:linear-gradient(135deg, var(--azul-escuro), var(--azul-medio));
  font-size:30px;
  box-shadow:0 12px 25px rgba(0,59,142,.19);
}

.passo h3{
  margin-bottom:11px;
  color:var(--azul-escuro);
  font-size:20px;
}

.passo p{
  color:var(--texto-claro);
  font-size:14px;
  line-height:1.65;
}


/* TIPOS */

.tipos-transfer{
  padding:100px 8%;
  background:var(--fundo);
}

.tipos-grid{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:24px;
}

.tipo-card{
  position:relative;
  padding:35px;
  overflow:hidden;
  border:1px solid var(--borda);
  border-radius:25px;
  background:white;
  box-shadow:0 8px 25px rgba(0,59,142,.07);
  transition:.3s;
}

.tipo-card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:6px;
  background:linear-gradient(90deg, var(--azul-escuro), var(--azul-medio));
}

.tipo-card:hover{
  transform:translateY(-7px);
  box-shadow:var(--sombra);
}

.tipo-icone{
  width:65px;
  height:65px;
  margin-bottom:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:19px;
  background:linear-gradient(
    135deg,
    rgba(0,59,142,.12),
    rgba(77,184,255,.18)
  );
  font-size:31px;
}

.tipo-tag{
  display:block;
  margin-bottom:8px;
  color:var(--azul-medio);
  font-size:12px;
  font-weight:900;
  letter-spacing:.6px;
  text-transform:uppercase;
}

.tipo-card h3{
  margin-bottom:13px;
  color:var(--azul-escuro);
  font-size:27px;
}

.tipo-card p{
  margin-bottom:20px;
  color:var(--texto-claro);
  line-height:1.7;
}

.tipo-card a{
  color:var(--azul-medio);
  text-decoration:none;
  font-weight:900;
}

.tipo-card-combo{
  grid-column:1 / -1;
  min-height:300px;
  padding-right:45%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  color:white;
  background:
    linear-gradient(90deg, rgba(0,40,95,.97), rgba(0,119,217,.70)),
    url("combo-transfer.jpg") center right / cover no-repeat;
}

.tipo-card-combo::before{
  background:linear-gradient(90deg, var(--amarelo-claro), var(--amarelo));
}

.tipo-card-combo .tipo-icone{
  background:rgba(255,255,255,.14);
}

.tipo-card-combo .tipo-tag{
  color:var(--amarelo-claro);
}

.tipo-card-combo h3{
  color:white;
  font-size:35px;
}

.tipo-card-combo p{
  color:rgba(255,255,255,.86);
}

.tipo-card-combo a{
  color:var(--amarelo-claro);
}

.combo-selo{
  position:absolute;
  top:24px;
  right:24px;
  padding:9px 16px;
  border-radius:999px;
  background:var(--amarelo);
  color:white;
  font-size:12px;
  font-weight:900;
}


/* PRIVATIVO */

.privativo{
  padding:100px 8%;
  background:white;
}

.privativo-container{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:stretch;
  overflow:hidden;
  border-radius:30px;
  background:
    radial-gradient(circle at right top, rgba(77,184,255,.30), transparent 30%),
    linear-gradient(135deg, var(--azul-profundo), var(--azul-medio));
  box-shadow:0 20px 55px rgba(0,59,142,.20);
}

.privativo-imagem{
  min-height:560px;
}

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

.privativo-texto{
  padding:60px;
  color:white;
}

.privativo-texto h2{
  margin-bottom:20px;
  font-size:41px;
  line-height:1.15;
}

.privativo-texto > p{
  color:rgba(255,255,255,.86);
  font-size:16px;
  line-height:1.75;
}

.privativo-texto ul{
  margin-top:27px;
  display:grid;
  gap:15px;
  list-style:none;
}

.privativo-texto li{
  display:flex;
  align-items:flex-start;
  gap:12px;
  line-height:1.5;
}

.privativo-texto li span{
  min-width:26px;
  height:26px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:var(--amarelo);
  color:white;
  font-size:13px;
  font-weight:900;
}

.privativo-texto .btn{
  margin-top:30px;
}


/* GALERIA */

.experiencias{
  padding:100px 8%;
  background:var(--fundo);
}

.galeria-transfer{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  grid-template-rows:repeat(2, 240px);
  gap:16px;
}

.foto{
  position:relative;
  overflow:hidden;
  border-radius:22px;
  box-shadow:0 10px 28px rgba(0,59,142,.10);
}

.foto-grande{
  grid-column:span 2;
  grid-row:span 2;
}

.foto img{
  width:100%;
  height:100%;
  object-fit:cover;
  cursor:pointer;
  transition:.5s;
}

.foto:hover img{
  transform:scale(1.07);
}

.foto::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, transparent 55%, rgba(0,32,75,.78));
  pointer-events:none;
}

.foto figcaption{
  position:absolute;
  z-index:2;
  left:18px;
  right:18px;
  bottom:17px;
  color:white;
  font-size:13px;
  font-weight:800;
}


/* DIFERENCIAIS */

.diferenciais{
  padding:100px 8%;
  color:white;
  background:
    radial-gradient(circle at left top, rgba(77,184,255,.26), transparent 28%),
    linear-gradient(135deg, var(--azul-profundo), var(--azul-medio));
}

.diferenciais-container{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:.72fr 1.28fr;
  gap:55px;
  align-items:center;
}

.diferenciais-titulo h2{
  margin-bottom:18px;
  font-size:41px;
  line-height:1.14;
}

.diferenciais-titulo p{
  color:rgba(255,255,255,.83);
  line-height:1.75;
}

.diferenciais-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:17px;
}

.diferenciais-grid article{
  padding:23px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:19px;
  background:rgba(255,255,255,.10);
  backdrop-filter:blur(7px);
}

.diferenciais-grid article > span{
  display:block;
  margin-bottom:12px;
  font-size:28px;
}

.diferenciais-grid h3{
  margin-bottom:7px;
  font-size:16px;
}

.diferenciais-grid p{
  color:rgba(255,255,255,.75);
  font-size:13px;
  line-height:1.55;
}


/* FAQ */

.faq{
  padding:100px 8%;
  background:white;
}

.faq-lista{
  max-width:900px;
  margin:0 auto;
  display:grid;
  gap:14px;
}

.faq-item{
  overflow:hidden;
  border:1px solid var(--borda);
  border-radius:18px;
  background:var(--fundo);
  transition:.3s;
}

.faq-item.ativo{
  border-color:rgba(244,180,0,.65);
  background:white;
  box-shadow:0 12px 30px rgba(0,59,142,.09);
}

.faq-pergunta{
  width:100%;
  padding:21px 23px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  border:0;
  background:transparent;
  color:var(--azul-escuro);
  text-align:left;
  font-weight:900;
  cursor:pointer;
}

.faq-pergunta strong{
  min-width:32px;
  height:32px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:var(--azul-escuro);
  color:white;
  font-size:20px;
  transition:.3s;
}

.faq-item.ativo .faq-pergunta strong{
  background:var(--amarelo);
  transform:rotate(45deg);
}

.faq-resposta{
  max-height:0;
  overflow:hidden;
  transition:max-height .4s ease;
}

.faq-resposta p{
  padding:0 23px 23px;
  color:var(--texto-claro);
  line-height:1.7;
}


/* CTA FINAL */

.cta-final{
  padding:100px 8%;
  background:var(--fundo);
}

.cta-final-conteudo{
  position:relative;
  max-width:950px;
  margin:0 auto;
  padding:68px 45px;
  overflow:hidden;
  border-radius:32px;
  color:white;
  text-align:center;
  background:
    radial-gradient(circle at left bottom, rgba(77,184,255,.31), transparent 35%),
    linear-gradient(135deg, var(--azul-profundo), var(--azul-medio));
  box-shadow:0 18px 50px rgba(0,59,142,.21);
}

.cta-final-conteudo::before{
  content:"";
  position:absolute;
  top:-100px;
  right:-90px;
  width:300px;
  height:300px;
  border-radius:50%;
  background:rgba(255,255,255,.07);
}

.cta-final-conteudo > *{
  position:relative;
  z-index:2;
}

.cta-logo{
  width:90px;
  margin:0 auto 20px;
}

.contato-tag{
  display:inline-block;
  margin-bottom:17px;
  padding:9px 18px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  color:var(--amarelo-claro);
  font-size:12px;
  font-weight:900;
  letter-spacing:.5px;
  text-transform:uppercase;
}

.cta-final h2{
  max-width:760px;
  margin:0 auto 17px;
  font-size:43px;
  line-height:1.15;
}

.cta-final p{
  max-width:700px;
  margin:0 auto;
  color:rgba(255,255,255,.86);
  line-height:1.7;
}

.cta-dados{
  margin-top:28px;
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:11px;
}

.cta-dados span{
  padding:10px 15px;
  border:1px solid rgba(255,255,255,.17);
  border-radius:999px;
  background:rgba(255,255,255,.10);
  font-size:12px;
  font-weight:700;
}

.cta-final .btn{
  margin-top:28px;
}

.cta-final .instagram{
  margin-top:22px;
  color:var(--amarelo-claro);
  font-weight:900;
}


/* RODAPÉ */

footer{
  padding:40px 20px;
  background:var(--azul-profundo);
  color:white;
  text-align:center;
  line-height:1.7;
}

.footer-logo{
  width:84px;
  margin:0 auto 15px;
}


/* WHATSAPP */

.whatsapp-float{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:999;
  padding:14px 18px;
  display:flex;
  align-items:center;
  gap:12px;
  border-radius:999px;
  background:linear-gradient(135deg, #25D366, #128C7E);
  color:white;
  text-decoration:none;
  box-shadow:0 10px 30px rgba(0,0,0,.28);
  transition:.3s;
}

.whatsapp-float:hover{
  transform:translateY(-5px) scale(1.03);
}

.whatsapp-float span{
  font-size:28px;
}

.whatsapp-float strong{
  display:block;
  font-size:15px;
}

.whatsapp-float small{
  display:block;
  font-size:12px;
  opacity:.9;
}


/* LIGHTBOX */

.lightbox{
  position:fixed;
  inset:0;
  z-index:2000;
  padding:30px;
  display:none;
  align-items:center;
  justify-content:center;
  background:rgba(0,0,0,.90);
}

.lightbox.ativo{
  display:flex;
}

.lightbox img{
  max-width:95%;
  max-height:90vh;
  border-radius:18px;
  box-shadow:0 12px 50px rgba(0,0,0,.5);
}

.fechar-lightbox{
  position:absolute;
  top:22px;
  right:30px;
  border:0;
  background:transparent;
  color:white;
  font-size:45px;
  cursor:pointer;
}


/* ANIMAÇÃO */

.reveal{
  opacity:0;
  transform:translateY(35px);
  transition:
    opacity .8s ease,
    transform .8s ease;
}

.reveal.visivel{
  opacity:1;
  transform:translateY(0);
}


/* TABLET */

@media (max-width:1050px){

  .hero-container,
  .simulador-container,
  .privativo-container,
  .diferenciais-container{
    grid-template-columns:1fr;
  }

  .hero-texto{
    text-align:center;
  }

  .hero-texto h1,
  .hero-texto > p{
    margin-left:auto;
    margin-right:auto;
  }

  .hero-badges,
  .hero-acoes{
    justify-content:center;
  }

  .hero-foto{
    width:100%;
    max-width:800px;
    margin:0 auto;
    min-height:480px;
    transform:none;
  }

  .hero-foto img{
    min-height:480px;
  }

  .faixa-preco-conteudo{
    grid-template-columns:1fr auto;
  }

  .btn-faixa{
    grid-column:1 / -1;
  }

  .passos{
    grid-template-columns:repeat(2, 1fr);
  }

  .privativo-imagem{
    min-height:460px;
  }

  .galeria-transfer{
    grid-template-columns:repeat(2, 1fr);
    grid-template-rows:repeat(3, 240px);
  }

  .foto-grande{
    grid-column:span 2;
    grid-row:span 1;
  }

}


/* CELULAR */

@media (max-width:768px){

  html{
    scroll-padding-top:70px;
  }

  header{
    background:linear-gradient(
      180deg,
      rgba(0,40,95,.98),
      rgba(0,59,142,.62),
      transparent
    );
  }

  nav{
    position:relative;
    padding:14px 5%;
  }

  .logo{
    width:82px;
  }

  .menu-toggle{
    display:block;
  }

  nav ul{
    position:absolute;
    top:88px;
    left:5%;
    width:90%;
    max-height:0;
    padding:0 20px;
    display:flex;
    flex-direction:column;
    align-items:stretch;
    gap:0;
    overflow:hidden;
    border-radius:18px;
    background:rgba(0,40,95,.98);
    box-shadow:0 15px 32px rgba(0,0,0,.26);
    opacity:0;
    transition:
      max-height .4s ease,
      padding .4s ease,
      opacity .3s ease;
  }

  nav ul.ativo{
    max-height:500px;
    padding:15px 20px;
    opacity:1;
  }

  nav ul li{
    width:100%;
  }

  nav ul a{
    display:block;
    width:100%;
    padding:13px 4px;
    text-align:center;
  }

  .menu-toggle.ativo span:nth-child(1){
    transform:translateY(8px) rotate(45deg);
  }

  .menu-toggle.ativo span:nth-child(2){
    opacity:0;
  }

  .menu-toggle.ativo span:nth-child(3){
    transform:translateY(-8px) rotate(-45deg);
  }

  .section-heading{
    margin-bottom:38px;
  }

  .section-heading h2{
    font-size:31px;
  }

  .section-heading p{
    font-size:15px;
  }

  .hero-transfer{
    min-height:auto;
    padding:150px 5% 80px;
  }

  .hero-container{
    gap:38px;
  }

  .hero-tag{
    font-size:11px;
  }

  .hero-texto h1{
    font-size:39px;
    line-height:1.06;
  }

  .hero-texto > p{
    margin-top:18px;
    font-size:16px;
  }

  .hero-badges{
    gap:8px;
  }

  .hero-badges span{
    padding:8px 12px;
    font-size:11px;
  }

  .hero-acoes{
    flex-direction:column;
    align-items:center;
  }

  .hero-acoes .btn,
  .hero-acoes .btn-secundario{
    width:100%;
    max-width:330px;
  }

  .hero-foto{
    min-height:350px;
    border-width:4px;
    border-radius:24px;
  }

  .hero-foto img{
    min-height:350px;
  }

  .hero-foto-legenda{
    left:13px;
    right:13px;
    bottom:13px;
    padding:14px;
  }

  .hero-foto-legenda small{
    font-size:10px;
  }

  .scroll-indicator{
    display:none;
  }

  .faixa-preco{
    padding:28px 5% 22px;
  }

  .faixa-preco-conteudo{
    padding:27px 22px;
    grid-template-columns:1fr;
    text-align:center;
  }

  .faixa-preco-rota{
    justify-content:center;
  }

  .faixa-preco-valor strong{
    font-size:35px;
  }

  .simulador,
  .como-funciona,
  .tipos-transfer,
  .privativo,
  .experiencias,
  .diferenciais,
  .faq,
  .cta-final{
    padding:72px 5%;
  }

  .simulador-container{
    gap:35px;
  }

  .simulador-texto{
    text-align:center;
  }

  .simulador-texto h2{
    font-size:31px;
  }

  .simulador-vantagens{
    align-items:center;
  }

  .simulador-form{
    padding:25px 20px;
    grid-template-columns:1fr;
  }

  .campo-outro-local,
  .btn-form,
  .form-seguranca{
    grid-column:auto;
  }

  .passos{
    grid-template-columns:1fr;
  }

  .tipos-grid{
    grid-template-columns:1fr;
  }

  .tipo-card{
    padding:29px 24px;
  }

  .tipo-card-combo{
    grid-column:auto;
    min-height:410px;
    padding:30px 24px;
    justify-content:flex-end;
    background:
      linear-gradient(180deg, rgba(0,40,95,.35), rgba(0,40,95,.98)),
      url("combo-transfer.jpg") center / cover no-repeat;
  }

  .tipo-card-combo h3{
    font-size:29px;
  }

  .combo-selo{
    top:18px;
    right:18px;
    left:18px;
    text-align:center;
  }

  .privativo-container{
    border-radius:24px;
  }

  .privativo-imagem{
    min-height:310px;
  }

  .privativo-texto{
    padding:38px 24px;
    text-align:center;
  }

  .privativo-texto h2{
    font-size:31px;
  }

  .privativo-texto ul{
    text-align:left;
  }

  .privativo-texto .btn{
    width:100%;
  }

  .galeria-transfer{
    grid-template-columns:1fr;
    grid-template-rows:none;
  }

  .foto,
  .foto-grande{
    grid-column:auto;
    grid-row:auto;
    height:270px;
  }

  .diferenciais-container{
    gap:35px;
  }

  .diferenciais-titulo{
    text-align:center;
  }

  .diferenciais-titulo h2{
    font-size:31px;
  }

  .diferenciais-grid{
    grid-template-columns:1fr;
  }

  .faq-pergunta{
    padding:18px;
    font-size:14px;
  }

  .faq-resposta p{
    padding:0 18px 19px;
    font-size:14px;
  }

  .cta-final-conteudo{
    padding:48px 22px;
  }

  .cta-final h2{
    font-size:31px;
  }

  .cta-final .btn{
    width:100%;
  }

  .whatsapp-float{
    right:16px;
    bottom:16px;
    width:64px;
    height:64px;
    padding:0;
    justify-content:center;
    border-radius:50%;
  }

  .whatsapp-float div{
    display:none;
  }

  .whatsapp-float span{
    font-size:30px;
  }

}


/* TELAS PEQUENAS */

@media (max-width:420px){

  .hero-texto h1{
    font-size:34px;
  }

  .faixa-preco-rota{
    flex-direction:column;
  }

  .tipo-card h3{
    font-size:24px;
  }

}
