/*--------------*\
      CHAMADA
\*--------------*/
.chamada{
  margin-top: 100px;
  font-size: 1.6rem; /* 1.6 x 10px = 16px */
  text-align: center;
}

.chamada__titulo {
  margin: 0;

  color: #fff;

  font-family: Fraunces, serif;
  font-style: normal;
  font-size: 2.375em;  /* 54px / 16px = 3.375em */
  line-height: 1.2;     /* espacamento da quebra de linha entre um texto e o restante dele*/
  text-shadow: 1px 1px #313131;  /* Sombreamento */
}

.chamada__subtitulo {
  margin: 60px 0;

  color: #fff;
  font-family: Fraunces, serif;
  font-size: 1.4em;
  line-height: 1.6;
}



/*--------------*\
    DEPOIMENTO
\*--------------*/
.depoimento { 
  font-size: 2.2rem;
}

.depoimento > blockquote{
  position: relative;
  margin: 0;
  padding: 0 60px;  

  text-align: center;
  font-size: 1em;
}

.depoimento__autor{
  margin-top: 40px;

  text-align: center; 
  font-size: 0.7272em;
}

/*POSICIONAMENTO DAS ASPAS NO DEPOIMENTO*/
.depoimento > blockquote::before{
  position: absolute;
  top: -0.3522em;  /* -62/176= -0.3522 o 176 e pixel do pai.*/
  left: 0px;

  color: #ccc;
  content: "\201C";
  font-size: 8em; /* 176px (PAI) */
}

.depoimento__autor > img{
  border-radius: 50%;
}

.depoimento__autor > p{
  margin-top: 10px;

}

@media (min-width: 992px){
  .depoimento{
    padding-left: 15%;
    padding-right: 15%;

    font-size: 2.8rem;
  }
}


/*--------------*\
      BOTAO
\*--------------*/
  .botao {
      display: inline-block;
      padding: 0.8em 1.2em;

      background-color: #bbb;
      color: #fff;
      
      line-height: normal;
      text-decoration: none;
  }

  .botao:hover, .botao:focus{
    background-color: #aaa;
    color: #fff;

    text-decoration: none;
  }

  /*------------------------*\
        MODIFICADOR BOTAO
  \*------------------------*/
    .botao--assinar, .botao--login{
      border-radius: 10px;

      background-color: #EE7600;
    }

    .botao--assinar:hover, .botao--assinar:focus,
    .botao--login:hover, .botao--login:focus{
      background-color: #2c2104;
    }

  .botao--principal, .botao--laranja {
    padding: 12px 40px 12px 40px;
    border: none;
    border-radius: 8px;
    cursor: pointer;

    background-color: #EE7600;

    color: #fff;
    font-size:0.8142em ;

  /* animação de pulsar */
  animation: pulse 1.8s infinite;

  /* transição suave quando passa o mouse */
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
  }

/* quando passa o mouse */
  .botao--principal:hover, .botao--principal:focus,
  .botao--laranja:hover, .botao--laranja:focus {
    background-color: #fff;
    color: #000;
    transform: scale(1.1); /* cresce mais do que o pulso normal */
  }

/* animação de pulsar */
@keyframes pulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.05); } /* pulsar de leve */
  100% { transform: scale(1); }
}


/*---------------------*\
      NAVEGACAO MENU
\*---------------------*/
.navegacao{
}

.navegacao__menu{
  float: right;
}

/*--------------------------*\
      BOTAO CHAVEADOR MENU
\*--------------------------*/
.botao-chaveador {
  width: 40px;
  height: 40px;
  border: none;
  margin-top: 26px;
  margin-right: 40px;
  border-radius: 50%; /* deixa o botão redondo */
  
  background-color: #2787F5; /* fundo verde estilo WhatsApp */
  background-image: url("../Imagens/bar_preto2.png"); /* caminho da imagem */
  background-repeat: no-repeat;
  background-size: 60%; /* ajusta o tamanho da imagem dentro do botão */
  background-position: center; /* centraliza a imagem */

  cursor: pointer;
  outline: none;
  padding: 0;

  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* sombra leve */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.botao-chaveador:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* Esconde no desktop */
@media (min-width: 992px) {
  .botao-chaveador {
    display: none;
  }
}

/*--------------------------*\
            MENU
\*--------------------------*/
.menu{
  margin: 0;

  font-size: 1.6rem;

  list-style: none;

}

.menu a {
  text-decoration: none;
  color: #fff;
  transition: color 0.3s ease;
}

.menu a:hover {
  color: #fb9e20; /* Cor desejada ao passar o mouse */
}


@media (max-width: 991px) {
  .menu {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 220px;
    padding: 30px 20px;
    background-color: #031f36; /* 💙 mesma cor do menu superior */
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    list-style: none;
    margin: 0;

    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 9999;
  }

  .menu.menu--exibindo {
    transform: translateX(0);
  }

  .menu__item {
    display: block;
    line-height: 2.8;
  }

  .menu a {
    text-decoration: none;
    color: #fff; /* texto branco visível */
    font-size: 1.8rem;
    font-weight: 500;
    transition: color 0.3s ease;
  }

  .menu a:hover {
    color: #fb9e20; /* cor de destaque ao passar o mouse */
  }

  /* Deixa o fundo do body escurecido quando o menu abre */
  body.menu-aberto::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9998;
  }
}

@media (max-width: 991px) {
  .menu {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

  .menu.menu--exibindo {
    transform: translateX(0);
  }
}

html, body {
  overflow-x: hidden; /* impede rolagem lateral */
}


@media(min-width: 992px){
  .menu a {
    text-decoration: none;

    list-style: none;
  }
  .menu__item{
    display: inline-block;
    padding-right: 20px;
  }

  .menu__item:last-of-type {
    padding-right: 0px;
  }

}

.navegacao--assinatura{
  text-align: center;
  margin-top: 20px;
}


/*---------------------*\
      Formulario
\*---------------------*/
.titulo-formulario{
  margin: 0 60px;
  margin-bottom: 40px;

  border-bottom: 1px solid #ccc;

  font-size: 2.6rem;
  font-weight: normal;
  color: #004b86;
}

/*---------------------*\
    Grupo Formulario
\*---------------------*/
.grupo-entrada{
  margin: 0 60px;
  margin-bottom: 15px;
}

.grupo-entrada > label{
  display: block;
  font-weight: bold;
}

/*---------------------*\
         CAMPO
\*---------------------*/
.campo{
  display: block;
  width: 100%;
  height: 2.8rem;

  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;

  font-size: 1.4rem;
}

/*---------------------*\
     BOTAO WHATSAPP
\*---------------------*/

.whatsapp-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  animation: pular 1.8s infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0.6;
}

.whatsapp-button img {
  width: 70px;
  height: 70px;
}

@keyframes pular  {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}


/* =============================== */
/* RESPONSIVO */
/* =============================== */

/* Tablets (até 991px) */
@media (max-width: 991px) {
  .whatsapp-button {
    width: 60px;
    height: 60px;
    bottom: 16px;
    right: 16px;
  }

  .whatsapp-button img {
    width: 60px;
    height: 60px;
  }
}

/* Celulares médios (até 768px) */
@media (max-width: 768px) {
  .whatsapp-button {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
  }

  .whatsapp-button img {
    width: 50px;
    height: 50px;
  }
}

/* Celulares pequenos (até 480px) */
@media (max-width: 480px) {
  .whatsapp-button {
    width: 50px;
    height: 50px;
    bottom: 12px;
    right: 12px;
  }

  .whatsapp-button img {
    width: 50px;
    height: 50px;
  }
}


/*----QUEM SOMOS|SOBRE----*\
\*------------------------*/

.sobre__titulo {
  font-family: Poppins;
  font-size: 2em;
  color: #EE7600;
  text-align: center;
  text-shadow: 1px 1px #8B4500;
  line-height: 0.9;
}

.sobre__subtitulo {
  font-family: "DM Sans", sans-serif;
  font-size: 3.1rem;
  color: #363636;
  text-align: center;
  line-height: 0.9;
}
.sobre__texto {
  font-family: "DM Sans", sans-serif;
  font-size: 1.4em;
  color:  #363636;
  font-style: normal;
  text-align: center;
  line-height: 1.6;
}

/*----MISSAO|VISAO|VALOR----*\
\*--------------------------*/

.item-mvv {
  border-radius: 12px;
  padding: 20px;
  width: 300px;

  background-color: #031f36;

  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s;
}

.item-mvv:hover{
  transform: translateY(-5px);
}

.item-mvv h2 {
  color: #EE7600;
  margin-top: 15px;
  font-size: 1.6em;
}

.item-mvv p {
  font-size: 1.3em;
  margin-top: 10px;
  color: #fff;
}

.imagem-mvv {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

/* Responsivo para celular */
@media (max-width: 768px) {
  .bloco-mvv {
    flex-direction: column;
    align-items: center;
  }

  .item-mvv {
    width: 90%;
  }
}


/* SERVIÇOS*\
\*---------*/

.servicos__titulo {
  font-size: 2.2em;
  margin-bottom: 20px;
}

.servicos__subtitulo {
  font-size: 1.2em;
  margin-bottom: 60px;
  color: #ccc;
}

.servicos__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.servico {
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  padding: 30px;
  text-align: left;
}

.servico__icone {
  font-size: 2em;
  margin-bottom: 15px;
}

.servico__titulo {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #ffa500; /* cor de destaque */
}

.servico__texto {
  font-size: 1em;
  margin-bottom: 20px;
  line-height: 1.6;
}


/* Responsivo */
@media (min-width: 768px) {
  .servicos__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}



/*SERVIÇOS DESCRIÇÃO*/
.conteudo_site {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;              /* espaço entre imagem e texto */
  max-width: 1200px;
  margin: 0 auto;
}

.img_site {
  margin-left: 60px;
  max-width: 500px;
  width: 400px;
  height: 600px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.img_bot{
  margin-left: 60px;
  max-width: 400px;
  width: 400px;
  height: 400px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.texto_site, .texto_ebook {
  flex: 1; /* ocupa o espaço restante */
}

.texto_site h2, .texto_ebook h2 {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #0033cc;
  text-align: center;
}

.texto_site p {
  font-size: 2.1rem;
  line-height: 1.6;
  text-align: center;
}

.texto_ebook p {
  font-size: 1.8rem;
  line-height: 1.6;
  text-align: left;
}

.texto_ebook strong {
  font-size: 2.2rem;
}

.servico__icone img {
  width: 50px;   /* tamanho ajustável */
  height: auto;
  margin-bottom: 15px;
}

.conteudo_site {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Desktop → texto primeiro, imagem depois */
.texto_site { order: 1; }
.img_bot { order: 2; }

/* Mobile → inverter */
@media (max-width: 768px) {
  .conteudo_site {
    flex-direction: column; /* empilha um em cima do outro */
  }
  .texto_site { order: 2; }
  .img_bot { order: 1; }
  .img_bot {
    max-width: 100%; /* garante que a imagem não estoure a tela */
    height: auto;
  }
}


@media (max-width: 768px) {
  .conteudo_site {
    flex-direction: column; /* no celular fica um embaixo do outro */
    text-align: center;
  }

  .img_site, .img_bot {
    max-width: 90%;
  }

  .texto_site {
    margin-top: 20px;
  }
}


/* CONTATO*\
\*---------*/
.contato-content {
  flex: 1;
  background: #2b0f0b;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.contato-box {
  max-width: 500px;
  width: 100%;
}

.contato-box h2 {
  color: #ff6600;
  margin-bottom: 10px;
}

.contato-box p {
  margin-bottom: 20px;
  line-height: 1.5;
}

form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.linha {
  display: flex;
  gap: 10px;
}

input, textarea {
  padding: 12px;
  border: none;
  border-radius: 5px;
  outline: none;
  font-size: 16px;
}

textarea {
  resize: none;
  height: 120px;
}

.btn-enviar {
  background: #ff6600;
  color: #fff;
  border: none;
  padding: 14px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-enviar:hover {
  background: #e65c00;
}

/* Responsivo */
@media(max-width: 900px) {
  .contato-section {
    flex-direction: column;
  }
  .contato-img {
    height: 250px;
  }
  .contato-content {
    padding: 20px;
  }
}


/*COOKIES*/

.cookie-box {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background-color: #121212;
  opacity: 0.9;
  transition: opacity 0.6s ease; /* permite fade-out */
  color: #fff;
  padding: 20px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  z-index: 9999;
  flex-wrap: wrap;
}

.cookie-content {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
}

.cookie-icon {
  font-size: 2rem;
 }

.cookie-box p {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.5;
}

.cookie-box a {
  color: #ffa500;
  text-decoration: underline;
}

.cookie-btn {
  background-color: #ffa500;
  color: #000;
  border: none;
  padding: 12px 20px;
  font-size: 1.3rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-btn:hover {
  background-color: #ff8c00;
}

@media (max-width: 600px) {
  .cookie-box {
    flex-direction: column;
    text-align: center;
  }

  .cookie-content {
    justify-content: center;
  }
}


/*RODAPE*/


.col {
  flex: 1;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Esquerda: Contato */
.col:nth-child(1) {
  align-items: flex-start;
  text-align: left;
}

/* Centro: Direitos */
.col:nth-child(2) {
  align-items: center;
  text-align: center;
}

/* Direita: Termos/Política */
.col:nth-child(3) {
  align-items: flex-end;
  text-align: right;
}

.col a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.col a:hover {
  color: #ffffff;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .container-rodape {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .col,
  .col:nth-child(1),
  .col:nth-child(2),
  .col:nth-child(3) {
    align-items: center !important;
    text-align: center !important;
  }
}

.grecaptcha-badge { 
  visibility: hidden; 
}
