@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Poppins:wght@300;400;600;700&display=swap');

/* ===== RESET E GERAIS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

:root {
    --bg-dark: #0d082d;
    --bg-card: #1c1844;
    --gold: #e6a618;
    --gold-dark: #c48c13;
    --text-light: #f8f9fa;
    --text-dark: #1a1a1a;
    --bg-light: #ffffff;
}

/* ===== HEADER ===== */
.header {
    background-color: transparent;
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    display: flex;
    align-items: center;
}

.logo-icon img {
    display: block;
    height: 35px;
    filter: brightness(0) invert(1) sepia(1) saturate(100) hue-rotate(320deg) drop-shadow(0 0 2px rgba(0,0,0,0.5));
    transition: filter 0.3s ease;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    transition: color 0.3s ease;
}

.btn-header-buy {
    background-color: #ffffff;
    color: #000000;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-header-buy:hover {
    background-color: #e6e6e6;
}

.header-scrolled {
    background-color: #ffffff !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.header-scrolled .logo-icon img {
    filter: brightness(0) invert(1) sepia(1) saturate(100) hue-rotate(320deg);
}

.header-scrolled .logo-text {
    color: #000000;
}

.header-scrolled .btn-header-buy {
    background-color: #e6a618;
    color: #000000;
}

.header-scrolled .btn-header-buy:hover {
    background-color: #c48c13;
}

/* ===== HERO FULLSCREEN ===== */
.hero-fullscreen {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 0;
}

.hero-fullscreen .hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.hero-fullscreen h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
    line-height: 1.2;
}

.hero-fullscreen .subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: #f5f5f5;
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 1px;
}

.hero-fullscreen .desc {
    max-width: 700px;
    margin: 0 auto 35px;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: #e6a618;
    color: #0d082d;
    font-weight: 700;
    padding: 16px 35px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: 0.3s;
}

.btn-hero-primary:hover {
    background: #c48c13;
    transform: scale(1.03);
}

.btn-hero-secondary {
    background: rgba(0, 0, 0, 0.35);
    color: #ffffff;
    padding: 16px 35px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: #e6a618;
    color: #0d082d;
    transform: scale(1.03);
}

.scroll-down-arrow {
    display: inline-block;
    margin-top: 50px;
    color: white;
    font-size: 2rem;
    text-decoration: none;
    opacity: 0.8;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* ===== SEÇÕES ESCURAS E STRUGGLE ===== */
.section-dark {
    background-color: var(--bg-dark);
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    padding: 80px 0;
    color: white;
    text-align: center;
}

.section-dark .serif-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 15px;
}

.section-dark .section-subtitle {
    color: rgba(255,255,255,0.7);
    margin-bottom: 40px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.card-problem {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(242, 180, 65, 0.2);
    transition: 0.3s;
}

.card-problem:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.card-problem .icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.section-quote {
    margin-top: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
    font-style: italic;
    color: #ffffff;
    font-weight: 300;
    line-height: 1.6;
}

.section-quote .highlight-gold {
    color: #e6a618;
    font-weight: 600;
}

/* ===== SEÇÃO ABOUT (O QUE É) ===== */
.section-about {
    background-color: #f9f8f5;
    padding: 80px 0;
}

.about-header {
    text-align: center;
    margin-bottom: 50px;
}

.about-title-serif {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #0d082d;
    margin-bottom: 20px;
}

.about-subtitle {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.15rem;
    color: #777;
    font-weight: 300;
    line-height: 1.6;
}

.highlight-gold {
    color: #c48c13;
    font-weight: 600;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    text-align: left;
}

.gold-title-serif {
    font-family: 'Playfair Display', serif;
    color: #c48c13;
    font-size: 2rem;
    margin-bottom: 30px;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 22px;
    font-size: 1.05rem;
    color: #333;
    line-height: 1.5;
}

.check-icon-svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.card-user {
    background: #ffffff;
    padding: 20px 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.card-user:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.card-icon {
    width: 40px;
    display: flex;
    justify-content: center;
    flex-shrink: 0;
}

.card-content strong {
    display: block;
    color: #1a1a1a;
    font-size: 1.1rem;
    margin-bottom: 4px;
    font-weight: 700;
}

.card-content span {
    display: block;
    color: #999;
    font-size: 0.9rem;
    font-weight: 400;
}

/* ===== SEÇÃO FEATURES (O QUE INCLUI) ===== */
.section-serif-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}

.grid-includes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 40px 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.card-include {
    background: transparent;
    border: 1px solid rgba(230, 166, 24, 0.3);
    border-radius: 10px;
    padding: 25px;
    text-align: left;
    transition: all 0.3s ease;
}

.card-include:hover {
    border-color: #e6a618;
    transform: translateY(-4px);
}

.include-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.include-icon {
    width: 28px;
    height: 28px;
    color: #e6a618;
    flex-shrink: 0;
}

.include-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.card-include p {
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
}

.center-btn-include {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.btn-include {
    background: #e6a618;
    color: #0d082d;
    font-weight: 700;
    padding: 18px 45px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.btn-include:hover {
    background: #c48c13;
    transform: scale(1.03);
}

/* ===== SEÇÃO DEPOIMENTOS ===== */
.section-testimonials {
    background-color: #fcfcfc;
    padding: 80px 0;
    text-align: center;
}

.testimonial-title-serif {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #0d082d;
    margin-bottom: 10px;
}

.testimonial-subtitle {
    font-size: 1.1rem;
    color: #999;
    margin-bottom: 50px;
    font-weight: 400;
}

.grid-testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: left;
}

.testimonial-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 10px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1.2rem;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.testimonial-quote {
    font-style: italic;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.testimonial-divider {
    border: none;
    border-top: 1px solid #e5e5e5;
    margin: 20px 0;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-weight: 700;
    font-size: 1rem;
    color: #1a1a1a;
    margin-bottom: 3px;
}

.testimonial-role {
    font-size: 0.9rem;
    color: var(--gold);
    font-weight: 400;
}

/* ===== SEÇÃO BÔNUS ===== */
.section-bonus {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: normal;
    padding: 80px 0;
    color: white;
    text-align: center;
    position: relative;
}

.section-bonus::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 8, 45, 0.6);
    z-index: 1;
}

.section-bonus .container {
    position: relative;
    z-index: 2;
}

.bonus-subtitles {
    text-align: center;
    margin-bottom: 40px;
}

.bonus-subtitles p {
    color: #ddd;
    font-weight: 300;
    margin: 0;
}

.bonus-subtitles p:first-child {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 5px;
}

.grid-bonus-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 0 auto 50px;
    max-width: 1050px;
}

.bonus-card {
    background: rgba(13, 8, 45, 0.6);
    border: 1px solid rgba(230, 166, 24, 0.3);
    border-radius: 10px;
    padding: 25px 20px;
    flex: 1 1 300px;
    max-width: 330px;
    text-align: left;
    transition: all 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-5px);
    border-color: #e6a618;
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

.bonus-card h3 {
    color: #e6a618;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bonus-card .bonus-name {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 8px;
}

.bonus-card .bonus-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.bonus-card .bonus-price {
    color: #e6a618;
    font-weight: 700;
    font-size: 0.9rem;
}

.bonus-total-box {
    background: rgba(70, 40, 10, 0.3);
    border: 1px solid #e6a618;
    border-radius: 10px;
    padding: 40px 30px;
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
}

.bonus-total-title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.bonus-total-price {
    color: #e6a618;
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin: 5px 0 15px;
}

.bonus-total-sub {
    color: #ddd;
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.btn-bonus-yellow {
    display: inline-block;
    background-color: #e6a618;
    color: #0d082d;
    font-weight: 700;
    padding: 16px 45px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-bonus-yellow:hover {
    background-color: #c48c13;
    transform: scale(1.03);
}

/* ===== SEÇÃO PREÇOS E GARANTIA ===== */
.pricing-section {
    background: #faf9f6;
    padding: 80px 0;
}

.pricing-section .section-serif-title.dark-title {
    color: #0d082d;
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    margin-bottom: 5px;
    text-align: center;
}

.pricing-subtitle {
    color: #999;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 400;
}

.pricing-box.full-border {
    background: white;
    max-width: 500px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--gold);
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.old-price-strikethrough {
    color: #b0b0b0;
    font-size: 1.1rem;
    text-decoration: line-through;
    margin-bottom: 5px;
}

.price-display.serif-price {
    font-size: 3.8rem;
    font-weight: 700;
    color: #c67e14;
    font-family: 'Playfair Display', serif;
    margin: 5px 0;
    line-height: 1;
}

.price-conversion {
    color: #b0b0b0;
    font-size: 0.85rem;
    margin-bottom: 30px;
}

.checklist.es-checklist {
    list-style: none;
    text-align: left;
    margin: 0 auto 35px;
    padding: 0;
    max-width: 320px;
}

.checklist.es-checklist li {
    margin-bottom: 12px;
    font-size: 1rem;
    color: #444;
    display: flex;
    align-items: center;
    gap: 12px;
}

.checklist.es-checklist li::before {
    content: '✔';
    color: #0d082d;
    font-weight: bold;
    font-size: 1.1rem;
}

.btn-pricing-cta {
    display: block;
    width: 100%;
    background: #c67e14;
    color: #ffffff;
    font-weight: 600;
    padding: 18px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.btn-pricing-cta:hover {
    background: #a8660e;
    transform: scale(1.02);
}

.secure-text {
    margin-top: 20px;
    font-size: 0.85rem;
    color: #b0b0b0;
    letter-spacing: 0.5px;
}

.guarantee-box.es-guarantee {
    max-width: 600px;
    margin: 30px auto 0;
    background: #fbf4e6;
    padding: 35px 40px;
    border-radius: 10px;
    border: 1px solid var(--gold);
    text-align: center;
}

.guarantee-box.es-guarantee h4 {
    font-family: 'Playfair Display', serif;
    color: #0d082d;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.guarantee-box.es-guarantee p {
    color: #777;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ===== SEÇÃO FAQ ===== */
.faq-title-serif {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
}

.faq-list {
    max-width: 850px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.3);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    font-weight: 600;
    color: #ffffff;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

/* Seta Triângular Dourada (Corrigida sem o "X" distorcido) */
.faq-question::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 9px solid #e6a618;
    transition: transform 0.3s ease;
    margin-left: 15px;
    flex-shrink: 0;
}

.faq-item.active .faq-question::after {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px 20px 25px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    line-height: 1.6;
    display: none;
    font-size: 0.95rem;
}

.faq-item.active .faq-answer {
    display: block;
}

/* ===== SEÇÃO RODAPÉ CTA ===== */
.footer-cta-section {
    background-color: #2e2a5e;
    padding: 80px 20px 40px;
    text-align: center;
    color: #ffffff;
}

.footer-title-serif {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    max-width: 850px;
    margin: 0 auto 20px;
}

.footer-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 auto 35px;
    max-width: 700px;
    font-weight: 400;
}

.btn-footer-cta {
    display: inline-block;
    background-color: #e6a618;
    color: #0d082d;
    padding: 16px 45px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.btn-footer-cta:hover {
    background-color: #c48c13;
    transform: scale(1.03);
}

/* ===== RODAPÉ INFERIOR ===== */
.footer-bottom {
    background-color: #0a0828;
    padding: 30px 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Poppins', sans-serif;
}

.footer-text {
    font-size: 0.8rem;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.footer-text.disclaimer {
    margin: 0;
    font-size: 0.8rem;
}

/* ============================================== */
/* ===== RESPONSIVIDADE (TODOS OS DISPOSITIVOS) ===== */
/* ============================================== */
@media (max-width: 768px) {
    /* Header & Hero */
    .hero-fullscreen h1 { font-size: 2.5rem; }
    .hero-fullscreen .subtitle { font-size: 1rem; }
    .hero-fullscreen .desc { font-size: 0.9rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .btn-hero-primary, .btn-hero-secondary { width: 80%; text-align: center; }
    .logo-text { font-size: 1.2rem; }
    .btn-header-buy { padding: 6px 15px; font-size: 0.8rem; }

    /* Seções Gerais e Específicas */
    .section-dark .serif-title { font-size: 2rem; }
    .about-title-serif { font-size: 2.5rem; }
    .about-subtitle { font-size: 1rem; }
    .about-grid { grid-template-columns: 1fr; gap: 30px; }
    .gold-title-serif { font-size: 1.8rem; }
    .about-list li { font-size: 1rem; }
    .card-user { padding: 15px 20px; gap: 15px; }
    .section-serif-title { font-size: 2.5rem !important; }
    .grid-includes { grid-template-columns: 1fr; }
    .card-include { padding: 20px; }
    .include-header h3 { font-size: 1rem; }
    .btn-include { padding: 15px 30px; font-size: 1rem; text-align: center; }
    .testimonial-title-serif { font-size: 2.2rem; }
    .grid-testimonials { grid-template-columns: 1fr; }
    .bonus-card { flex: 1 1 100%; max-width: 100%; }
    .bonus-total-price { font-size: 2.2rem; }
    .btn-bonus-yellow { padding: 14px 30px; font-size: 1rem; width: 100%; }
    .pricing-section .section-serif-title.dark-title { font-size: 2.2rem; }
    .price-display.serif-price { font-size: 2.8rem; }
    .guarantee-box.es-guarantee { padding: 25px 20px; }
    .faq-title-serif { font-size: 2.5rem; }
    .faq-question { font-size: 0.95rem; padding: 15px 20px; }
    .faq-answer { font-size: 0.9rem; padding: 0 20px 15px 20px; }
    .footer-title-serif { font-size: 2.2rem; }
    .footer-subtitle { font-size: 1rem; }
    .btn-footer-cta { padding: 14px 30px; font-size: 1rem; width: 100%; box-sizing: border-box; }
    .footer-text, .footer-text.disclaimer { font-size: 0.7rem; padding: 0 10px; }
}


/* ===== BOTÃO VOLTAR AO TOPO ===== */
#btn-topo {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    width: 54px;    /* Tamanho ajustado */
    height: 54px;   /* Tamanho ajustado */
    border: none;
    border-radius: 50%;
    background-color: #e6a618;
    color: #0d082d; /* Cor do ícone */
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
    
    /* Centraliza o SVG perfeitamente */
    display: none; 
    align-items: center;
    justify-content: center;
}

#btn-topo:hover {
    background-color: #c48c13;
    transform: translateY(-3px) scale(1.05); /* Sobe levemente e cresce */
    box-shadow: 0 6px 20px rgba(230, 166, 24, 0.4);
}

#btn-topo svg {
    /* Ajuste fino para garantir que o ícone fique no centro exato */
    margin-top: -2px; 
}

/* Responsividade para celular */
@media (max-width: 768px) {
    #btn-topo {
        width: 46px;
        height: 46px;
        bottom: 20px;
        right: 20px;
    }
    #btn-topo svg {
        width: 22px;
        height: 22px;
    }
}


/* ===== MODAIS (Política e Termos) ===== */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: #ffffff;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    text-align: left;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 2rem;
    font-weight: 300;
    color: #aaa;
    cursor: pointer;
    transition: 0.3s;
}

.modal-close:hover {
    color: #000;
}

.modal-title {
    font-family: 'Playfair Display', serif;
    color: #0d082d;
    font-size: 2rem;
    margin-bottom: 20px;
}

.modal-body p, .modal-body li {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.modal-body h4 {
    color: #0d082d;
    margin-top: 15px;
    margin-bottom: 10px;
}

/* Personalização da barra de rolagem dentro do modal */
.modal-content::-webkit-scrollbar {
    width: 6px;
}
.modal-content::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.modal-content::-webkit-scrollbar-thumb {
    background: #e6a618;
    border-radius: 10px;
}

/* ==========================================
   Banner de Cookies
========================================== */

.cookie-banner {
	position: fixed;
	left: 20px;
	right: 20px;
	bottom: 20px;
	z-index: 9999;
	display: none;
}

.cookie-banner-content {
	max-width: 1100px;
	margin: 0 auto;
	background: #111827;
	border: 1px solid rgba(209, 151, 48, 0.35);
	border-radius: 14px;
	padding: 20px 24px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);

	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 25px;
}

.cookie-banner-text {
	flex: 1;
}

.cookie-banner-text h4 {
	margin: 0 0 7px;
	color: #ffffff;
	font-size: 1rem;
	font-weight: 600;
}

.cookie-banner-text p {
	margin: 0;
	color: rgba(255, 255, 255, 0.75);
	font-size: 0.86rem;
	line-height: 1.55;
}

.cookie-policy-link {
	display: inline-block;
	margin-top: 7px;
	color: #d19730;
	font-size: 0.82rem;
	font-weight: 600;
	text-decoration: none;
}

.cookie-policy-link:hover {
	text-decoration: underline;
}

.cookie-banner-actions {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}

.cookie-btn {
	border: none;
	border-radius: 8px;
	padding: 11px 20px;
	font-family: inherit;
	font-size: 0.85rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
}

.cookie-btn-reject {
	background: transparent;
	color: rgba(255, 255, 255, 0.8);
	border: 1px solid rgba(255, 255, 255, 0.25);
}

.cookie-btn-reject:hover {
	background: rgba(255, 255, 255, 0.08);
}

.cookie-btn-accept {
	background: #d19730;
	color: #111827;
}

.cookie-btn-accept:hover {
	transform: translateY(-1px);
	filter: brightness(1.05);
}

/* Mobile */
@media (max-width: 768px) {

	.cookie-banner {
		left: 12px;
		right: 12px;
		bottom: 12px;
	}

	.cookie-banner-content {
		padding: 18px;
		flex-direction: column;
		align-items: stretch;
		gap: 15px;
	}

	.cookie-banner-actions {
		width: 100%;
	}

	.cookie-btn {
		flex: 1;
	}

}
