/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FF6B35;
    /* Orange */
    --primary-dark: #E85A2A;
    --secondary-color: #1A1A2E;
    /* Dark Blue */
    --secondary-light: #2A2A40;
    --accent-color: #FFD23F;
    /* Gold */
    --text-dark: #16213E;
    --text-mid: #4a4a4a;
    --text-light: #FFFFFF;
    --bg-light: #F9F9F9;
    --bg-white: #FFFFFF;
    --bg-dark: #0F0F1E;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
    cursor: url('../images/banana_cursor.png'), auto;
    /* Nana Banana Cursor */
}

a,
button,
.cta-button,
.faq-question {
    cursor: url('../images/banana_cursor.png'), pointer;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    cursor: pointer;
}

/* --- SEÇÃO 1: HERO --- */
.hero {
    background: linear-gradient(135deg, #0F0F1E 0%, #1A1A2E 100%);
    color: var(--text-light);
    padding: 60px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--bg-white);
    transform: skewY(-2deg);
}

.hero-logo {
    margin-bottom: 40px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-light);
    border: 2px solid var(--text-light);
    padding: 10px 20px;
    display: inline-block;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.headline {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.subheadline {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 400;
    color: #e0e0e0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-text-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 40px;
    border-left: 4px solid var(--primary-color);
    text-align: left;
}

.hero-text-box p {
    font-size: 1.1rem;
    color: #ddd;
}

.event-details {
    margin-bottom: 30px;
    background: var(--secondary-light);
    padding: 20px;
    border-radius: 10px;
    display: inline-block;
}

.event-details p {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.event-details p:last-child {
    margin-bottom: 0;
    color: #ff6b6b;
    font-weight: bold;
}

.price-hero {
    margin-bottom: 30px;
}

.price-strikethrough {
    display: block;
    font-size: 1.2rem;
    text-decoration: line-through;
    color: #888;
}

.price-highlight {
    display: block;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary-color);
}

/* CTA Buttons Global */
.cta-button {
    display: inline-block;
    background: linear-gradient(to right, #FF6B35, #FF8C42);
    color: white;
    font-size: 1.2rem;
    font-weight: 800;
    padding: 20px 40px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
    transition: transform 0.2s;
    text-transform: uppercase;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.5);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 107, 53, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
    }
}

.hero-image-placeholder {
    width: 100%;
    height: 400px;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    margin-top: 50px;
    border: 2px dashed #666;
    color: #aaa;
}

/* --- SEÇÃO 2: AUDIENCE --- */
.audience-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 60px;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.audience-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid var(--secondary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.audience-card:hover {
    transform: translateY(-5px);
}

.audience-card h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.audience-card p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-mid);
}

.center-cta {
    text-align: center;
    margin-top: 40px;
}

/* --- SEÇÃO 3: PROMISE --- */
.promise-section {
    padding: 80px 0;
    background: var(--secondary-color);
    color: var(--text-light);
}

.promise-section .section-title {
    color: var(--accent-color);
}

.section-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.benefits-list {
    max-width: 800px;
    margin: 0 auto 50px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
}

.check-icon {
    font-size: 1.5rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.benefit-item p {
    font-size: 1.15rem;
}

.offer-box-small {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.urgency-text {
    display: block;
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* --- SEÇÃO 4: CRONOGRAMA --- */
.schedule-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.schedule-subtitle {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.schedule-timeline {
    max-width: 900px;
    margin: 0 auto 50px;
    position: relative;
}

.schedule-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    width: 4px;
    background: #ddd;
    z-index: 1;
}

@media (min-width: 768px) {
    .schedule-timeline::before {
        left: 50%;
        transform: translateX(-50%);
    }
}

.schedule-block {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    border-left: 5px solid var(--primary-color);
}

.schedule-block.afternoon {
    border-left-color: var(--secondary-color);
}

.block-header {
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.time {
    background: var(--text-dark);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 10px;
}

.block-theme {
    display: block;
    color: #666;
    font-style: italic;
    margin-top: 5px;
}

.schedule-list {
    list-style: none;
}

.schedule-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
}

.schedule-list li::before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1rem;
    top: 5px;
}

.break-time {
    text-align: center;
    margin: 30px 0;
    position: relative;
    z-index: 2;
}

.break-time span {
    background: #e0e0e0;
    padding: 10px 30px;
    border-radius: 30px;
    font-weight: 700;
    color: var(--text-dark);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* --- SEÇÃO 5: SOCIAL PROOF --- */
.social-proof-section {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    /* Increased gap */
    margin: 60px 0;
    justify-content: center;
}

.testimonial-img {
    width: 100%;
    height: auto;
    /* max-height: 400px; Removed to prevent cutting */
    /* object-fit: cover; Removed to show full image */
    display: block;
    /* Removes bottom space */
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.testimonial-img:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* --- SEÇÃO 6: BIO --- */
.bio-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.bio-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: flex-start;
}

.bio-image {
    flex: 1;
    min-width: 300px;
}

.expert-photo {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: block;
}

.bio-text {
    flex: 1.5;
    min-width: 300px;
}

.bio-text h3 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.bio-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-mid);
}

.achievement-box {
    background: #fffaf0;
    border: 2px solid var(--accent-color);
    padding: 20px;
    border-radius: 10px;
    margin: 30px 0;
}

.achievement-box p {
    margin: 0;
    color: var(--primary-dark);
    font-weight: 600;
}

/* --- SEÇÃO 7 & 10: OFFERS / CTA --- */
.offer-section,
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #1A1A2E 0%, #0F0F1E 100%);
    color: white;
    text-align: center;
}

.persuasion-box {
    max-width: 800px;
    margin: 0 auto 60px;
}

.persuasion-box h2 {
    color: var(--accent-color);
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.persuasion-box p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #ddd;
}

.offer-card {
    background: white;
    color: var(--text-dark);
    max-width: 700px;
    margin: 0 auto;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    border-top: 10px solid var(--accent-color);
}

.price-strikethrough-large {
    display: block;
    color: #999;
    font-size: 1.5rem;
    text-decoration: line-through;
    margin-bottom: 10px;
}

.price-final {
    font-size: 3.5rem;
    color: var(--primary-color);
    font-weight: 900;
    margin-bottom: 10px;
}

.scarcity-alert {
    color: #d63031;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.offer-details {
    padding: 30px;
    background: #f9f9f9;
    border-radius: 10px;
    margin-bottom: 40px;
    text-align: left;
}

.offer-benefits {
    list-style: none;
    margin-top: 20px;
}

.offer-benefits li {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.cta-button-large {
    font-size: 1.5rem;
    padding: 25px 50px;
    width: 100%;
    display: block;
}

/* --- SEÇÃO 8: GUARANTEE --- */
.guarantee-section {
    padding: 60px 0;
    background: #f0f0f0;
}

.guarantee-box {
    display: flex;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.guarantee-icon {
    font-size: 4rem;
    margin-right: 40px;
    flex-shrink: 0;
}

.guarantee-content h2 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.cta-button-outline {
    display: inline-block;
    margin-top: 20px;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s;
}

.cta-button-outline:hover {
    background: var(--secondary-color);
    color: white;
}

/* --- SEÇÃO 9: FAQ --- */
.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 25px 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding-bottom: 25px;
    color: #666;
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    /* Arbitrary large height */
}

/* --- FOOTER --- */
.footer {
    background: black;
    color: #666;
    padding: 30px 0;
    text-align: center;
    font-size: 0.9rem;
}

/* --- FINAL CTA SECTION --- */
.section-title-light {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.final-price {
    margin: 40px 0;
}

.final-old {
    text-decoration: line-through;
    color: #888;
    font-size: 1.5rem;
    margin-right: 20px;
}

.final-current {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
}

/* RESPONSIVE TWEAKS */
@media (max-width: 768px) {
    .headline {
        font-size: 2rem;
    }

    .guarantee-box {
        flex-direction: column;
        text-align: center;
    }

    .guarantee-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .bio-content-wrapper {
        flex-direction: column;
    }

    .offer-card {
        padding: 30px 20px;
    }

    .cta-button-large {
        font-size: 1.2rem;
        padding: 20px;
    }

    .final-current {
        font-size: 2.2rem;
        display: block;
        margin-top: 10px;
    }
}
