/* --- CONFIGURAÇÕES GLOBAIS E VARIÁVEIS --- */
:root {
    --cor-fundo: #fdfaf7;
    --cor-ouro: #b39274;
    --cor-ouro-claro: #c2a891;
    --cor-branco: #ffffff;
    --sombra: rgba(166, 133, 102, 0.1);
    --cor-texto: #4a4542;
    --cor-suave: #888;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--cor-fundo);
    color: var(--cor-texto);
    line-height: 1.6;
}

.container-principal {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* --- CABEÇALHO E MENU --- */
header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 20px 8%;
    border-bottom: 1px solid rgba(166, 133, 102, 0.1);
    position: -webkit-sticky;
    position: sticky; 
    top: 0;
    z-index: 1000;
}

.container-navegacao {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logotipo h1 {
    font-family: 'Cormorant Garamond';
    color: var(--cor-ouro);
    font-size: 1.8rem;
}

.botao-aba {
    border: none;
    background: none;
    margin: 0 10px;
    cursor: pointer;
    color: var(--cor-suave);
    position: relative;
}

.botao-aba.selecionado::after {
    content: "";
    width: 100%;
    height: 2px;
    background: var(--cor-ouro);
    position: absolute;
    bottom: -5px;
    left: 0;
}

/* --- COMPONENTES REUTILIZÁVEIS --- */
.etiqueta {
    background: #f0e6dd;
    color: var(--cor-ouro);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

/* --- SEÇÃO INICIAL (HERO) --- */
.destaque {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70vh;
    gap: 50px;
}

.texto-destaque {
    max-width: 500px;
}

.texto-destaque h2 {
    font-size: 3.5rem;
    font-family: 'Cormorant Garamond';
    margin-bottom: 20px;
    line-height: 1.1;
}

.texto-destaque strong {
    color: var(--cor-ouro);
    font-style: italic;
}

.imagem-destaque img {
    width: 100%;
    max-width: 420px;
    border-radius: 20px;
    box-shadow: 30px 30px 60px var(--sombra);
    transition: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    display: block;
}

.imagem-destaque img:hover {
    transform: scale(1.03);
}

/* --- SEÇÃO DE SESSÕES --- */
.imagem-sessao-grande {
    width: 100%;
    max-width: 900px; /* Aumentado para dar o destaque solicitado */
    border-radius: 20px;
    box-shadow: 20px 20px 40px var(--sombra);
    display: block;
}

.rodape-sessao {
    margin-top: 40px;
    border-top: 1px solid rgba(166, 133, 102, 0.1);
    padding-top: 30px;
}

.chamada-direta {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chamada-direta p {
    font-weight: 600;
    color: var(--cor-ouro);
    margin: 0;
}

.botao-whatsapp-sessao {
    background: #25d366;
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    width: fit-content;
    transition: 0.3s;
}

.botao-whatsapp-sessao:hover {
    background: #20ba5a;
    transform: translateY(-2px);
}

.info-detalhe {
    font-size: 0.8rem;
    color: var(--cor-suave);
    margin-top: 5px;
}

.botao-ouro {
    background: var(--cor-ouro);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.4s;
    box-shadow: 0 10px 20px var(--sombra);
    margin-top: 30px;
}

.frase-contato {
    font-style: italic;
    max-width: 600px;
    margin: 0 auto 20px;
    color: var(--cor-ouro);
    font-size: 1.1rem;
    line-height: 1.4;
}

.contato-sub { font-size: 0.9rem; color: var(--cor-suave); margin-bottom: 25px; }

.botao-ouro:hover {
    background: var(--cor-ouro-claro);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px var(--sombra);
}

.subtitulo {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    color: var(--cor-ouro);
}

/* --- SEÇÃO SOBRE --- */
.sobre {
    display: flex;
    gap: 40px;
    align-items: center;
}

.sobre img {
    width: 100%;
    max-width: 350px;
    border-radius: 15px;
    box-shadow: 20px 20px 40px var(--sombra);
    display: block;
}

.sobre-detalhes h4 {
    margin-top: 20px;
    font-family: 'Cormorant Garamond';
    font-size: 1.4rem;
    color: var(--cor-ouro);
}

/* Parágrafos em itálico para depoimentos ou frases marcantes */
.enfase {
    font-style: italic;
    color: var(--cor-ouro);
}

.credenciais {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.tag-credencial {
    background: #f0e6dd;
    color: var(--cor-ouro);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.sobre-detalhes p {
    margin-bottom: 10px;
}

/* TÍTULOS DE SEÇÃO */
.titulo-da-secao {
    margin-bottom: 30px;
    font-size: 2rem;
}

/* CARTÃO DE EBOOK */
.centralizar-ebook {
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

.cartao {
    background: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
    max-width: 350px;
}

.cartao:hover {
    transform: translateY(-8px);
}

.cartao img {
    width: 100%;
    border-radius: 10px;
}

.botao-ouro-baixar {
    background: var(--cor-ouro);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-top: 20px;
    transition: 0.3s;
    box-shadow: 0 5px 15px var(--sombra);
}

.botao-ouro-baixar:hover {
    background: var(--cor-ouro-claro);
    transform: translateY(-2px);
}

/* --- SEÇÃO DE CONTATO --- */
.contato {
    text-align: center;
    padding: 40px 0;
}

.lista-links-contato {
    margin-top: 30px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
}

.link-texto {
    text-decoration: none;
    color: var(--cor-ouro);
    font-weight: 600;
    font-size: 1.1rem;
    transition: 0.3s;
}

.link-texto:hover {
    color: var(--cor-ouro-claro);
    text-decoration: underline;
}

.divisor {
    color: #ddd;
    font-weight: 300;
}

/* --- COMPONENTE WHATSAPP FLUTUANTE --- */
.botao-whatsapp-flutuante {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 2000;
    transition: 0.3s;
    text-decoration: none;
}

.botao-whatsapp-flutuante:hover {
    transform: scale(1.1);
    background: #20ba5a;
}

.container-menu-whatsapp {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 260px;
    background: white;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 20px;
    display: none;
    z-index: 3500;
    border: 1px solid var(--cor-ouro-claro);
    animation: aparecerParaCima 0.4s ease;
}

.container-menu-whatsapp.aberto {
    display: block;
}

.cabecalho-menu-whatsapp {
    font-weight: 600;
    color: var(--cor-ouro);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.opcao-menu-whatsapp {
    display: block;
    width: 100%;
    padding: 10px;
    margin-bottom: 8px;
    border: 1px solid #f0e6dd;
    border-radius: 8px;
    background: #fdfaf7;
    cursor: pointer;
    text-align: left;
    font-size: 0.8rem;
    transition: 0.3s;
    font-family: 'Montserrat';
}

.opcao-menu-whatsapp:hover {
    background: var(--cor-ouro);
    color: white;
}

/* --- ANIMAÇÕES E TRANSIÇÕES --- */
.conteudo-aba {
    display: none;
    animation: aparecerParaCima 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.conteudo-aba.visivel {
    display: block;
}

@keyframes aparecerParaCima {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- RODAPÉ --- */
footer {
    background: var(--cor-branco);
    padding: 60px 20px;
    margin-top: 100px;
    border-top: 1px solid #eee;
    text-align: center;
}

.redes-sociais-rodape {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.redes-sociais-rodape a {
    color: var(--cor-suave);
    margin: 0 10px;
    transition: 0.3s;
}

.redes-sociais-rodape a:hover { color: var(--cor-ouro); }

.creditos {
    margin-top: 30px;
    font-size: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ccc;
}
.conteudo-rodape p { font-weight: 600; color: var(--cor-texto); }
.info-rodape { color: var(--cor-suave); font-size: 0.8rem; margin-top: 10px; }

/* --- RESPONSIVIDADE (MOBILE) --- */
@media (max-width: 900px) {
    header {
        padding: 20px 5%;
    }
    .container-navegacao { 
        flex-direction: column; 
        gap: 15px; 
    }

    .logotipo h1 {
        font-size: 1.5rem;
    }

    .botao-aba {
        margin: 0 5px;
        font-size: 0.9rem;
    }

    .destaque, .sobre {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    /* Ajustes para imagens em telas muito pequenas */
    .imagem-destaque img, .imagem-sessao-grande, .sobre img {
        max-width: 100%; /* Garante que a imagem não ultrapasse a largura da tela */
        height: auto; /* Mantém a proporção */
    }
}

@media (max-width: 480px) {
    .texto-destaque h2 {
        font-size: 2.2rem;
    }
    .container-principal {
        padding: 20px 15px;
    }
    .botao-ouro {
        width: 100%;
        padding: 18px 20px;
    }
}