/* Estilos gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Unbounded", sans-serif;
    background-image: url(../images/);
}


body {
    background: white;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

.interface {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4%;
    width: 100%;
}

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

/* Estilo do header */
header {
    width: 100%;
    padding: 20px 0;
    background: transparent; /* Mantém a transparência */
    display: flex;
    justify-content: center; 
    align-items: center; 
    position: absolute; /* Em vez de fixed, usamos absolute */
    top: 0;
    left: 0;
    z-index: 1000;
    height: 240px; /* Set fixed height for header */
}

header .interface {
    display: flex;
    justify-content: center;
    align-items: center;
}

header .logo {
    display: flex;
    flex-direction: row;
    justify-items: center;
    align-items: center;
}

header .logo img {
    max-width: 350px;
    height: 200px;
}

/* Hamburger menu para mobile */
.menu-mobile {
    display: none;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 40px;
    z-index: 1100;
}

.menu-mobile div {
    width: 32px;
    height: 3px;
    background: white;
    margin: 6px 0;
    transition: 0.4s;
}

.mobile-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    padding-top: 70px;
    flex-direction: column;
    align-items: center;
    z-index: 1050;
}

.mobile-links a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    margin: 15px 0;
    transition: 0.3s;
}

.mobile-links a:hover {
    color: #f983e9;
}

.open .bar1 {
    transform: rotate(-45deg) translate(-8px, 6px);
}

.open .bar2 {
    opacity: 0;
}

.open .bar3 {
    transform: rotate(45deg) translate(-5px, -5px);
}

.mobile-links.active {
    display: flex;
}

/* Estilo da seção hero-site */
section.hero-site {
    background-image: url(../images/fundosite.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
    color: white;
    font-size: 20px;
    font-weight: lighter;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-site .interface {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    position: relative;
    padding-top: 100px; /* Add padding to push content down */
}

.hero-site .txt-hero {
    display: flex;
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    width: 100%;
    text-align: center;
}

.hero-site .txt-hero h1 {
    font-size: 2.9em;
    line-height: 62px;
    font-weight: 200;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #c6f1f7, #f983e9, #b877ff, #c2e9cd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    width: 100%;
}

.hero-site .txt-hero p {
    font-size: 28px;
    font-weight: 200;
    line-height: 40px;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #c6f1f7, #f983e9, #b877ff, #c2e9cd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    width: 100%;
}

/* Alteração no span para forçar quebra de linha */
.hero-site .txt-hero h1 span,
.hero-site .txt-hero p span {
    display: block;
    margin-top: 10px;
}

/* Estilo para o botão */
.hero-site .btn-contato .movable-btn {
    width: 180px;
    height: 50px;
    background-color: transparent;
    border-top: 1px solid #c6f1f7;
    border-bottom: 1px solid #f983e9;
    border-left: 1px solid #b877ff;
    border-right: 1px solid #c2e9cd;
    border-radius: 20px;
    color: #fff;
    cursor: pointer;
    font-size: 17px;
    font-weight: 200;
    margin-top: 20px;
    transition: all 0.5s ease;
}

.hero-site .btn-contato .movable-btn:hover {
    background: linear-gradient(135deg, #c6f1f7, #f983e9, #b877ff, #c2e9cd);
}

/* Estilo Problemas (agora inclui título da vantagem também) */
section.problemas{
    padding: 80px 0;
}

/* Título dentro de problemas */
.problemas .itens-conteiner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10%;
    margin-bottom: 60px;
}

.problemas .itens-conteiner .txt-itens h3{
    font-size: 3.7em;
    line-height: 60px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #c6f1f7, #f983e9, #b877ff, #c2e9cd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    text-align: center;
    font-weight: 200;
}

.problemas .itens-conteiner .txt-itens p{
    font-size: 20px;
    text-align: center;
}

/* Estilo para a grid de problemas */
.container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding-top: 20px;
    padding-bottom: 40px;
}

/* Estilo das cartas de problemas */
.card-problemas {
    background-color: #f1efef;
    color: black;
    font-size: 17px;
    padding: 25px;
    height: auto;
    min-height: 200px;
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 10px;
    transition: background 0.8s ease-in-out;
    cursor: pointer;
    text-align: center;
}

.card-problemas:hover {
    background: url('../images/fundosite.png') no-repeat center center/cover;
    background-size: cover;
    color: #fff;
}

/* Estilo da seção soluções */
/**.solucoes {
    padding: 80px 0;
    background: #fff;
}

.solucoes h2 {
    font-size: 3.2em;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #c6f1f7, #f983e9, #b877ff, #c2e9cd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 200;
}

.solucoes p {
    text-align: center;
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 40px;
}

.solucoes .flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.solucoes .img-port {
    width: 280px;
    height: 280px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.5s;
}

.solucoes .img-port:hover {
    transform: scale(1.05);
}

.solucoes .overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: height 0.5s;
    text-align: center;
    padding: 0 10px;
}

.solucoes .img-port:hover .overlay {
    height: 100%;
}**/

/* Sobre */
/*
.sobre {
    padding: 40px 0;
    background-image: url(../images/fundosite.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 100vh; 
    height: auto;
}

.sobre .container {
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    text-align: center;
    padding: 40px 0;  
}

.sobre .txt-sobre {
    flex: 1;
    width: 100%; 
    margin-bottom: 20px; 
}

.sobre .txt-sobre h2 {
    font-size: 55px;
    margin-bottom: 20px;
    color: #fff;

    background: linear-gradient(135deg, #c6f1f7, #f983e9, #b877ff, #c2e9cd);
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
    text-decoration: none;
    line-height: 42px;
    font-weight: 200;
}

.sobre .txt-sobre p {
    font-size: 27px;
    color: #fff;
    font-weight: 200;
    line-height: 1.5;
    margin-bottom: 1px;

    text-align: center;
}

.sobre .img-sobre {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.img-card {
    flex: 1;
    width: 372px;
    min-width: 372px;
    max-width: 372px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.img-container {
    width: 372px;
    height: 496px;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.img-container img {
    width: 372px;
    height: 496px;
    object-fit: cover;
    border-radius: 20px;
}

.caption {
    width: 100%;
    color: white;
    text-align: center;
}

.caption p {
    margin: 5px 0;
    color: white;
    font-size: 1em;
    line-height: 1.4;
    text-align: center;
}

.caption p:first-child {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: white;
    font-weight: bold;
}

.caption p:last-child {
    font-size: 1em;
    line-height: 1.4;
    color: white;
    max-width: 300px;
    margin: 0 auto;
    text-align: center;
    padding: 0 10px;
}

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

    .sobre .img-sobre {
        flex-direction: column;
        gap: 30px;
    }

    .sobre .img-card img {
        width: 80%;
        max-width: 400px;
    }

    .sobre .txt-sobre {
        text-align: center;
    }
} */

/* Seção de depoimentos */
.depoimentos {
    padding: 5rem 2rem;
    background-color: #ffffff;
    color: #333333;
    text-align: center;
  }
  
  /* Título da seção */
  .depoimentos h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #222222;
  }
  
  /* Container que segura todos os depoimentos */
  .depoimento-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    width: 100%;
    margin: 0 auto;
  }
  
  /* Cada cartão de depoimento */
  .depoimento {
    background-color: #f2f2f2;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 2rem;
    min-height: auto; /* Changed from fixed min-height */
    height: auto;
    width: 100%;
    max-width: 400px;
    margin: 0 auto 30px; /* Added bottom margin */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
  }
  
  .depoimento:hover {
    transform: translateY(-5px);
  }
  
  /* Topo com a foto e o nome */
  .topo-depoimento {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 10px; /* Added margin */
  }
  
  /* Imagem */
  .user {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ccc;
  }
  
  /* Nome e cargo */
  .info h3 {
    font-size: 1.1rem;
    font-weight: bold;
    margin: 0;
    color: #111;
  }
  
  .info p {
    font-size: 0.9rem;
    color: #2c2c2c;
    margin: 0;
  }
  
  /* Estrelas */
  .stars {
    display: flex;
    gap: 0.3rem;
    margin-top: 0.5rem;
    padding-top: 5px;
    padding-bottom: 10px;
  }
  
  .stars img {
    width: 20px;
    height: 20px;
  }
  
  /* Subcard do depoimento (área da fala) */
  .conteudo-depoimento {
    background: url(../images/fundosite.png) no-repeat center center;
    background-size: cover;
    width: 100%;
    padding: 1.5rem;
    border-radius: 12px;
    font-size: 1rem;
    line-height: 1.6;
    color: #ffffff;
    flex: 1; /* Allow it to flex */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 120px; /* Minimum height */
  }
  
  /* Se quiser travar em uma altura fixa (alternativa):
     height: 160px;
     overflow: hidden;
  */
  
/* Container principal */
section.container-formulario {
    min-height: 80vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: #FFF;
    box-sizing: border-box;
}

/* Cardzão com fundo de imagem */
.cardzao-background {
    background: url(../images/fundosite.png) no-repeat center center;
    background-size: cover;
    width: 100%;
    max-width: 1300px;
    min-height: 600px;
    height: auto;
    border-radius: 30px;
    box-shadow: 0px 8px 32px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}

/* Texto principal (fora do cardzinho) */
.texto-introducao {
    text-align: center;
    margin-bottom: 30px;
    color: #fff;
    width: 100%;
    max-width: 600px;
}

.texto-introducao h2 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 15px;
}

.texto-introducao p {
    font-size: 18px;
    font-weight: 300;
    margin: 0 auto;
}

/* Cardzinho transparente com formulário */
.cardzinho {
    width: 100%;
    max-width: 600px;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Formulário */
.cardzinho form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.cardzinho input,
.cardzinho textarea {
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 16px;
    outline: none;
    backdrop-filter: blur(5px);
    box-sizing: border-box;
}

.cardzinho input::placeholder,
.cardzinho textarea::placeholder {
    color: #f1f1f1;
}

/* Make sure textarea doesn't break container */
.cardzinho textarea {
    resize: none;
    max-height: 150px;
    min-height: 100px;
}

/* Botão */
.btn-enviar {
    text-align: center;
    margin-top: 10px;
    width: 100%;
}

.btn-enviar input {
    width: 100%;
    height: 55px;
    font-size: 20px;
    font-weight: bold;
    background: linear-gradient(135deg, #8882e3, #df8381, #f8ae54);
    border: none;
    border-radius: 50px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-enviar input:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

/* Mini-card "Disponível agora" */
.status-disponivel {
    display: inline-block;
    background: rgba(255, 255, 255, 0.13);
    padding: 8px 16px;
    border-radius: 40px;
    font-size: 12px;
    font-weight: 50;
    color: #fff;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.027);
    max-width: 180px;
    width: auto;
}

/* Estilo Faq */
section.faq-sec {
    border-radius: 1px;
    background-color: #fff;
}

.faq-sec {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    min-height: 100vh;
    padding: 60px 20px;
}

.perguntas-frequentes {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.perguntas-frequentes h1 {
    font-size: 3rem;
    margin-bottom: 60px;
    font-weight: 400;
    text-align: center;
}

.perguntas-frequentes h1 span {
    color: #000; 
    font-weight: 400;
}

.faq {
    width: 100%;
    list-style: none;
}

.resposta span {
    display: block;
    margin-top: 8px;
    line-height: 2.3;
}


.faq li {
    width: 100%;
    margin-bottom: 15px;
    position: relative; /* Necessário para o ::before se posicionar corretamente */
}

.faq li label {
    padding: 15px 10px;
    font-size: 20px;
    background-color: #f1efef;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 200;
    position: relative;
}

.faq li label span {
    display: inline-block;
    padding: 8px;
    background-color: #111;
    color: #fff;
    border-radius: 8px;
    margin-right: 10px;
    font-weight: 200;
}

.faq li label::before {
    content: '+';
    font-size: 44px;        
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform .2s ease;
}

.faq input[type=radio] {
    display: none;
}

.faq .resposta {
    color: #000000;
    font-size: 20px;
    padding: 0px 14px;
    background-color: #f1efef;  
    line-height: 32px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s, padding .5s;
    font-weight: 200;
}

.faq input[type=radio]:checked + label + .resposta ,
.faq input[type=checkbox]:checked + label + .resposta {
  max-height: 400px;
  padding: 10px 10px 20px;
}

.faq input[type=radio]:checked + label span {
    background: #fff;
    color: black;
}

.faq input[type=radio]:checked + label::before ,
.faq input[type=checkbox]:checked + label::before {
  content: "-";
}


/* Add support for checkboxes */
.faq input[type=checkbox] {
    display: none;
}


.faq input[type=checkbox]:checked + label span {
    background: #fff;
    color: black;
}

/*Estilo Rodapé*/
footer{
    background-image: url(../images/fundosite.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

    height: 70vh;/*altura da tela que terá*/
    color: white;
    font-size: 20px;
    font-weight: lighter;
    color: #fff;
    padding: 40px;
}


footer .line-footer1{
    text-align: center;
    border-bottom: 2px solid #fff;
    padding-bottom: 20px;
}

footer .line-footer1 ::placeholder{
    font-size: 20px;
    color: white;
    align-items: center;
}

.line-footer1 h2{
    font-size: 3rem;
    text-transform: uppercase;
    font-weight: 610;
}

.line-footer1 p{
    font-size: 1.6rem;
    margin: 10px 0 20px 0;
    font-weight: 200;
}

footer.box-line-footer img{
    max-width: 20px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;


    height: 100vh;/*altura da tela que terá*/

    color: white;
    font-size: 20px;
    font-weight: lighter;
}

footer .line-footer2{
    padding: 40px 0;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid white;
    
}

footer .line-footer2 .box-line-footer{
    width: calc(100% / 6)
}

footer .box-line-footer img{
    max-width: 200px;
    margin-bottom: 10px;
}

.line-footer2 .box-line-footer h3{
    background: linear-gradient(135deg, #c6f1f7, #f983e9, #b877ff, #c2e9cd);
    -webkit-background-clip: text; /* Aplica o gradiente apenas ao texto */
    -webkit-text-fill-color: transparent; /* Torna o fundo do texto transparente */
    text-decoration: none;
    line-height: 30px;

    font-size: 25px;
    font-weight: 200;

    margin-bottom: 10px;
}

.line-footer2 .box-line-footer a{
    color: white;
    display: block;
    margin-bottom: 20px;
    text-decoration: none;
    font-size: .9rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.line-footer2 .box-line-footer .btn-redes a{
    display: inline;
}

.line-footer2 .box-line-footer .btn-redes button{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    background-color: transparent;
    border: 1px solid white;

    color: white;
    cursor: pointer;
    margin-right: 8px;
    transition: .2s;
}

.line-footer2 .box-line-footer .btn-redes button:hover{
    background: linear-gradient(135deg, #c6f1f7, #f983e9, #b877ff, #c2e9cd);
    border-color: #fff;

    
}

footer .line-footer3{
    padding-top: 30px;
    text-align: center;
}

.section-containe_2 {
  font-family: 'Arial', sans-serif;
  color: rgb(255, 255, 255);
  padding: 40px;
  width: 100%;
  box-sizing: border-box;
}

.section-containe_2 h1 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 10px;
  color: #000000;
}

.section-containe_2 p.subtitle {
  text-align: center;
  font-size: 16px;
  color: #000000;
  margin-bottom: 40px;
}

.section-containe_2 .container {
  display: flex;
  gap: 40px;
  margin: 0 auto;
  max-width: 1200px;
}

.section-containe_2 .card-section {
  flex: 70%;
  background: url(../images/fundosite.png) no-repeat center/cover;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.section-containe_2 .card-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.section-containe_2 .tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
}

.section-containe_2 .tab {
  flex: 1;
  height: 12px;
  background: #ffffff;
  border-radius: 6px;
  cursor: pointer;
}

.section-containe_2 .tab.active {
  /* background: linear-gradient(135deg, #c6f1f7, #f983e9, #b877ff, #c2e9cd); */
  background: linear-gradient(135deg,#547e9c, #5e82aa, #5d4e7a, #594665);
}

.section-containe_2 .topics {
  margin-top: 20px;
}

.section-containe_2 .topics h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.section-containe_2 .topics ul {
  list-style: none;
  padding: 0;
}

.section-containe_2 .topics ul li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.section-containe_2 .topics ul li::before {
  content: '✔️';
  position: absolute;
  left: 0;
  color: #00c8ff;
}

.section-containe_2 .side-menu {
  flex: 30%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.section-containe_2 .side-menu button {
  background: url(../images/fundosite.png) no-repeat center/cover;
  border: 1px solid #880088;
  color: white;
  padding: 15px;
  border-radius: 8px;
  text-align: left;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.section-containe_2 .side-menu button:hover {
  /* background: linear-gradient(135deg, #000000, #5a0932, #740757, #000000); */
  
  /* background: linear-gradient(135deg, #405687,  #6a6ca4, #7c6195, #925f7d); */

  
  background: linear-gradient(135deg, #293a5e,  #6a6ca4, #7c6195, #e94fa9);
}

.section-containe_2 .side-menu .active {
  /* background: linear-gradient(135deg, #000000, #5a0932, #740757, #000000); */
  /* background: linear-gradient(135deg, #405687,  #6a6ca4, #7c6195, #925f7d); */
  background: linear-gradient(135deg, #293a5e,  #6a6ca4, #7c6195, #e94fa9);
  color: white;
  font-weight: bold;
  border: none;
}

.section-containe_2 .objective, .section-containe_2 .results {
  flex: 1;
}

.section-containe_2 .objective h2, .section-containe_2 .results h2 {
  font-size: 22px;
  margin-bottom: 20px;
  text-align: left;
}

.section-containe_2 .results ul {
  list-style: none;
  padding: 0;
}

.section-containe_2 .results ul li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.section-containe_2 .results ul li::before {
  content: '🎯';
  position: absolute;
  left: 0;
  color: #000000;
}

.section-containe_2 .start-button {
  margin-top: 20px;
}

.section-containe_2 .start-button button {
  /* background: linear-gradient(135deg, #c6f1f7, #f983e9, #b877ff, #c2e9cd); */
  background: linear-gradient(135deg, #000000,  #000000, #293a5e,  #6a6ca4, #7c6195, #e94fa9);
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  color: rgb(255, 252, 252);
  font-size: 16px;
  cursor: pointer;
}

.section-containe_2 .bottom-section {
  margin-top: 40px;
  display: flex;
  color: rgb(0, 0, 0);
  gap: 20px;
  margin: 40px auto 0;
  max-width: 1200px;
}

/* Footer */
footer {
  background-image: url(../images/fundosite.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 70vh;
  height: auto;
  color: white;
  font-size: 20px;
  font-weight: lighter;
  padding: 40px;
}

footer .interface {
  max-width: 1200px;
  margin: 0 auto;
}

footer .line-footer2 {
  padding: 40px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px solid white;
}

footer .line-footer2 .box-line-footer {
  width: calc(100% / 6);
  min-width: 150px;
  margin-bottom: 20px;
}

/* RESPONSIVIDADE */
/* Tablets (horizontal) */
@media (max-width: 1024px) {
  /* Hero section adjustments */
  .hero-site .txt-hero h1 {
    font-size: 2.5em;
    line-height: 50px;
  }
  
  .hero-site .txt-hero p {
    font-size: 22px;
    line-height: 32px;
  }
  
  /* Other tablet adjustments */
  .section-containe_2 .container {
    flex-direction: column;
  }

  /* Reverse the order of flex items to show side-menu first */
  .section-containe_2 .container {
    display: flex;
    flex-direction: column-reverse;
  }
  
  .section-containe_2 .side-menu {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px; /* Add spacing between menu and card */
  }
  
  .section-containe_2 .bottom-section {
    padding: 0 20px;
  }
  
  /* Fix footer spacing on tablets */
  footer .line-footer2 .box-line-footer {
    width: calc(33.33% - 20px);
    padding-right: 15px;
  }
  
  /* Fix depoimento container on tablets */
  .depoimento-container {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  
  .depoimento {
    padding: 1.8rem;
  }
}

/* Tablets (vertical) e celulares grandes */
@media (max-width: 768px) {
  /* Hero section adjustments */
  .hero-site .txt-hero h1 {
    font-size: 2em;
    line-height: 40px;
    margin-top: 60px; /* Adjust for header */
  }
  
  .hero-site .txt-hero p {
    font-size: 18px;
    line-height: 28px;
  }
  
  /* Other tablet vertical adjustments */
  .section-containe_2 .side-menu {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 25px; /* Slightly reduce spacing on smaller screens */
  }
  
  .section-containe_2 .bottom-section {
    flex-direction: column;
  }
  
  /* Fix footer layout on smaller tablets */
  footer .line-footer2 .box-line-footer {
    width: calc(50% - 20px);
    padding-right: 15px;
    min-width: 200px;
  }
  
  /* Fix depoimento container on small tablets */
  .depoimento-container {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  
  .depoimento {
    padding: 1.5rem;
  }
  
  .conteudo-depoimento {
    padding: 1rem;
  }

  header {
    height: 160px; /* Reduce header height on smaller screens */
  }
  
  .hero-site .interface {
    padding-top: 80px; /* Adjust padding for smaller screens */
  }

  .img-card {
    width: 327px !important;
    min-width: 327px !important;
    max-width: 327px !important;
    flex: none !important;
  }

  .img-container {
    width: 327px !important;
    height: 436px !important;
    flex: none !important;
  }

  .img-container img {
    width: 327px !important;
    height: 436px !important;
    object-fit: cover;
    flex: none !important;
  }
}

/* Celulares */
@media (max-width: 480px) {
  /* Hero section adjustments */
  .hero-site .txt-hero h1 {
    font-size: 1.7em;
    line-height: 36px;
    margin-top: 40px;
  }
  
  .hero-site .txt-hero p {
    font-size: 16px;
    line-height: 24px;
  }
  
  /* Other mobile adjustments */
  .section-containe_2 {
    padding: 40px 15px;
  }
  
  .section-containe_2 .side-menu {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 20px; /* Further reduce spacing on mobile */
  }
  
  .section-containe_2 .card-section {
    padding: 20px 15px;
  }
  
  /* Fix footer on mobile */
  footer {
    padding: 30px 15px;
  }
  
  footer .line-footer2 .box-line-footer {
    width: 100%;
    margin-bottom: 30px;
    padding-right: 0;
    word-break: break-word;
  }
  
  footer .line-footer2 {
    gap: 20px;
  }
  
  .depoimento-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .depoimento {
    padding: 1rem;
    margin-bottom: 20px;
  }
  
  .conteudo-depoimento {
    min-height: 100px;
  }

  header {
    height: 140px; /* Further reduce header height on mobile */
  }
  
  .hero-site .interface {
    padding-top: 60px; /* Less padding needed on mobile */
  }
}

/* Celulares muito pequenos */
@media (max-width: 350px) {
    header {
        height: 120px; /* Minimum header height for very small screens */
    }
    
    .hero-site .interface {
        padding-top: 50px; /* Minimum padding for very small screens */
    }

    header .logo img {
        max-width: 180px;
        height: 100px;
    }

    .hero-site .txt-hero h1 {
        font-size: 1.5em;
        line-height: 32px;
    }

    .hero-site .txt-hero p {
        font-size: 18px;
        line-height: 24px;
    }

    .problemas .itens-conteiner .txt-itens h3 {
        font-size: 1.8em;
        line-height: 34px;
    }

    .sobre .txt-sobre h2 {
        font-size: 32px;
    }

    .sobre .txt-sobre p {
        font-size: 16px;
    }

    .sobre .img-card img {
        width: 200px;
    }

    .section-containe_2 h1 {
        font-size: 20px;
    }

    .section-containe_2 p.subtitle {
        font-size: 12px;
    }

    .faq-sec .perguntas-frequentes h1 {
        font-size: 1.6rem;
    }

    .cardzinho {
        padding: 15px;
    }

    .cardzinho input,
    .cardzinho textarea {
        padding: 12px;
        font-size: 14px;
    }

    .btn-enviar input {
        height: 40px;
        font-size: 14px;
    }
}

/* Responsive styles for the form section */
@media (max-width: 768px) {
    .cardzao-background {
        padding: 30px 15px;
        min-height: 500px;
    }
    
    .texto-introducao h2 {
        font-size: 32px;
    }
    
    .texto-introducao p {
        font-size: 16px;
    }
    
    .cardzinho {
        padding: 20px 15px;
    }
    
    .cardzinho input,
    .cardzinho textarea {
        padding: 12px;
    }
    
    .btn-enviar input {
        height: 50px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .cardzao-background {
        padding: 20px 10px;
        min-height: 450px;
    }
    
    .texto-introducao h2 {
        font-size: 26px;
    }
    
    .texto-introducao p {
        font-size: 14px;
    }
    
    .cardzinho {
        padding: 15px 10px;
    }
    
    .cardzinho input,
    .cardzinho textarea {
        padding: 10px;
        font-size: 14px;
    }
    
    .cardzinho textarea {
        min-height: 80px;
    }
    
    .btn-enviar input {
        height: 45px;
        font-size: 16px;
    }
    
    .status-disponivel {
        font-size: 10px;
        padding: 6px 12px;
    }
}

@media (max-width: 380px) {
    .cardzao-background {
        padding: 15px 10px;
        min-height: 400px;
        border-radius: 20px;
    }
    
    .texto-introducao h2 {
        font-size: 22px;
        margin-bottom: 10px;
    }
    
    .texto-introducao p {
        font-size: 13px;
    }
    
    .cardzinho {
        padding: 12px 8px;
    }
    
    .cardzinho input,
    .cardzinho textarea {
        padding: 8px;
        font-size: 13px;
        border-radius: 8px;
    }
    
    .cardzinho textarea {
        min-height: 60px;
        max-height: 120px;
    }
    
    .btn-enviar input {
        height: 40px;
        font-size: 14px;
        border-radius: 40px;
    }
    
    .status-disponivel {
        font-size: 9px;
        padding: 4px 10px;
        margin-bottom: 10px;
    }
}

/* fundamental*/
@media (max-width: 1200px) {
  .faq li label {
    padding-right: 38px;
  }
  .faq li label::before {
    font-size: 32px;
    right: 16px;
  }
}

.section-containe_2 h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 10px;
  color: #000000;
}

.card-section h2#card-title {
  text-align: left;
  color: #ffffff;
  font-size: 28px;
  margin-bottom: 20px;
}
