/* 
   Filosofia - Final Identity Refinement
   Colors: Gold (#D4AF37), Black (#000000), White (#FFFFFF), Red (#FF0000)
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800;900&display=swap');

:root {
    --gold: #D4AF37;
    --black: #000000;
    --white: #FFFFFF;
    --red: #FF0000;
    --text-dark: #000000;
    --text-gray: #333333;
    --bg-light: #FFFFFF;
    --border-light: #EEEEEE;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.5;
    background-color: var(--white);
    overflow-x: hidden;
    padding-top: 70px; /* Offset for fixed top bar */
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 25px; /* 25px global lateral padding */
    width: 100%;
}

/* --- Placeholders --- */
.img-placeholder {
    background-color: #fcfcfc;
    border: 1px dashed #ddd;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.img-placeholder::after {
    content: 'Espaço para Imagem';
    color: #ccc;
    font-size: 0.8rem;
    font-weight: 600;
}

/* --- Animations --- */
@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5); }
    100% { transform: scale(1); box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3); }
}

/* --- Components --- */
.btn {
    display: block;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.2rem;
    text-transform: uppercase;
    transition: transform 0.2s;
    cursor: pointer;
    border: none;
    background-color: var(--gold);
    color: var(--black);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    animation: pulse 2s infinite ease-in-out;
}
.btn:hover {
    transform: scale(1.02);
    animation: none; /* Stop pulsing on hover for precision */
}

.btn-green, .btn-red { background-color: var(--gold); color: var(--black); }

/* --- Sections --- */
.top-bar {
    background-color: var(--red);
    color: var(--white);
    text-align: center;
    padding: 8px 15px;
    font-weight: 800;
    font-size: 0.95rem; /* Increased slightly as requested */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
}

.top-bar .container {
    padding: 0;
    line-height: 1.3;
}

.timer-wrapper {
    display: inline-block;
    margin-left: 8px;
    white-space: nowrap;
}

.timer-num {
    font-weight: 900 !important;
}

.hero {
    padding: 40px 0;
    text-align: center;
}
.badge-blue {
    background-color: var(--gold);
    color: var(--black);
    padding: 6px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 20px;
}
.hero h1 {
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--black);
}
.hero h1 span { 
    color: var(--gold); 
}
.outline-text {
    background-color: var(--gold);
    color: var(--black) !important;
    padding: 2px 10px;
    border-radius: 8px;
    display: inline-block;
    margin: 2px 0;
}

.video-box {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 9/16;
    background-color: #000;
    margin: 0 auto 30px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 4px solid var(--gold);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.pills-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    margin-bottom: 30px;
}
.pill {
    background-color: var(--white);
    color: var(--black);
    border: 1px solid var(--gold);
    border-radius: 50px;
    padding: 8px 25px;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.pill::before {
    content: '✓';
    color: #2ECC71; /* Vibrant Green */
    font-weight: 900;
    font-size: 1.2rem;
}

/* --- Problem Section --- */
.problem-section {
    background-color: #fcfcfc;
    padding: 60px 0 20px;
    text-align: center;
}
.problem-title { font-size: 2rem; margin-bottom: 30px; font-weight: 800; color: var(--black); }
.problem-title span { color: var(--gold); }

.problem-list {
    max-width: 600px;
    margin: 0 auto 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.problem-item {
    background-color: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
    font-weight: 600;
    color: var(--black);
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.imagine-text {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--black);
    max-width: 800px;
    margin: 0 auto 30px;
}

/* --- Bonus Cards --- */
.bonus-section { padding: 20px 0 80px; text-align: center; background-color: var(--white); }
.bonus-section h2 { font-size: 2.22rem; margin-bottom: 40px; font-weight: 900; color: var(--black); }

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}
.bonus-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 700px;
    margin: 0 auto 40px;
}

.bonus-card {
    background-color: var(--white);
    border: 1px solid var(--gold);
    border-radius: 20px;
    padding: 20px;
    color: var(--black);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    max-width: 100%;
}
.bonus-card .white-box {
    width: 100%;
    aspect-ratio: 1.25;
    background-color: #fcfcfc;
    border: 1px solid #eee;
    border-radius: 15px;
    margin-bottom: 15px;
}
.bonus-card h3 { font-size: 0.9rem; font-weight: 800; margin-bottom: 15px; min-height: 45px; text-transform: uppercase; color: var(--black); }
.btn-bonus { background-color: var(--gold); color: var(--black); padding: 10px 20px; border-radius: 50px; text-decoration: none; font-weight: 900; width: 100%; font-size: 0.8rem; text-align: center; }

.bonus-summary {
    background-color: var(--black);
    color: var(--white);
    padding: 25px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid var(--gold);
}

/* --- Pricing --- */
.pricing-section { padding: 80px 0; background-color: #fcfcfc; text-align: center; }
.pricing-title { font-size: 2.5rem; font-weight: 900; margin-bottom: 20px; color: var(--black); }
.pricing-title span { color: var(--gold); }

.warning-banner {
    background-color: var(--black);
    color: var(--gold);
    padding: 15px;
    border-radius: 12px;
    font-weight: 800;
    max-width: 600px;
    margin: 0 auto 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--gold);
}

.promo-banner {
    background-color: #FFF5F5;
    color: #C53030;
    padding: 15px 25px;
    border-radius: 15px;
    font-weight: 800;
    max-width: 650px;
    margin: 0 auto 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    border: 1px solid #FEB2B2;
    text-transform: uppercase;
    font-size: 0.95rem;
    box-shadow: 0 2px 8px rgba(197, 48, 48, 0.1);
}

.promo-banner .icon {
    font-size: 1.8rem;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.price-card {
    background-color: var(--white);
    border: 1px solid var(--border-light);
    padding: 40px 30px;
    border-radius: 25px;
    width: 380px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    max-width: 100%;
}
.price-card.featured { border: 2px solid var(--gold); }
.badge-popular {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--gold);
    color: var(--black);
    padding: 5px 25px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 0.85rem;
    white-space: nowrap;
}

.price-card h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 20px; color: var(--black); }
.price-card p.subtitle { font-size: 0.85rem; color: #666; margin-bottom: 20px; }

.price-box { 
    margin: 20px 0 35px; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--black);
}
.old-price { text-decoration: line-through; color: #999; font-size: 1.1rem; margin-bottom: 5px; }
.new-price { font-size: 3.8rem; font-weight: 900; color: var(--black); line-height: 1; margin: 10px 0; }
.new-price span { font-size: 1.6rem; vertical-align: top; margin-right: 4px; }

.benefits-list { list-style: none; text-align: left; margin-bottom: 30px; flex-grow: 1; color: var(--black); }
.benefits-list li { margin-bottom: 12px; font-weight: 600; font-size: 0.95rem; display: flex; align-items: flex-start; gap: 10px; }
.benefits-list li::before { content: '✓'; color: var(--gold); font-weight: 900; font-size: 1.2rem; }

.highlight-box {
    background-color: var(--white);
    border: 1px solid var(--gold);
    padding: 30px 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    text-align: left;
}
.highlight-box h4 { font-size: 0.95rem; color: var(--black); margin-bottom: 15px; text-align: center; text-transform: uppercase; font-weight: 900; }
.highlight-box .benefits-list { color: var(--black); }

/* --- Reviews --- */
.reviews-section { padding: 60px 0; text-align: center; background-color: var(--white); }
.reviews-section h2 { font-size: 2.2rem; font-weight: 900; margin-bottom: 40px; color: var(--black); }
.reviews-section h2 span { color: var(--gold); }

.review-carousel {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.review-carousel::-webkit-scrollbar { display: none; }
.carousel-item {
    min-width: 280px;
    height: 144px;
    background-color: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 20px;
}

/* --- Author --- */
.author-section { padding: 60px 0; text-align: center; background-color: #fcfcfc; }
.author-section h2 { font-size: 1.8rem; margin-bottom: 30px; font-weight: 800; color: var(--black); }
.author-section h2 span { color: var(--gold); }
.author-bio { max-width: 700px; margin: 0 auto; color: var(--black); font-size: 1.1rem; }

/* --- Guarantee --- */
.guarantee-box {
    background-color: var(--white);
    border: 1px solid var(--gold);
    border-radius: 30px;
    padding: 40px;
    max-width: 800px;
    margin: 60px auto;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}
.shield-placeholder {
    width: 80px;
    height: 80px;
    border: 1px dashed var(--gold);
    margin: 0 auto 20px;
}
.guarantee-box h2 { font-size: 1.8rem; margin-bottom: 15px; font-weight: 800; color: var(--black); }
.guarantee-box p { color: var(--black); }

/* --- FAQ --- */
.faq-section { padding: 80px 0; background-color: var(--white); }
.faq-section h2 { text-align: center; font-size: 2.2rem; font-weight: 900; margin-bottom: 40px; color: var(--black); }
.faq-section h2 span { color: var(--gold); }

.faq-container { max-width: 800px; margin: 0 auto; width: 100%; }
details { background-color: var(--white); border: 1px solid var(--border-light); border-radius: 12px; margin: 0 auto 10px; padding: 20px; cursor: pointer; width: 90%; max-width: 90%; }
summary { font-weight: 700; font-size: 1rem; list-style: none; position: relative; padding-right: 30px; color: var(--black); }
summary::after { content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 1.2rem; color: var(--gold); }
details[open] summary::after { content: '-'; }
details p { margin-top: 15px; color: var(--black); }

footer { 
    padding: 60px 0; 
    text-align: center; 
    font-size: 0.8rem; 
    color: var(--white); 
    background-color: var(--black);
    border-top: 1px solid var(--gold);
}

/* --- Animations --- */
.card-premium.visible, .bonus-card.visible, .pricing-card.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .hero h1 { font-size: 1.8rem; }
    .bonus-grid { grid-template-columns: 1fr; }
    .bonus-grid-2 { grid-template-columns: 1fr; }
    .pricing-grid { flex-direction: column; align-items: center; }
}

/* --- Modal Styles --- */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.85);
    z-index: 20000;
    justify-content: center;
    align-items: flex-start; /* Better for scrolling on mobile */
    padding: 20px;
    overflow-y: auto; /* Enable scroll */
}

.modal-content {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    position: relative;
    border: 2px solid var(--gold);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    margin: 20px auto; /* Margin for scrolling */
}
.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.8rem;
    color: #999;
    cursor: pointer;
    font-weight: 700;
}
.no-thanks {
    display: block;
    color: #999;
    text-decoration: underline;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 10px;
    cursor: pointer;
}

/* --- Books Carousel --- */
.books-carousel {
    overflow: hidden;
    padding: 30px 0;
    position: relative;
    width: 100%;
    border-top: 3px solid var(--gold);
    border-bottom: 3px solid var(--gold);
    background-color: rgba(212, 175, 55, 0.05); /* Subtle gold tint */
    cursor: grab;
}

.carousel-track {
    display: flex;
    width: max-content;
    will-change: transform;
}

.carousel-track img {
    width: 160px;
    height: 240px;
    object-fit: contain;
    margin: 0 15px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    background: #fff;
    padding: 5px;
    user-select: none;
    pointer-events: none; /* Prevents image drag ghosting */
}