/* ==============================
   Fonte global e fundo contínuo
============================== */
body {
    font-family: 'Open Sauce One', sans-serif;
    margin: 0;
    padding: 0;
    color: #fff;
    background: #fff;
}

/* ==============================
   Estrutura geral
============================== */
.section {
    padding: 40px 20px;
    display: flex;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 1000px;
}

/* ==============================
   Cabeçalho e rodapé
============================== */
.header, .footer {
    text-align: center;
    padding: 20px 0;
}

.logo {
    height: 40px;
}

.footer p {
    font-size: 14px;
    opacity: 0.8;
}

/* ==============================
   SEÇÃO APRESENTAÇÃO (COM VÍDEO)
============================== */
.apresentacao {
    position: relative;
    padding-top: 30px;
    padding-bottom: 100px;
    color: #fff;
    overflow: hidden;
    height: 100vh;
}

/* === Fundo em vídeo === */
.video-fundo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover; /* cobre toda a área da seção */
    z-index: 0;
    opacity: 0.9; /* leve escurecimento para o texto se destacar */
}

/* === Container de conteúdo === */
.apresentacao-container {
    position: relative;
    z-index: 2; /* texto acima do vídeo */
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.logooficial{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 40px;
}

.logooficial p{
  font-size: 20px;
  margin-left: 20px;
}

/* === Texto (sem alterar posição) === */
.apresentacao .texto {
    flex: 1 1;
    z-index: 3;
}

/* === Remove imagem do carretel === */
.apresentacao .imagem {
    display: none;
}

/* === Etiqueta === */
.apresentacao .etiqueta {
    background: rgba(51, 51, 51, 0.85);
    display: inline-block;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 14px;
    margin-bottom: 15px;
}

/* === Títulos === */
.apresentacao h1 {
    font-family: 'Open Sauce One', sans-serif;
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 15px;
    color: #fff;
}

.apresentacao .destaque {
    font-weight: 700;
}

/* === Descrição === */
.apresentacao .descricao {
    font-family: 'Open Sauce One', sans-serif;
    font-size: 1rem;
    color: #e0e0e0;
    margin-top: 50px;
    margin-bottom: 50px;
    max-width: 420px;
}

/* === Botão === */
.btn-consultoria {
    background: #ffffff;
    color: #000;
    border: none;
    padding: 20px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-consultoria a{
  text-decoration: none;
  color: #121212;
}

.btn-consultoria:hover {
    background: #e5e5e5;
    transform: translateY(-1px);
}

/* ==============================
   TABLET
============================== */
@media screen and (max-width: 1024px) {
    .apresentacao {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .apresentacao-container {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
        gap: 24px;
    }

    .btn-consultoria {
        width: 100%;
        padding: 18px 0;
        font-size: 1rem;
    }
}

/* ==============================
   MOBILE
============================== */
@media screen and (max-width: 768px) {
    .apresentacao {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .apresentacao-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .apresentacao .etiqueta {
        font-size: 10px;
        text-align: center;
    }

    .apresentacao h1 {
        font-size: 2rem;
    }

    .apresentacao .descricao {
        width: 100%;
        margin-top: 24px;
        margin-bottom: 24px;
    }

    .btn-consultoria {
        width: 100%;
        padding: 16px 0;
        font-size: 1rem;
        margin-top: 60px;
    }
}


/* ==============================
   SEÇÃO O PROBLEMA / CONSEQUÊNCIAS
============================== */
.problema {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    font-family: 'Inter', sans-serif;
}

.problema .titulo-centro {
    background: #d0d4db;
    color: #000;
    padding: 8px 24px;
    font-size: 10px;
    margin-bottom: 60px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.problema-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.problema .conteudo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    text-align: left;
}

.problema .imagem {
    flex: 1 1 400px;
    text-align: left;
}

.problema .imagem img {
    max-width: 100%;
    height: auto;
}

.problema .texto {
    flex: 1 1 500px;
    color: #121212;
    font-size: 18px;
    line-height: 1.6;
}

.problema .texto p + p {
    margin-top: 20px;
}

@media screen and (max-width: 768px){
  .problema .texto p{
    text-align: justify;
  }
}

/* ==============================
   GRADE DE CONSEQUÊNCIAS - DESKTOP
============================== */
.grade-consequencias {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto auto;
    gap: 10px;
    width: 80%;
    max-width: 1000px;
    margin: 0 auto;
}

.bloco {
    padding: 120px 30px 35px 30px;
    color: #121212;
    font-size: 18px;
    line-height: 1.4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease, outline 0.3s ease;
}

/* Efeito hover */
.bloco:hover {
  transform: scale(1.03) translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

/* Blocos individuais */
.bloco1 {
    background: #f7f7f7;
    grid-column: 1;
    grid-row: 1;
    text-align: left;
    display: flex;
    align-content: flex-start;
    justify-content: center;
    align-items: flex-start;
}

.bloco1 p{
  text-align: left;
  margin-left: 0px;
  padding-left: 0px;
}

.coluna-baixo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    grid-column: 1;
    grid-row: 2;
}

.bloco2 {
    background: #f7f7f7;
}

.bloco3 {
    background: #f7f7f7;
    color: #121212;
}

.bloco4 {
    background: #f7f7f7;
    grid-column: 2;
    grid-row: 1 / span 2;
    display: flex;
    align-items: end;
    justify-content: flex-end;
}

/* ==============================
   TABLET - 1024px
   (blocos um abaixo do outro, largura total)
============================== */
@media screen and (max-width: 1024px) {
    .grade-consequencias {
        display: flex;
        flex-direction: column;
        width: 90%;
        gap: 16px;
    }

    .coluna-baixo {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .bloco {
        width: 100%;
        padding: 80px 24px 40px 24px;
        font-size: 16px;
    }

    .bloco4 {
        grid-column: auto;
        grid-row: auto;
    }
}

/* ==============================
   MOBILE - até 768px
   (layout idêntico à imagem que você mandou)
============================== */
@media screen and (max-width: 768px) {
    .grade-consequencias {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        align-content: center;
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
        padding: 0 20px;
        box-sizing: border-box;
        gap: 16px;
    }

    .coluna-baixo {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .bloco {
        width: 300px;
        padding: 70px 20px 35px 20px;
        font-size: 15px;
        line-height: 1.5;
        text-align: center;
    }
    .bloco1 p{
        text-align: center;
    }
}


/* === SEÇÃO SOLUÇÕES === */
.solucoes {
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
  color: #fff;
  font-family: 'Open Sauce One', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;         /* evita scroll lateral */
  margin: 0 auto;
  padding: 80px 0;            /* espaçamento vertical padrão */
}

.solucoes-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}

.solucoes .titulo-centro {
    background: #d0d4db;
    color: #000;
    padding: 8px 24px;
    font-size: 10px;
    margin-bottom: 60px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.conteudo-solucoes {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1000px;
  width: 100%;
}

/* IMAGEM */
.imagem-solucoes {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.imagem-solucoes img {
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: cover;
  display: block;
}

/* TEXTO */
.texto-solucoes {
  flex: 1;
  background: #f7f7f7;
  padding: 65px 40px;
  color: #121212;
  font-family: 'Open Sauce One', sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.5;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: justify;
  box-sizing: border-box;
}

.texto-solucoes p + p {
  margin-top: 20px;
}

/* ==============================
   TABLET - até 1024px
============================== */
@media screen and (max-width: 1024px) {
  .solucoes {
    padding: 60px 0;
  }

  .conteudo-solucoes {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .imagem-solucoes img {
    max-width: 90%;
    height: auto;
  }

  .texto-solucoes {
    width: 90%;
    padding: 50px 30px;
    font-size: 16px;
  }
}

/* ==============================
   MOBILE - até 768px
============================== */
@media screen and (max-width: 768px) {
  .solucoes {
    padding: 60px 16px;     /* respiro lateral mobile */
    align-items: center;
    justify-content: flex-start;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
  }

  .solucoes-container {
    gap: 40px;
    padding: 0;
    width: 100%;
  }

  .conteudo-solucoes {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
  }

  .imagem-solucoes {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .imagem-solucoes img {
    width: 100%;
    max-width: 100%;
    height: auto;
    outline: none;
  }

  .texto-solucoes {
    width: 100%;
    padding: 30px 20px 40px 20px;
    font-size: 15px;
    line-height: 1.6;
    outline: none;
  }

  .texto-solucoes p {
    text-align: left;
  }
}



/* === SEÇÃO SOLUÇÃO IDEAL === */
.solucao-ideal {
  color: #121212;
  text-align: center;
  font-family: 'Open Sauce One', sans-serif;
}

.solucao-ideal-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.solucao-ideal .titulo-centro {
      background: #d0d4db;
    color: #000;
    padding: 8px 24px;
    font-size: 10px;
    margin-bottom: 60px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.texto-intro h2 {
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Open Sauce One', sans-serif;
  margin-bottom: 20px;
  text-align: left;
}

.texto-intro{
  margin-left: 0;
  width: 100%;
}

.texto-intro p {
  font-size: 18px;
  color: #121212;
  line-height: 1.6;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

.grade-beneficios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 10px;
  margin-top: 30px;
  width: 100%;
  max-width: 1000px;
}

.cartao {
  background: #f7f7f7;
  padding: 50px 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, outline 0.3s ease;
}

/* === ÍCONES NOS CARTÕES === */
.cartao ion-icon {
  font-size: 35px;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

/* Esconde os ícones "cheios" (sem outline) por padrão */
.cartao ion-icon[name]:not([name*="outline"]) {
  display: none;
  font-size: 35px; /* mantém consistência */
  margin-bottom: 10px;
}

/* Estilos gerais do cartão */
.cartao {
  transition: transform 0.3s ease, box-shadow 0.3s ease, outline 0.3s ease;
}

.cartao:hover {
  transform: scale(1.05) translateY(-6px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.4);
}

/* Ao passar o mouse, muda a cor de todos os ícones */
.cartao:hover ion-icon {
  color: #121212;
}

/* Oculta os ícones com "outline" no hover */
.cartao:hover ion-icon[name*="outline"] {
  display: none;
}

/* Mostra os ícones "cheios" no hover */
.cartao:hover ion-icon[name]:not([name*="outline"]) {
  display: inline-block;
  font-size: 35px; /* garante tamanho */
  margin-bottom: 10px;
}


.cartao img {
  height: 80px;
  margin-bottom: 20px;
}

.cartao p {
  font-size: 16px;
  color: #121212;
  line-height: 1.4;
  text-align: left;
  font-family: 'Open Sauce One', sans-serif;
  font-weight: 300;
  margin-bottom: 0px;
}

/* === SEÇÃO BENEFÍCIOS === */
.beneficios {
  color: #fff;
  font-family: 'Open Sauce One', sans-serif;
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.titulo-centro {
    background: #d0d4db;
    color: #000;
    padding: 8px 24px;
    font-size: 10px;
    margin-bottom: 60px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.beneficios-container {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 50px;
  background: #f7f7f7;
  padding: 60px 40px; 
}

.beneficios-texto {
  flex: 1;
  min-width: 280px;
  text-align: left;
}

.beneficios-texto h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #121212;
}

.beneficios-texto p {
  font-size: 18px;
  font-family: 'Open Sauce One', sans-serif;
  font-weight: 300;
  color: #121212;
  line-height: 1.5;
}

.beneficios-menu {
  position: relative; /* Necessário para o ::before */
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
  flex: 1;
  flex-wrap: wrap;
  border-radius: 15px; /* ou o raio que quiser */
}

.beneficio-item {
  background: rgba(255, 255, 255, 0.1);
  color: #121212;
  border: none;
  padding: 30px 20px;
  font-size: 20px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 0.5px solid #d0d4db;
  position: relative;
  z-index: 1;
}

.beneficio-item ion-icon{
    margin-right: 10px;
}

.beneficio-item img {
  height: 20px;
  margin-right: 10px;
  opacity: 0.9;
}

.beneficio-item:hover {
  background: rgba(255, 255, 255, 0.15);
}

.beneficio-item.ativo {
  background: rgba(255, 255, 255, 0.2);
  border-color: #121212;
}

.indicador {
  height: 10px;
  width: 10px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  margin-left: 10px;
}

.indicador.ativo {
  background: #000000;
}

@media (max-width: 900px) {
  .beneficios-container {
    flex-direction: column;
    gap: 50px;
    text-align: center;
  }
  .beneficios-texto {
    text-align: center;
  }
}

/* === SEÇÃO CONTATO === */
.contato {
  display: flex;
  flex-wrap: wrap;
  color: #121212;
  font-family: 'Open Sauce One', sans-serif;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  justify-content: center;
  align-items: flex-start;
  box-sizing: border-box;
  padding: 80px 0;
}

.contato .titulo-centro {
  margin-bottom: 80px;
  text-align: center;
}

.contato-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 80px;
  flex-wrap: wrap;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

/* === TEXTO === */
.contato-texto {
  flex: 1;
  min-width: 280px;
  max-width: 450px;
}

.contato-texto h2 {
  font-size: 2rem;
  line-height: 1.3;
  font-family: 'Open Sauce One', sans-serif;
  margin-bottom: 25px;
  font-weight: 300;
}

.contato-texto p {
  color: #121212;
  font-size: 17px;
  line-height: 1.5;
  margin-bottom: 30px;
  font-family: 'Open Sauce One', sans-serif;
  font-weight: 300;
}

.botao-contato:hover {
  transform: scale(1.05);
}

/* === FORMULÁRIO === */
.contato-form {
  position: relative;
  flex: 1;
  min-width: 320px;
  max-width: 500px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  z-index: 1;
  box-sizing: border-box;
}


/* === CAMPOS === */
.form-campo {
  background: #e4e8eb;
  padding: 20px;
  margin-bottom: 18px;
  transition: 0.3s ease;
}

.form-campo:hover {
  transform: scale(1.02);
}

/* === INPUTS === */
.form-campo input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  font-size: 17px;
  color: #121212;
  padding: 10px 0;
  outline: none;
  transition: 0.3s ease;
}

.form-campo input::placeholder {
  color: #121212;
}

.form-campo input:focus {
  border-bottom: 1px solid #313131;
}

/* === BOTÃO DE ENVIO === */
.botao-enviar {
  width: 100%;
  margin-top: 10px;
  background: #12262d;
  color: #fff;
  border: none;
  padding: 26px 0;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.botao-enviar:hover {
  background: #000;
  transform: scale(1.03);
}

/* ==============================
   TABLET (até 1024px)
============================== */
@media screen and (max-width: 1024px) {
  .contato {
    flex-direction: column;
    align-items: center;
    padding: 60px 0;
  }

  .contato-container {
    flex-direction: column;
    gap: 50px;
    align-items: center;
  }

  .contato-texto {
    text-align: center;
    max-width: 600px;
  }

  .contato-form {
    max-width: 600px;
    padding: 40px 25px;
  }
}

/* ==============================
   MOBILE (até 768px)
============================== */
@media screen and (max-width: 768px) {
  .contato {
    flex-direction: column;
    align-items: center;
    padding: 50px 16px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .contato .titulo-centro {
    margin-bottom: 50px;
  }

  .contato-container {
    flex-direction: column;
    gap: 40px;
    width: 100%;
    padding: 0;
  }

  .contato-texto {
    width: 100%;
    text-align: left;
  }

  .contato-texto h2 {
    font-size: 1.6rem;
  }

  .contato-texto p {
    font-size: 15px;
  }

  .botao-contato {
    width: 100%;
    padding: 14px 0;
    font-size: 15px;
  }

  .contato-form {
    width: 100%;
    padding: 30px 20px;
    border-radius: 16px;
  }

  .form-campo {
    padding: 16px;
  }

  .form-campo input {
    font-size: 15px;
  }

  .botao-enviar {
    padding: 26px 0;
    font-size: 15px;
  }
}




/* === RODAPÉ === */
.rodape {
  background: #e5e5e5;
  color: #000;
  text-align: center;
}

.rodape-conteudo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.logooficial.rodap{
  margin-bottom: 0px;
}

.rodape img {
  height: 30px;
}

@media (max-width: 900px) {
  .contato-container {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }

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

  .botao-contato {
    margin: 0 auto;
    display: block;
  }
}
