:root {
    --color-primary: #1F1F1F;
    --color-secondary: #D4B996;
    --color-accent: #F2E8DF;
    --color-text: #333333;
    --color-nude-tab: #C1A587;
    --color-dark-bg: #3D3D3D;
}

/* ======================================================
SMOOTH SCROLL
====================================================== */

html {
    scroll-behavior: smooth;
}

#oferta,
#conteudo,
#faq {
    scroll-margin-top: 80px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #FFFFFF;
    color: var(--color-text);
    overflow-x: hidden;
    padding-top: 60px;
}

.reveal-text span {
    opacity: 0;
    display: inline-block;
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
}

/* Top Bar Styles */
.top-bar {
    background-color: #1F1F1F;
    color: white;
    height: 60px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    font-size: 0.9rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.top-bar.scrolled {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.hero-gradient {

    background-image: url("../images/bg-hero.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 105vh;
    display: flex;
    align-items: center;

}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    height: 100%;
}

.hero-dra {
    height: 100vh;
    max-width: none;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

.program-section {
    background-color: var(--color-dark-bg);
    border-top: 4px solid var(--color-nude-tab);
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    position: relative;
    margin-top: 80px;
}

.title-tab-wrapper {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 30;
    width: 100%;
    display: flex;
    justify-content: center;
}

.title-tab {
    background-color: var(--color-nude-tab);
    border-radius: 18px;
    padding: 1.5rem 3rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 320px;
    text-align: center;
}

.btn-cta {
    background-color: #B8966A;
    transition: all .35s ease;
}

.btn-cta:hover {
    background-color: #9A7B54;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.price-card {
    background-color: #C1A587;
    border-radius: 12px;
}

.discount-item {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
}

.guarantee-badge {
    background-color: #C1A587;
    border-radius: 12px;
    padding: 40px;
    opacity: 0.9;
}

.choices-section {
    background: linear-gradient(rgba(45, 45, 45, 0.95), rgba(45, 45, 45, 0.95)), url('https://images.unsplash.com/photo-1493612276216-ee3925520721?auto=format&fit=crop&q=80&w=1600');
    background-size: cover;
    background-attachment: fixed;
    color: white;
}

.marquee {
    width: 100%;
    overflow: hidden;
    background: #1F1F1F;
    padding: 16px 0;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 25s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 40px;
    white-space: nowrap;
    padding-right: 40px;
}

.marquee-content span {
    color: #D4B996;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 14px;
    white-space: nowrap;
}

.dot {
    width: 8px;
    height: 8px;
    background: #D4B996;
    border-radius: 50%;
}

/* ESQUERDA → DIREITA */
@keyframes marquee {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

.module-card {

    border-radius: 16px;
    overflow: hidden;
    background: #4A4A4A;
    display: flex;
    flex-direction: column;
}

.module-image {

    width: 100%;
    height: 200px;
    object-fit: cover;

}

.module-content {
    padding: 24px 24px 24px 24px;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 10px;
}

.module-content h3 {

    font-size: 22px;
    line-height: 1.3;
    min-height: 56px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.module-content p {

    font-size: 15px;
    opacity: .8;

}

.swiper-slide{
height:auto;
}

/* FAQ */
.faq-item {
    border-bottom: 1px solid #E5E7EB;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-title-container {
    position: relative;
    text-align: center;
    margin-bottom: 4rem;
}

.faq-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.02);
    z-index: 1;
    pointer-events: none;
    letter-spacing: 0.2em;
}

.faq-main-title {
    position: relative;
    z-index: 2;
}

.video-overlay-card {
    background-color: #2D2D2D;
    border-radius: 12px;
    position: absolute;
    bottom: 140px;
    left: -60px;
    width: 340px;
    aspect-ratio: 16/9;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 4px solid white;
    z-index: 20;
    overflow: hidden;
}

.video-play-btn-small {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    background-color: rgba(212, 185, 150, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Swiper Custom Styles */
.swiper-pagination-bullet-active {
    background-color: #B8966A !important;
}

.swiper-button-next,
.swiper-button-prev {
    color: #D4B996 !important;
    background-color: rgba(0, 0, 0, 0.5); /* Círculo escuro com opacidade */
    backdrop-filter: blur(4px); /* Suaviza o fundo atrás da seta */
    width: 54px;
    height: 54px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: #D4B996;
    color: #1F1F1F !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px !important; /* Ajuste do tamanho do ícone dentro do círculo */
    font-weight: bold;
}

/* ===============================
SETAS DO CARROSSEL
=============================== */

.swiper-button-next,
.swiper-button-prev{
top:40%;
transform:translateY(-50%);
}

.swiper-button-prev{
left:10px;
}

.swiper-button-next{
right:10px;
}

/* ===============================
DOTS DO CARROSSEL
=============================== */

.swiper-pagination{

position:relative;
margin-top:25px;

}

.swiper-pagination-bullet{

background:#888;
opacity:0.5;

}

.swiper-pagination-bullet-active{

background:#B8966A !important;
opacity:1;

}

.modulesSwiper{
padding-bottom:50px;
}

/* ======================================================
SEÇÃO SOBRE A DRA
====================================================== */

.about-section {
    position: relative;
}


/* ===== FOTO ===== */

.photo-frame {

    position: relative;

    background-color: #C1A587;

    padding: 12px;

    border-radius: 16px;

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);

    max-width: 420px;

}


/* FOTO DA DRA */

.about-photo {

    display: block;

    width: 100%;

    border-radius: 10px;

    object-fit: cover;

}


/* ===== TEXTO ===== */

.about-label {

    display: inline-block;

    font-size: 12px;

    letter-spacing: 3px;

    text-transform: uppercase;

    color: #B8966A;

    font-weight: 600;

    margin-bottom: 10px;

}


.about-title {

    font-family: 'Playfair Display', serif;

    font-size: 36px;

    margin-bottom: 10px;

    color: #1F1F1F;

}


.about-subtitle {

    color: #777;

    font-size: 14px;

    margin-bottom: 24px;

}


.about-text {

    color: #555;

    line-height: 1.7;

    margin-bottom: 16px;

}


/* ===== LISTA DE AUTORIDADE ===== */

.about-highlights {

    margin-top: 24px;

    display: flex;

    flex-direction: column;

    gap: 10px;

    font-size: 15px;

}


.about-highlights li {

    color: #333;

}

/* ======================================================
CURIOSIDADE SOBRE FREUD
====================================================== */

.freud-label {

    display: inline-block;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #B8966A;
    font-weight: 600;
    margin-bottom: 12px;

}

.freud-title {

    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin-bottom: 20px;
    color: #1F1F1F;

}

.freud-text {

    color: #555;
    line-height: 1.7;
    margin-bottom: 16px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;

}

.freud-image-wrapper {

    margin-top: 30px;

}

.freud-image {

    max-width: 220px;
    margin: 0 auto;
    border-radius: 6px;
    opacity: 0.9;

}

/* ======================================================
COOKIE BANNER
====================================================== */

.cookie-banner {

    position: fixed;
    bottom: 20px;
    left: 20px;

    background: #1F1F1F;
    color: white;

    padding: 22px;

    border-radius: 14px;

    max-width: 360px;

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);

    opacity: 0;
    transform: translateY(20px);

    transition: all .35s ease;

    z-index: 9999;

}

.cookie-banner.show {

    opacity: 1;
    transform: translateY(0);

}


/* HEADER */

.cookie-header {

    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 10px;

}

.cookie-header h3 {

    font-size: 16px;

}

.cookie-logo {

    width: 32px;
    height: 32px;
    border-radius: 50%;

}


/* LINKS */

.cookie-links {

    font-size: 12px;
    margin: 12px 0;

}

.cookie-links a {

    color: #D4B996;
    margin-right: 10px;

}


/* ACTIONS */

.cookie-actions {

    display: flex;
    align-items: center;
    gap: 10px;

    margin-top: 10px;

}

.cookie-options {

    font-size: 12px;
    color: #aaa;

    margin-right: auto;

}


/* BOTÕES */

.cookie-reject {

    background: transparent;
    border: 1px solid #777;

    padding: 7px 12px;

    border-radius: 6px;

    color: white;

    cursor: pointer;

}

.cookie-accept {

    background: #2e7d32;

    border: none;

    padding: 7px 14px;

    border-radius: 6px;

    color: white;

    cursor: pointer;

}


/* ======================================================
COOKIE FLOATING BUTTON
====================================================== */

.cookie-floating {

    position: fixed;

    bottom: 20px;
    left: 20px;

    width: 50px;
    height: 50px;

    background: #1F1F1F;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    animation: cookieFloat 3s ease-in-out infinite;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);

    z-index: 9998;

}

@keyframes cookieFloat {

    0% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-6px)
    }

    100% {
        transform: translateY(0)
    }

}



/* ======================================================
BACK TO TOP
====================================================== */

.back-top {

    position: fixed;

    bottom: 20px;
    right: 20px;

    width: 50px;
    height: 50px;

    background: #B8966A;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);

    z-index: 9998;

}

.back-top:hover {

    background: #9A7B54;

}

/* ===============================
SCROLLBAR - CHROME / EDGE / SAFARI
=============================== */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #1F1F1F;
    /* fundo escuro */
}

::-webkit-scrollbar-thumb {
    background: #D4B996;
    /* dourado */
    border-radius: 6px;
    border: 2px solid #1F1F1F;
}

::-webkit-scrollbar-thumb:hover {
    background: #c7a97f;
    /* dourado um pouco mais escuro */
}


/* ===============================
SCROLLBAR - FIREFOX
=============================== */

* {
    scrollbar-width: thin;
    scrollbar-color: #D4B996 #1F1F1F;
}




/* ===== RESPONSIVO ===== */

@media (max-width: 768px) {

    .about-title {

        font-size: 28px;

    }

    .photo-frame {

        max-width: 300px;

        margin: 0 auto;

    }

}

@media (max-width: 768px) {
    .top-bar {
        padding: 0 1rem;
        font-size: 0.75rem;
        height: 75px;
        flex-direction: column;
        justify-content: center;
        gap: 4px;
    }

    body {
        padding-top: 75px;
    }

    .faq-bg-text {
        font-size: 4rem;
        letter-spacing: 0.1em;
    }

    .video-overlay-card {
        position: relative;
        width: 100%;
        left: 0;
        bottom: 0;
        margin-top: -30px;
        border-width: 4px;
    }
}