@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:wght@400;700&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    background-image: url('imagens/textura.png');
    background-repeat: repeat;
    background-size: auto;
    color: white;
    width: 100%;
    max-width: 530px;
    margin: 0 auto;
}

/* Títulos com a fonte Noto Serif */
h1, h2, h3 {
    font-family: 'Noto Serif', serif;
    font-weight: 700; /* Se quiser deixar os títulos automaticamente em negrito */
}

/* Links padrão */
a {
    text-decoration: none;
    color: inherit;
}



/*section 1*/

.banner-inicial {
    position: relative;
    width: 100%;
    max-width: 530px; /* Largura máxima para mobile */
    margin: 0 auto; /* Centraliza o banner */
    overflow: hidden;
    padding-bottom: 40px;
    text-align: center;
}

.imagem-banner {
    width: 100%;
    height: auto;
    display: block;
}

.banner-inicial .conteudo {
    position: static;
    transform: none;
    width: 90%;
    max-width: 90%;
    margin: 20px auto 0 auto; /* Espaço acima e centralizado */
    text-align: center;
    color: #1c1c1c;

    /* Sem fundo e sem bordas */
    background: none;
    padding: 0;
    border-radius: 0;
}

.subtitulo {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 18px;
    margin-top: -45px;
}

.subtitulo span {
    color: #03021e;
    font-size: 25px;
    font-weight: 600;
}

.subtitulo strong {
    font-weight: 600;
}

.destaque {
    color: #c4a26b;
    font-weight: 700;
}

.descricao {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.descricao strong {
    font-weight: 600;
}

.botao {
    background: linear-gradient(to right, #d5b675, #c39d4d);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.3s ease;
}

.botao:hover {
    opacity: 0.85;
}

/*section 2*/

.clientes {
    text-align: center;
    padding: 40px 20px;
    max-width: 530px;
    margin: 0 auto;
}

.text img {
    width: 50px;
    margin-bottom: 10px;
}

.text p {
    font-size: 18px;
    color: #000;
    margin-bottom: 30px;
}

.text p span {
    color: #b79a67;
    font-weight: 600;
}

.fotos {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    max-width: 280px;
    text-align: center;
    padding: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

.card p {
    color: #333;
    font-size: 16px;
    line-height: 1.4;
}

.card p strong {
    color: #000;
}

/*section 3*/

.explicacao {
    background-color: #070528;
    color: white;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.explicacao h2 {
    font-size: 32px;
    max-width: 600px;
    margin-bottom: 20px;
    line-height: 1.4;
    font-weight: normal;
}

.explicacao h2 span {
    display: block;
    color: #9d7f54;
    /* tom dourado */
    font-weight: normal;
}

.explicacao p {
    font-size: 16px;
    line-height: 1.8;
    max-width: 540px;
    color: #e0e0e0;
    margin-bottom: 40px;
}

.explicacao p strong {
    color: white;
    font-weight: 700;
}

.botao {
    background: linear-gradient(to right, #c4a26b, #d5ba78);
    color: white;
    padding: 14px 30px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: background 0.3s ease;
}

.botao:hover {
    background: linear-gradient(to right, #d5ba78, #c4a26b);
}

/*section 4*/

.voce-vai {
    background-color: #ffffff;
    padding: 60px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Imagem superior */
.voce-vai img {
    max-width: 100%;
    height: auto;
    margin-bottom: 30px;
}

/* Título com destaque */
.voce-vai h2 {
    font-size: 28px;
    font-weight: 400;
    color: #1c1c1c;
    margin-bottom: 40px;
    line-height: 1.4;
}

.voce-vai h2 .destaque {
    color: #9d7f54; /* Dourado */
    font-weight: 700;
}

/* Bloco dos três itens */
#check {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
    width: 100%;
    max-width: 400px;
}

#check > div {
    background-color: #f8f8f8;
    border: 1px solid #e0e0e0;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

/* Ícone de check centralizado */
#check img {
    width: 60px;
    height: 60px;
    margin-top: -44px;
}

/* Texto dos cards */
#check p {
    font-size: 18px;
    color: #333333;
    line-height: 1.6;
    margin-top: 10px;
}

#check p strong {
    color: #000000;
}

/* Texto final */
#text {
    max-width: 500px;
    margin-top: 20px;
}

#text p {
    font-size: 16px;
    color: #333333;
    line-height: 1.8;
}

#text strong {
    font-weight: 700;
    color: #000000;
}


/*section 5*/

.video {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    text-align: center;
    font-family: 'Noto Serif', serif;
    color: #1c1c1c;
}

.video h2 {
    font-size: 28px;
    margin-bottom: 30px;
    font-weight: 700;
    color: #1c1c1c;
}

.video h2 span {
    font-weight: 400;
    color: #c4a26b;
}

.video iframe {
    width: 100%;
    max-width: 260px;
    height: 460px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}


/*section 6*/

.mentoria-e {
    background-color: #070528;
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.mentoria-e h2 {
    font-size: 28px;
    max-width: 700px;
    margin: 0 auto 40px;
    font-weight: 400;
    color: white;
}

.mentoria-e h2 span {
    color: #9d7f54;
    /* dourado */
    font-weight: 600;
}

/* Container das bullets */
.mentoria-e .box {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.mentoria-e .box>div {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
    align-items: center;
}

.mentoria-e .box img {
    width: 24px;
    height: 24px;
    margin-top: 4px;
}

.mentoria-e .box p {
    font-size: 16px;
    line-height: 1.6;
    color: #e0e0e0;
}

.mentoria-e .box p strong {
    font-weight: 700;
    color: #fff;
}

/*section 7*/

.pratica {
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
}

/* Primeira parte com imagem e lista */
#first {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

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

/* Container de texto + bullets */
#conteudo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-color: #ffffff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    gap: 16px;
    width: 100%;
    max-width: 420px;
}

#conteudo h2 {
    font-size: 20px;
    color: #333;
    font-weight: 400;
    margin-bottom: 10px;
    text-align: left;
}

#conteudo h2 strong {
    color: #000;
    font-weight: 700;
}

/* Bullets */
#conteudo>div {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #f8f8f8;
    border-radius: 8px;
    padding: 12px 16px;
    width: 100%;
}

#conteudo div img {
    width: 50px;
    height: 50px;
}

#conteudo div p {
    font-size: 15px;
    color: #333;
    margin: 0;
    text-align: left;
}

/* Texto inferior */
.second {
    max-width: 600px;
    text-align: center;
}

.second p {
    font-size: 16px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 20px;
}

.second h3 {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
}

.second h3 span {
    color: #9d7f54;
    /* cor próxima do laranja/dourado da imagem */
}

.second h3 strong {
    font-weight: 700;
    color: #000;
}

/*section 8*/

.feedback {
    background-color: #070528;
    padding: 60px 20px;
    color: white;
    text-align: center;
}

.feedback h2 {
    font-size: 18px;
    margin-top: 30px;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Container com overflow horizontal */
#fotos {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding-bottom: 10px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    /* melhora no iOS */
}

/* Evita quebra de linha nas imagens */
#fotos img {
    flex: 0 0 auto;
    height: 280px;
    /* você pode ajustar para o padrão visual desejado */
    border-radius: 12px;
    object-fit: cover;
}

/* Esconde a barra de rolagem (opcional) */
#fotos::-webkit-scrollbar {
    display: none;
}

#fotos {
    scrollbar-width: none;
    /* Firefox */
}

/*section 9*/

.aplicar {
    background-color: #070528;
    padding: 50px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#quadrado {
    background: linear-gradient(to right, #c4a26b, #d5ba78);
    padding: 50px 40px;
    border-radius: 8px;
    max-width: 420px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

#quadrado h2 {
    font-size: 25px;
    margin-bottom: 20px;
    font-weight: 400;
    color: white;
}

#quadrado h2 strong {
    font-weight: 600;
    color: white;
}

#quadrado p {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.7;
    color: #f4f4f4;
    margin-bottom: 30px;
}

/* Botão (inserir dentro do #quadrado, se necessário) */
#quadrado .botao1 {
    background-color: #070528;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    display: inline-block;
    transition: background 0.3s ease;
}

#quadrado .botao:hover {
    background-color: #1e1a40;
}

/*section 10*/

.conheca {
    padding: 60px 20px;
    background-color: #ffffff;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.conheca h2 {
    font-size: 30px;
    color: #c4a26b;
    /* dourado */
    font-weight: 600;
    margin-bottom: 16px;
}

#text {
    max-width: 700px;
}

#text p {
    font-size: 15px;
    line-height: 1.8;
    color: #1c1c1c;
    text-align: justify;
}

#text p strong {
    font-weight: 600;
    color: #000;
}

/* Estilo para imagens (já controlado por media query) */
.desktop {
    display: none;
}

.mobile {
    display: block;
    max-width: 450px;
    width: 100%;
}

/* Layout para desktop */
/* @media (min-width: 768px) {
    .conheca {
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        text-align: left;
        padding: 80px 40px;
    }

    .desktop {
        display: block;
        max-width: 350px;
        width: 100%;
    }

    .mobile {
        display: none;
    }

    #text {
        max-width: 500px;
    }

    #text p {
        font-size: 16px;
        line-height: 1.9;
    }
} */

/*section 11*/

.faq {
    background-color: #f9f9f9;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.faq-title h2 {
    font-size: 26px;
    font-weight: 400;
    color: #070528;
    text-align: center;
}

.faq-title em {
    font-weight: 600;
    color: #070528;
}

/* Layout em colunas no desktop */
@media (min-width: 768px) {
    .faq {
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
    }

    .faq-title {
        width: 30%;
        text-align: left;
    }

    .faq-list {
        width: 70%;
    }
}

/* Estilo dos itens */
.faq-item {
    background-color: #070528;
    color: white;
    margin-bottom: 16px;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 16px 20px;
    font-size: 14px;
    font-weight: 500;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    position: relative;
}

.faq-question::after {
    content: "▾";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question::after {
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
    max-height: 0;
    padding: 0 20px;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 600px;
    /* ou use 'fit-content' com JS */
    padding: 12px 20px 20px;
}

.faq-answer p {
    font-size: 13px;
    line-height: 1.6;
}

/*section 12*/

.footer {
    background-color: #f9f9f9;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    text-align: center;
}

/* Ajusta para desktop */
@media (min-width: 768px) {
    .footer {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        padding: 60px 80px;
    }
}

#alpha2 img {
    width: 120px;
    margin-bottom: 12px;
}

#alpha2 p {
    font-size: 13px;
    color: #1c1c1c;
}

#bravo h2 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1c1c1c;
}

#mail {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

#mail img {
    width: 18px;
    height: auto;
}

#mail p {
    font-size: 14px;
    color: #1c1c1c;
}

/* Botão WhatsApp */
.botao2 {
    background-color: #57e390;
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.botao2:hover {
    background-color: #45c278;
}