:root {
--azulescuro:#0A1F44;
--azulmedio:#0D3B8E;
--azulvibrante:#1E63FF;
--azul-header: #081C3A;


}

*{
margin: 0;
padding: 0;
}


html, body{
    overflow-x: hidden;
     scroll-behavior:smooth;
}
.container{
width: 100%;
height: auto;

}

.cabecalho{
    width: 100%;
    height: auto;
}
.conteudo{
    width: 100%;
    height: auto;
    background: white;
    padding-bottom: 10px;
}
.barratopo{
    width: 100%;
    height: 60px;
  background: linear-gradient(
  135deg,
  #081C3A,
  #0A1F44,
  #0D3B8E
);
line-height: 60px;
display: flex;
justify-content: space-between;
}


/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 10px;

}

.logo img {
  width: 38px; /* ajusta se quiser maior/menor */

}

.logo .texto {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.3px;
}

.logo .destaque {
  color: #1E63FF; /* azul do "olink" */
  font-weight: 700;
}
.logo a{
    text-decoration: none;
}
.menu-desktop{
    margin-right: 20px;
}
.menu-desktop ul {
  display: flex;           /* deixa horizontal */
  gap: 25px;               /* espaço entre itens */
  list-style: none;        /* remove bolinhas */
  padding: 0;
  margin: 0;
}

.menu-desktop li {
  display: inline-block;
}

.menu-desktop a {
  text-decoration: none;
  color: #ffffff;          /* cor do texto */
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
  font-family: Arial, Helvetica, sans-serif;
}

.menu-desktop a:hover {
  color: #1E63FF;          /* azul no hover */
}

/* BOTÃO WHATSAPP */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center; /* centraliza conteúdo */

  height: 50px;            /* altura fixa */
  padding: 0 22px;         /* só lateral */

  gap: 10px;

  background: linear-gradient(90deg, #25D366, #1EBE5D);
  color: #fff;

  border-radius: 8px;

  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  margin-right: 20px;
  margin-top: 5px;
}

/* opcional: ajusta o ícone */
.btn-whatsapp i {
  font-size: 20px;
}

/* ÍCONE MAIOR */
.btn-whatsapp i {
  font-size: 20px; /* AQUI você controla o tamanho */
  line-height: 1;
}

/* TEXTO */
.btn-whatsapp span {
  line-height: 1;
}

/* HOVER */
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.menu-mobile{
    display: none;
}

#check, label, .menu-mobile{

    display: none;
}
.banner1{
    width: 100%;
    background-image: url('imagens/banner2.png');
    background-size:cover;
    background-repeat: no-repeat;
    display: block;
    height: 630px;
}
.banner {
  background: linear-gradient(90deg, #0a1a3a, #0d2c6c);
  color: #fff;
  padding: 40px 40px; /* menor altura */
  display: none;
}
.banner {
  position: relative; /* necessário */
}

/* BOTÃO WHATSAPP */
.btn-whatsapp {
  position: absolute;
  left: 80px;   /* ajusta horizontal */
  bottom: 12px; /* ajusta vertical */

  background: #22c55e;
  color: #fff;
  padding: 14px 74px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-family: 'Poppins', sans-serif;

  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  transition: 0.3s;
}

.btn-whatsapp:hover {
  background: #16a34a;
  transform: translateY(-2px);
}
.texto h1 {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 15px;
   font-family: 'Poppins', sans-serif;
}

.texto h1 span {
  color: #3b82f6; /* azul destaque */
}

.subtexto {
  color: #cbd5e1;
  margin-bottom: 10px;
     font-family: 'Poppins', sans-serif;
}

/* BLOCO DO LINK */
.link-box {
  display: inline-block;
  background: #1d4ed8;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
  margin: 10px 0;
     font-family: 'Poppins', sans-serif;
}
.texto {
  max-width: 500px;

}
/* TEXTO PEQUENO */
.texto small {
  display: block;
  color: #94a3b8;
  margin-bottom: 20px;
     font-family: 'Poppins', sans-serif;
}

/* CAIXA DE PREÇO */
.preco-box {
  border: 1px solid #2563eb;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 250px;
  margin-bottom: 20px;
}

.preco-item {
  text-align: center;
}

.preco-item span {
  display: block;
  font-size: 12px;
  color: #cbd5e1;
}

.preco-item strong {
  font-size: 28px;
  color: white;
   font-family: 'Poppins', sans-serif;
}

.preco-item small {
  display: block;
  font-size: 12px;
  color: #94a3b8;
}

/* SINAL DE + */
.plus {
  font-size: 22px;
  color: #cbd5e1;
}

/* BOTÃO */
.btn {
  display: inline-block;
  background: #22c55e;
  color: #fff;
  padding: 14px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
}

/* TEXTO FINAL */
.info {
  font-size: 12px;
  color: #94a3b8;
}
.box {
  display: flex;
  align-items: center;
  justify-content: center; /* muda isso */
  gap: 20px; /* controla distância */
  max-width: 1200px;
  margin: auto;
}
/* ÁREA DA IMAGEM */
.imagem {
  flex: 1;
  display: flex;
  justify-content: flex-start; /* aproxima do texto */
   margin-left: -80px;
}
/* IMAGEM */
.imagem img {
  max-width: 800px; /* aumenta mais */
  width: 100%;
}
/* EFEITO DE LUZ (igual do banner profissional) */
.imagem::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59,130,246,0.4), transparent 70%);
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
}

/* GARANTE QUE A IMAGEM FIQUE NA FRENTE */
.imagem img {
     max-width: 700px; /* aumenta aqui */
  width: 100%;
  position: relative;
  z-index: 1;

}

.titulo-modelos{
    display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px; /* controla a distância entre h2 e p */
  width: 100%;
  padding-bottom: 10px;



}
.titulo-modelos h2{
text-align: center;
 font-family: 'Poppins', sans-serif;
 color:var(--azulescuro);
  margin-bottom: 5px; /* aproxima do p */
  margin-top: 10px;
}
.texto-modelos{
    color:var(--azulmedio);
}

.cards{
    width:100%;
    height: auto;

    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding-bottom: 10px;
}
.card{
width: 16%;
height: 255px;
border-radius: 8px;
border: 1px solid #ccc;
margin-top: 10px;
background-color: white;
margin-left: 8px;
}
.card img{
    width: 100%;
    height: auto;
    border-radius: 10px;
}
.titulo-modelos p{
     font-family: 'Poppins', sans-serif;
     font-size: 15px;
     text-align: center;
       margin-top: 0; /* remove espaço extra */

}/* cards*/




.cards2 {
  display: grid;
  grid-template-columns: repeat(6, 1fr); /* 6 colunas fixas */
  gap: 15px;
  padding: 30px;
  max-width: 1200px;
  margin: auto;
}

.card2 {
  background: #fff;
  border-radius: 12px;
  padding: 18px 12px;
  text-align: center;
  transition: 0.3s ease;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  border: 1px solid #eef1f7;
}

.card2:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

/* Ícones menores */
.icon {
  font-size: 24px;
  margin-bottom: 10px;
  color: #3b5cff;
  background: rgba(59, 92, 255, 0.1);
  padding: 10px;
  border-radius: 10px;
}

/* Título menor */
.card2 h3 {
  font-size: 14px;
  margin-bottom: 6px;
  color: #1a1a1a;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
}

/* Texto menor */
.card2 p {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.3;
  font-family: 'Poppins', sans-serif;
}

.call{
width: 100%;
height: auto;

display: flex;
justify-content: center;
flex-wrap: wrap;
padding-bottom: 10px;
}

.call-esquerda{
width: 50%;
height: 400px;

}

.call-direita{
width: 50%;
height: 400px;



}
.box-call-esquerda{
 width: 80%;
 height: 350px;
 background-color: #ededed;
 border-radius: 10px;
 margin-left: auto;
 margin-right: auto;
 margin-top: 20px;
 padding-top: 10px;



}

.box-call-esquerda h2{
     font-family: 'Poppins', sans-serif;
     text-align: center;
     margin-top:10px;
     font-weight: bold;
     margin-bottom: 30px;


}
.box-call-esquerda p{
    font-family: 'Poppins', sans-serif;
    margin-left: 80px;
}

.azul{
    color: #1d4ed8;
}


.box-passos {
    max-width: 420px;
    margin: auto;
    padding: 25px;
    border-radius: 15px;
    background: #f7f7f7;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.box-passos h2 {
    text-align: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.box-passos h2 span {
    color: #3b5bdb;
    font-weight: 700;
}

.passo {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

.numero {
    min-width: 35px;
    height: 35px;
    background: #3b5bdb;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.texto strong {
    display: block;
    font-size: 14px;
    margin-bottom: 3px;
}

.texto p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

.btn-whatsapp {
    display: block;
    text-align: center;
    background: #25D366;
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    transition: 0.3s;
}

.btn-whatsapp:hover {
    background: #1ebe5d;
}



.card-oferta {
    max-width: 500px;
    margin: auto;
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* topo azul */
.topo {
    background: linear-gradient(90deg, #3b5bdb, #5f3dc4);
    color: #fff;
    text-align: center;
    padding: 10px;
    font-weight: 600;
    font-size: 14px;
}

/* conteúdo */
.conteudo-oferta {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
}

/* preço */
.preco {
    width: 50%;
}

.preco .de {
    font-size: 13px;
    color: #666;
}

.preco .de span {
    text-decoration: line-through;
    color: #999;
}

.preco .por {
    margin-top: 5px;
    font-size: 14px;
}

.preco h2 {
    font-size: 36px;
    color: #3b5bdb;
    margin: 5px 0;
}

.preco .mes {
    font-size: 13px;
    color: #666;
}

.preco .extra {
    margin-top: 10px;
    font-size: 13px;
}

.preco .extra strong {
    color: #3b5bdb;
}

/* benefícios */
.beneficios {
    width: 50%;
}

.beneficios h4 {
    font-size: 14px;
    margin-bottom: 10px;
}

.beneficios ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.beneficios li {
    font-size: 13px;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

/* check verde */
.beneficios li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
}

/* botão */
.btn-oferta {
    display: block;
    margin: 15px;
    background: #25D366;
    color: #fff;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-oferta:hover {
    background: #1ebe5d;
}

.duvidas{
    width: 100%;
    height: 300px;
}
.duvidas h2{
     font-family: 'Poppins', sans-serif;
     text-align: center;
     margin-bottom: 20px;
}
.cards-duvidas{
    width: 100%;
    height: 250px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

}
.card-duvidas{
    width: 20%;
    height: 200px;
    border: 1px solid #ccc;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    margin-left: 10px;

 background: #fff;



  transition: 0.3s ease;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  border: 1px solid #eef1f7;




}
.icone-duvidas{
width: 20%;
height: 200px;
}

.icone-duvidas i{
   min-width: 35px;
    height: 35px;
    background: #3b5bdb;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-top: 10px;
    margin-left: 20px;
}
.texto-duvidas{
    width: 80%;
    height: 200px;
}
.card-duvidas h2{
    font-size: 18px;
      font-family: 'Poppins', sans-serif;
      margin-top: 10px;
}
.card-duvidas p{
    font-size: 14px;
      font-family: 'Poppins', sans-serif;
      text-align: left;
      margin-right: 10px;
}
.rodape{
    width: 100%;
    height: auto;
    background-color: #081C3A;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-left: 10px;
    padding-right: 20px;
}
.card-rodape{
    width: 20%;
    height: auto;

    margin-left: 10px;
    margin-top: 10px;

    padding-bottom: 10px;
}

.card-rodape img{
    width: 20%;
    height: auto;
    margin-left: 10px;
    margin-top: 10px;
}
.card-rodape h2{
    color: white;
    font-family: Arial, Helvetica, sans-serif;
}
.card-rodape p{
color: white;
font-family: Arial, Helvetica, sans-serif;
margin-top: 10px;
}
.card-rodape a{
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: none;
}
.card-rodape ul{
    list-style: none;
    margin-top: 10px;
}
.card-rodape li{
    width: 100%;
    height: 30px;
}


.card-rodape li a:hover{
    border-bottom: 1px solid white;
}

.copyright{
      background-color: #081C3A;
      text-align: center;
      color: white;
      font-family: Arial, Helvetica, sans-serif;
}
.titulo-clientes{
    width: 100%;
    height: auto;
    padding-bottom: 10px;

}
.titulo-clientes h2{
      font-family: 'Poppins', sans-serif;
      text-align: center;
}
.clientes{
width: 100%;
height: auto;

 display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding-top: 20px;
  padding-bottom: 10px;
}

.cliente {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;

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

  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

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

.contato{
    width: 100%;
    height: auto;

    display: flex;
    justify-content: center;
    padding-bottom: 10px;


}
.box-contato{
    width: 85%;
    height: 270px;
    background-color: #1a1a1a;
    border-radius: 10px;
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.card-contato{
    width: 32%;
    height: 330px;
    margin-left: 10px;


}
.card-contato h2{
color: white;
font-family: 'Poppins', sans-serif;
margin-top:10px;
}
.card-contato h3{
color:white;
font-family: 'Poppins', sans-serif;
margin-top:10px;
}
.card-contato p{
color:white;
font-family: 'Poppins', sans-serif;
margin-top:10px;
}
.card-contato img{
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 20px;
}
.textomenor{
    font-size: 12px;
    margin-bottom: 5px;
}
.card-contato input{
    width: 95%;
    height: 30px;
    border-radius: 10px;
    border: none;
    margin-bottom: 5px;
    padding-left: 10px;
    color: #807e7e;
}

.card-contato textarea{
    width: 95%;
    height: 70px;
    border-radius: 10px;
     color: #807e7e;
     padding: 10px;
}
.card-contato button{
    background-color: #16a34a;
    color: white;
    width: 95%;
    height: 30px;
    border-radius: 10px;
    border: none;
}

.linha{
    display: flex;
    gap: 15px;
    margin-bottom: 3px;

    width: 95%;
}


.msg-sucesso{
    width: 100%;
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 6px;
    margin: 15px 0;
    border: 1px solid #c3e6cb;
    font-weight: bold;
}


.redessociais-rodape ul{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex; /* Exibe os itens em linha (horizontal) */

}
.redessociais-rodape li{
 margin: 0;
  padding: 0;
  width: 40px;

}
.redessociais-rodape li a{
  display: block;
  padding: 10px 10px;
  color: white;
  text-decoration: none;
  font-family: Arial, sans-serif;
  transition: background-color 0.3s ease;
  font-size: 20px;
}

.redessociais-rodape li a:hover{
border: none;
}

.whatsapp{
width: 70px;
height: 70px;
position: fixed;
bottom: 50px;
right: 50px;
border-radius: 50%;
background-color: #16a34a;
line-height: 70px;
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.45);
display: flex;
justify-content: center;
justify-content: center;
/* começa invisível */
    opacity: 0;

    /* animação automática */
    animation: aparecerSubindo 1.2s ease forwards;

    /* tempo para aparecer */
    animation-delay: 2s;
z-index: 999;
}


@keyframes aparecerSubindo{

    0%{
        opacity: 0;
        transform: translateY(100px);
    }

    100%{
        opacity: 1;
        transform: translateY(0);
    }

}











.whatsapp img{
    width: 100%;
    height: auto;

}
@media only screen and (max-width: 520px) {
.linha{
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}
.barratopo{
    justify-content: left;
}
/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 10px;
}

.logo img {
  width: 38px; /* ajusta se quiser maior/menor */
}

.logo .texto {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.3px;
}

.logo .destaque {
  color: #1E63FF; /* azul do "olink" */
  font-weight: 700;
}

.menu-desktop{
    display: none;
}



label{
    display: block;
    font-size: 50px;
    padding-left: 10px;
    color: white;
    cursor: pointer;

}

.menu-mobile{
    background: linear-gradient(
  135deg,
  #081C3A,
  #0A1F44,
  #0D3B8E
);
    width: 100%;
    height: 800px;
    display: block;
    position: fixed;
    top: -800px;
    z-index: 999999;
       transition: .5s;


}
.menu-mobile ul{

}

.menu-mobile li{
text-align: center;
height: 50px;
width: 100%;
border-bottom: 1px solid white;
line-height: 50px;
}
.menu-mobile li a{
text-decoration: none;
font-family: Arial, Helvetica, sans-serif;
font-size: 25px;
color: white;

}
#check:checked ~ .menu-mobile{
    top:50px;
    transition: .5s;

}



/* BOTÃO WHATSAPP */
.btn-whatsapp {
  display: none; /* pode manter flex */


}
 .box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .imagem {
    justify-content: center; /* centraliza horizontalmente */
    margin-left: 0; /* remove aquele ajuste negativo */
    width: 100%;
  }

  .imagem img {
    max-width: 90%;
    margin: 0 auto; /* garante centralização */
    display: block;
  }
.banner1{
    display: none;
}

.banner {
  background: linear-gradient(90deg, #0a1a3a, #0d2c6c);
  color: #fff;
  padding: 40px 40px; /* menor altura */
  display: block;
}
.texto {
  max-width: 500px;
  margin-left: 0px;
}
.texto h1 {
  font-size: 33px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 15px;
   font-family: 'Poppins', sans-serif;
}

.texto h1 span {
  color: #3b82f6; /* azul destaque */
}

.subtexto {
  color: #cbd5e1;
  margin-bottom: 10px;
     font-family: 'Poppins', sans-serif;
}

/* BLOCO DO LINK */
.link-box {
  display: inline-block;
  background: #1d4ed8;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
  margin: 10px 0;
     font-family: 'Poppins', sans-serif;
}

/* TEXTO PEQUENO */
.texto small {
  display: block;
  color: #94a3b8;
  margin-bottom: 20px;
     font-family: 'Poppins', sans-serif;
}

/* CAIXA DE PREÇO */
.preco-box {
  border: 1px solid #2563eb;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 250px;
  margin-bottom: 20px;
  margin-left: 25px;
}

.preco-item {
  text-align: center;
}

.preco-item span {
  display: block;
  font-size: 15px;
  color: #cbd5e1;
}

.preco-box .preco-item strong {
  font-size: 38px;
  color: white;
   font-family: 'Poppins', sans-serif;
}

.preco-item small {
  display: block;
  font-size: 12px;
  color: #94a3b8;
}

/* SINAL DE + */
.plus {
  font-size: 22px;
  color: #cbd5e1;
}

/* BOTÃO */
.btn {
  display: inline-block;
  background: #22c55e;
  color: #fff;
  padding: 14px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
}

/* TEXTO FINAL */
.info {
  font-size: 12px;
  color: #94a3b8;
  font-family: 'Poppins', sans-serif;
}
.box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}
/* ÁREA DA IMAGEM */
.imagem {
  flex: 1;
  display: none;
  justify-content: flex-end;
  position: relative;

}

/* IMAGEM */
.imagem img {
  max-width: 550px;
  width: 100%;
  height: auto;
}

/* EFEITO DE LUZ (igual do banner profissional) */
.imagem::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59,130,246,0.4), transparent 70%);
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
}

/* GARANTE QUE A IMAGEM FIQUE NA FRENTE */
.imagem img {
     max-width: 700px; /* aumenta aqui */
  width: 100%;
  position: relative;
  z-index: 1;
}

.banner1{
    display: none;
}

.btn-whatsapp {
display: none;
}



.titulo-modelos{
    display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px; /* controla a distância entre h2 e p */
  width: 100%;
  padding-bottom: 10px;



}
.titulo-modelos h2{
text-align: center;
 font-family: 'Poppins', sans-serif;
 color:var(--azulescuro);
  margin-bottom: 5px; /* aproxima do p */
  margin-top: 10px;
  font-size: 18px;
}
.texto-modelos{
    color:var(--azulmedio);
}

.cards{
    width:100%;
    height: auto;

    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding-bottom: 10px;
}
.card{
width: 90%;
height: auto;
border-radius: 8px;
border: 1px solid #ccc;
margin-top: 10px;
background-color: white;
margin-left: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}
.card img{
    width: 100%;
    height: auto;
    border-radius: 10px;
}
.titulo-modelos p{
     font-family: 'Poppins', sans-serif;
     font-size: 12px;
     text-align: center;
       margin-top: 0; /* remove espaço extra */

}

 .cards2 {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px;
  }


  /* call */

.call{
        width: 100%;
        height: auto;

        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        padding-bottom: 10px;
}
.call-esquerda{
width: 100%;
height: 400px;




}
.box-call-esquerda{
 width: 80%;
 height: 350px;
 background-color: #ededed;
 border-radius: 10px;
 margin-left: auto;
 margin-right: auto;
 margin-top: 20px;
 padding-top: 10px;

}

.box-call-esquerda h2{
     font-family: 'Poppins', sans-serif;
     text-align: center;
     margin-top:10px;
     font-weight: bold;
     margin-bottom: 30px;


}
.box-call-esquerda p{
    font-family: 'Poppins', sans-serif;
    margin-left: 80px;
}

.azul{
    color: #94a3b8;
}


.box-passos {
    max-width: 420px;
    margin: auto;
    padding: 25px;
    border-radius: 15px;
    background: #f7f7f7;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.box-passos h2 {
    text-align: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.box-passos h2 span {
    color: #3b5bdb;
    font-weight: 700;
}

.passo {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

.numero {
    min-width: 35px;
    height: 35px;
    background: #3b5bdb;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.texto strong {
    display: block;
    font-size: 14px;
    margin-bottom: 3px;
}

.texto p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

.btn-whatsapp {
    display: block;
    text-align: center;
    background: #25D366;
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    transition: 0.3s;
}

.btn-whatsapp:hover {
    background: #1ebe5d;
}

.call-direita{
width: 100%;
height: 400px;

}

.card-oferta {
    max-width: 500px;
    margin: auto;
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* topo azul */
.topo {
    background: linear-gradient(90deg, #3b5bdb, #5f3dc4);
    color: #fff;
    text-align: center;
    padding: 10px;
    font-weight: 600;
    font-size: 14px;

}

/* conteúdo */
.conteudo-oferta {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
}

/* preço */
.preco {
    width: 50%;
}

.preco .de {
    font-size: 13px;
    color: #666;
}

.preco .de span {
    text-decoration: line-through;
    color: #999;
}

.preco .por {
    margin-top: 5px;
    font-size: 14px;
}

.preco h2 {
    font-size: 36px;
    color: #3b5bdb;
    margin: 5px 0;
}

.preco .mes {
    font-size: 13px;
    color: #666;
}

.preco .extra {
    margin-top: 10px;
    font-size: 13px;
}

.preco .extra strong {
    color: #3b5bdb;
}

/* benefícios */
.beneficios {
    width: 50%;
}

.beneficios h4 {
    font-size: 14px;
    margin-bottom: 10px;
}

.beneficios ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.beneficios li {
    font-size: 13px;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

/* check verde */
.beneficios li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
}

/* botão */
.btn-oferta {
    display: block;
    margin: 15px;
    background: #25D366;
    color: #fff;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-oferta:hover {
    background: #1ebe5d;
}

/* duvidas */


.duvidas{
    width: 100%;
    height: auto;
    padding-bottom: 10px;
}
.duvidas h2{
     font-family: 'Poppins', sans-serif;
     text-align: center;
     margin-bottom: 20px;
}
.cards-duvidas{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding-bottom: 10px;

}
.card-duvidas{
    width: 90%;
    height: auto;
    border: 1px solid #ccc;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    margin-left: 10px;
    padding-bottom: 5px;
    margin-bottom: 10px;

}
.icone-duvidas{
width: 20%;
height: 200px;
}

.icone-duvidas i{
   min-width: 35px;
    height: 35px;
    background: #3b5bdb;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-top: 10px;
    margin-left: 30px;
}
.texto-duvidas{
    width: 80%;
    height: 200px;
}
.card-duvidas h2{
    font-size: 18px;
      font-family: 'Poppins', sans-serif;
      margin-top: 10px;
}
.card-duvidas p{
    font-size: 14px;
      font-family: 'Poppins', sans-serif;
      text-align: left;
      margin-right: 10px;
}



.rodape{
    width: 100%;
    height: auto;
    background-color: #081C3A;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 10px;
}
.card-rodape{
    width: 90%;
    height: auto;
    padding-bottom: 10px;
    margin-left: 10px;
    margin-top: 10px;
}

.card-rodape img{
    width: 20%;
    height: auto;
    margin-left: 10px;
    margin-top: 10px;
}
.card-rodape h2{
    color: white;
    font-family: Arial, Helvetica, sans-serif;
}
.card-rodape p{
color: white;
font-family: Arial, Helvetica, sans-serif;
font-size: 18px;
margin-top: 10px;

}
.card-rodape a{
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: none;
}
.card-rodape ul{
    list-style: none;
    margin-top: 10px;
}
.card-rodape li{
    width: 100%;
    height: 30px;
}
.titulo-clientes h2{
      font-family: 'Poppins', sans-serif;
      text-align: center;
      font-size: 25px;
      margin-bottom: 20px;
}


/* formulario de contato*/


.contato{
    width: 100%;
    height: auto;

    display: flex;
    justify-content: center;
    padding-bottom: 10px;


}
.box-contato{
    width: 95%;
    height: auto;
    background-color: #1a1a1a;
    border-radius: 10px;
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 10px;
}
.card-contato{
    width: 100%;
    height: auto;
    margin-left: 10px;
    padding-bottom: 10px;


}
.card-contato h2{
color: white;
font-family: 'Poppins', sans-serif;
margin-top:10px;
}
.card-contato h3{
color:white;
font-family: 'Poppins', sans-serif;
margin-top:10px;
}
.card-contato p{
color:white;
font-family: 'Poppins', sans-serif;
margin-top:10px;
}
.card-contato img{
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 20px;
}
.textomenor{
    font-size: 15px;
    margin-bottom: 5px;
}
.card-contato input{
    width: 95%;
    height: 30px;
    border-radius: 10px;
    border: none;
    margin-bottom: 5px;
    padding-left: 10px;
    color: #807e7e;
}

.card-contato textarea{
    width: 92%;
    height: 70px;
    border-radius: 10px;
     color: #807e7e;
     padding: 10px;
}
.card-contato button{
    background-color: #16a34a;
    color: white;
    width: 98%;
    height: 30px;
    border-radius: 10px;
    border: none;
}

.linha{
    display: flex;
    gap: 15px;
    margin-bottom: 3px;

    width: 98%;
}


.redessociais-rodape ul{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex; /* Exibe os itens em linha (horizontal) */

}
.redessociais-rodape li{
 margin: 0;
  padding: 0;
  width: 40px;

}
.redessociais-rodape li a{
  display: block;
  padding: 10px 10px;
  color: white;
  text-decoration: none;
  font-family: Arial, sans-serif;
  transition: background-color 0.3s ease;
  font-size: 30px;
}

.redessociais-rodape li a:hover{
border: none;
}


.whatsapp{
width: 70px;
height: 70px;
position: fixed;
bottom: 80px;
right: 40px;
border-radius: 50%;
background-color: #16a34a;
line-height: 70px;
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.45);
display: flex;
}
.whatsapp img{
    width: 100%;
    height: auto;


}
}
