/* --- FUNDAMENTOS --- */
:root {
    --ouro: #d4af37;
    --marrom-nobre: #2c1e14;
    --bege-linho: #fdfbf7;
    --transicao: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    background: linear-gradient(180deg, #dcd7bb 0%, #b2b7a0 50%, #383535c0 100%) no-repeat fixed;
    color: var(--marrom-nobre);
    font-family: 'Inter', sans-serif;
}

/* --- HEADER ORIGINAL PROTEGIDO --- */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 10%;
    background: linear-gradient(180deg, #dcd7bb 0%, #b2b7a0 50%, #383535c0 100%) no-repeat fixed;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.header-container h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.8rem);
    color: var(--marrom-nobre);
    margin: 0;
}

.header-container h2 {
    font-family: 'Roboto', sans-serif;
    font-size: clamp(0.9rem, 3vw, 1.4rem);
    color: #8b4513;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 380px;
    height: 160px;
}

.header-container h2 span {
    position: absolute;
    animation: blurCiclo 4.0s infinite ease-in-out;
}

.header-container h2::after {
    content: "";
    position: absolute;
    width: 150px; height: 150px;
    background-image: url('icone\ sebo\ .WebP');
    background-size: cover;
    border-radius: 20px;
    opacity: 0;
    filter: blur(15px);
    animation: blurCiclo 4.0s infinite ease-in-out 2.0s;
}

@keyframes blurCiclo {
    0%, 100% { opacity: 0; filter: blur(15px); transform: scale(0.95); }
    10%, 40% { opacity: 1; filter: blur(0px); transform: scale(1); }
    50% { opacity: 0; filter: blur(15px); transform: scale(0.95); }
}

/* --- VITRINE DINÂMICA --- */
.titulo-sessao {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    padding: 40px 0 10px;
    color: var(--marrom-nobre);
}

.promo-container, .tu-container {
    padding: 30px 0;
    overflow: hidden;
    position: relative;
}

.promo, .tu {
    display: flex;
    gap: 35px;
    width: max-content;
    animation: rolarInfinito 40s linear infinite;
}

.promo img, .tu img {
    width: 200px;
    height: 290px;
    object-fit: cover;
    border-radius: 4px 12px 12px 4px; /* Estilo lombada de livro */
    box-shadow: 12px 15px 30px rgba(0,0,0,0.2);
    border-left: 8px solid rgba(0,0,0,0.05);
    transition: var(--transicao);
}

.promo img:hover, .tu img:hover {
    transform: translateY(-15px) rotate(-1deg) scale(1.05);
    box-shadow: 20px 35px 50px rgba(0,0,0,0.3);
}

@keyframes rolarInfinito {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.promo:hover, .tu:hover { animation-play-state: paused; }

/* --- FRASE DE CURADORIA --- */
.frase-efeito {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.5rem;
    padding: 60px 20px;
    color: #fff705;
    background: linear-gradient(180deg, #908c79 0%, #8a6d23ec 50%, #383535c0 100%) no-repeat fixed;
    border-radius: 1000px;
  
}

.detalhe-ouro { color: var(--ouro); margin: 0 10px; }

/* --- BOTÃO DE AÇÃO PREMIUM --- */
.area-conversao { padding-bottom: 80px; background: linear-gradient(180deg, #dcd7bb 0%, #b2b7a0 50%, #383535c0 100%) no-repeat fixed; }

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

.butt button {
    background: var(--marrom-nobre);
    color: var(--ouro);
    border: 2px solid var(--ouro);
    padding: 22px 60px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transicao);
    box-shadow: 0 15px 35px rgba(44, 30, 20, 0.2);
}

.butt button:hover {
    background: var(--ouro);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(212, 175, 87, 0.3);
}

.seguranca {
    font-size: 0.8rem;
    color: #8b7d7b;
    letter-spacing: 1px;
}

/* --- RESPONSIVIDADE TOTAL --- */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        padding: 40px 5%;
        text-align: center;
    }
    
    .header-container h2 {
        min-width: 100%;
        height: 120px;
        transform: scale(0.9);
    }

    .promo img, .tu img {
        width: 160px;
        height: 230px;
    }

    .butt button {
        width: 90%;
        padding: 20px;
        font-size: 0.85rem;
    }
}