/* Custom CSS for Profissão Organizer Landing Page */

:root {
    --background-black: #1a1a1a;
    --background-gray: #2F2F2F;
    --text-white: #ffffff;
    --text-dark: #333333;
    --text-gray: #666666;
    --cta-orange: #E55C00;
    --cta-orange-hover: #cc5200;
    --accent-light: #ffffff;
    --accent-dark: #000000;
    --success: #28A745;
    --danger: #DC3545;
    --warning: #FFC107;
    --border-light: #e0e0e0;
    --border-dark: #333333;
}

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

body {
    font-family: 'Lato', 'Nunito', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-gray);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', 'Cormorant', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* Default title colors for gray sections */
.about-section h1, .about-section h2, .about-section h3, .about-section h4, .about-section h5, .about-section h6,
.pensando-section h1, .pensando-section h2, .pensando-section h3, .pensando-section h4, .pensando-section h5, .pensando-section h6,
.new-author-section h1, .new-author-section h2, .new-author-section h3, .new-author-section h4, .new-author-section h5, .new-author-section h6,
.investment-section h1, .investment-section h2, .investment-section h3, .investment-section h4, .investment-section h5, .investment-section h6 {
    color: var(--text-dark);
}

/* White title colors for black sections */
.profissao-section h1, .profissao-section h2, .profissao-section h3, .profissao-section h4, .profissao-section h5, .profissao-section h6,
.descobrir-section h1, .descobrir-section h2, .descobrir-section h3, .descobrir-section h4, .descobrir-section h5, .descobrir-section h6,
.lead-capture-section h1, .lead-capture-section h2, .lead-capture-section h3, .lead-capture-section h4, .lead-capture-section h5, .lead-capture-section h6,
.pricing-options-section h1, .pricing-options-section h2, .pricing-options-section h3, .pricing-options-section h4, .pricing-options-section h5, .pricing-options-section h6 {
    color: var(--text-white);
}

p {
    margin-bottom: 1rem;
}

/* Countdown banner styles removed */

.mini-number {
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1;
    color: var(--text-white);
}

.mini-label {
    font-size: 0.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: var(--text-white);
    opacity: 0.9;
    margin-top: 0.1rem;
}

.banner-date {
    font-size: 0.7rem;
    margin: 0;
    opacity: 0.9;
    color: var(--text-white);
}

/* New Hero Section - Clean & Elegant Design */
.new-hero-section {
    background: #FAFAFA;
    padding: 2rem 0 3rem 0;
    margin-bottom: 0;
    color: #333;
}

.new-hero-content {
    max-width: 100%;
}

/* Hero Header */
.hero-header {
    margin-bottom: 1.5rem;
}

.hero-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.new-hero-title {
    font-size: 1.3rem !important;
    color: #444 !important;
    font-weight: 500 !important;
    margin-bottom: 1rem !important;
    line-height: 1.4 !important;
    font-style: normal !important;
}

/* Hero Content Text */
.hero-content-text {
    margin-bottom: 1.5rem;
}

.hero-question {
    font-size: 1.3rem;
    color: #333 !important;
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.hero-header .hero-question {
    color: #835E54 !important;
}

.hero-description {
    font-size: 1.1rem;
    color: #444 !important;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.hero-benefits {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.hero-benefits p {
    font-size: 1rem;
    color: #555 !important;
    line-height: 1.6;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
}

.benefit-icon {
    font-size: 1.2rem;
    margin-right: 0.8rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

/* eBook Form Section */
.ebook-form-section {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-top: 3rem;
}

.ebook-mockup img {
    max-width: 280px;
    margin: 0 auto;
    display: block;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Form Styling */
.ebook-form-container {
    padding-left: 2rem;
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1rem;
    z-index: 2;
}

.ebook-form .form-control {
    background: #F9F9F9;
    border: 2px solid #E8C5B3;
    border-radius: 12px;
    padding: 0.9rem 0.9rem 0.9rem 3rem;
    font-size: 1rem;
    color: #333;
    transition: all 0.3s ease;
}

.ebook-form .form-control:focus {
    background: white;
    border-color: #DDAAAA;
    box-shadow: 0 0 0 3px rgba(221, 170, 170, 0.2);
    outline: none;
}

/* eBook CTA Button */
.btn-ebook-cta {
    background: linear-gradient(135deg, #E8C5B3 0%, #DDAAAA 100%);
    border: none;
    color: #444;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-ebook-cta:hover {
    background: linear-gradient(135deg, #DDAAAA 0%, #D4A4A4 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(221, 170, 170, 0.3);
    color: #333;
}

.btn-icon {
    font-size: 1.2rem;
}

/* Form Footer */
.form-footer {
    text-align: center;
}

.form-footer p {
    font-size: 0.9rem;
    color: #888;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.priority-icon {
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 991px) {
    .ebook-form-container {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .new-hero-title {
        font-size: 1.8rem;
    }
    
    .hero-question {
        font-size: 1.1rem;
    }
    
    .ebook-form-section {
        padding: 2rem 1.5rem;
    }
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-intro {
    margin-bottom: 1.5rem;
}

.hero-text {
    font-size: 1.2rem;
    color: #ffffff !important;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.hero-highlight {
    font-size: 1.3rem;
    color: var(--cta-orange);
    font-weight: 600;
    margin-bottom: 1rem;
}

.ebook-offer {
    font-size: 1.2rem;
    color: var(--text-white);
    font-weight: 500;
    background: rgba(229, 92, 0, 0.1);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--cta-orange);
}

/* Video Container */
.video-container {
    margin-bottom: 1rem;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

/* Video CTA */
.video-cta {
    text-align: center;
    margin: 1rem 0 1rem 0;
    padding: 0.8rem;
    background: rgba(229, 92, 0, 0.1);
    border-radius: 12px;
    border-left: 4px solid var(--cta-orange);
}

.video-cta p {
    font-size: 1.2rem;
    color: var(--text-white);
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

/* New Intro Section Styles */
.intro {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 4rem 0;
    text-align: center;
}

.foto-tamara {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    margin-bottom: 1rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.mentor-subtitle {
    font-size: 1rem;
    color: #E55C00;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 1rem;
    margin-top: 0;
}

.descricao {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.descricao strong {
    color: #E55C00;
    font-weight: 600;
}

.titulo {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.subtitulo {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.beneficios {
    list-style: none;
    padding: 0;
    margin: 2rem auto;
    max-width: 400px;
    text-align: left;
}

.beneficios li {
    padding: 0.8rem 0;
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.beneficios li span {
    font-size: 1.2rem;
}

.botao-cta {
    background: #E55C00;
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-top: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(229, 92, 0, 0.3);
}

.botao-cta:hover {
    background: #cc5200;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(229, 92, 0, 0.4);
    color: white;
    text-decoration: none;
}

.cta-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.8rem;
    font-style: italic;
}

/* Secondary CTA Buttons */
.btn-cta-secondary {
    background: #E55C00;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(229, 92, 0, 0.25);
    border: none;
}

.btn-cta-secondary:hover {
    background: #cc5200;
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(229, 92, 0, 0.35);
    color: white;
    text-decoration: none;
}

.cta-button-section {
    margin: 2rem 0;
}

/* Responsive adjustments for intro section */
@media (max-width: 768px) {
    .intro {
        padding: 3rem 0;
    }
    
    .foto-tamara {
        width: 150px;
        height: 150px;
        margin-bottom: 1.5rem;
    }
    
    .titulo {
        font-size: 2rem;
    }
    
    .subtitulo {
        font-size: 1.1rem;
    }
    
    .beneficios {
        text-align: center;
    }
    
    .beneficios li {
        justify-content: center;
    }
}

/* Course Info Section */
.course-info-section {
    background: #404040 !important;
}

.course-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.course-card-title {
    color: #835E54 !important;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.course-card-text {
    color: #555 !important;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.btn-hero-main-cta {
    background: #E55C00;
    border: none;
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(229, 92, 0, 0.3);
    margin-bottom: 1rem;
}

.btn-hero-main-cta:hover {
    background: #cc5200;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(229, 92, 0, 0.4);
    color: white;
    text-decoration: none;
}

.cta-subtitle {
    font-size: 0.9rem;
    color: #666 !important;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Hero Form Card */
.hero-form-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(10px);
}

.form-card-title {
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    font-family: 'Crimson Pro', serif;
}

.hero-form .form-label {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.hero-form .form-control {
    border: 2px solid rgba(131, 94, 84, 0.3);
    border-radius: 8px;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: var(--accent-light);
}

.hero-form .form-control:focus {
    border-color: var(--cta-orange);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
    outline: 0;
}

.hero-cta-btn {
    background: linear-gradient(135deg, var(--cta-orange), var(--cta-orange-hover));
    border: none;
    color: var(--accent-light);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.hero-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5);
    color: var(--accent-light);
}

.form-support-text {
    margin-top: 1.5rem;
    text-align: center;
}

.form-support-text p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.form-support-text i {
    color: var(--cta-orange);
    margin-right: 0.5rem;
}

.benefits-list {
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.benefit-item i {
    color: var(--cta-orange);
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

.hero-image {
    text-align: center;
    padding: 1rem;
}

.ebook-cover {
    max-width: 400px;
    height: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

/* CTA Button */
.cta-button, .btn-primary {
    background-color: var(--cta-orange);
    border: none;
    color: var(--accent-light);
    padding: 12px 24px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover, .btn-primary:hover {
    background-color: var(--cta-orange-hover);
    color: var(--accent-light);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

/* Photo Placeholder */
.photo-placeholder {
    max-width: 400px;
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--accent-color) 0%, rgba(179, 189, 181, 0.3) 100%);
    border: 2px dashed var(--primary-color);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.photo-placeholder:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.photo-placeholder i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    opacity: 0.7;
}

.photo-placeholder p {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 600;
    margin: 0;
    font-family: 'Crimson Pro', serif;
}

/* About Section */
.about-section {
    background-color: var(--white);
    padding: 4rem 0;
    margin-bottom: 0;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-title {
    font-size: 2.2rem;
    color: var(--text-highlights);
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.3;
}

.about-description {
    font-size: 1.2rem;
    color: var(--text-main);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.learning-title {
    font-size: 1.8rem;
    color: var(--text-highlights);
    margin-bottom: 2rem;
    font-weight: 600;
}

.learning-list {
    margin-bottom: 2.5rem;
    text-align: left;
}

.learning-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    color: var(--text-main);
}

.learning-item i {
    color: var(--cta-primary);
    margin-right: 1rem;
    margin-top: 0.2rem;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.about-conclusion {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 500;
    line-height: 1.6;
}

.career-cta {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-weight: 600;
}

.pricing-section {
    background-color: var(--background-secondary);
    padding: 4rem 2.5rem;
    border-radius: 12px;
    margin: 4rem 0;
    box-shadow: 0 4px 20px rgba(77, 60, 47, 0.08);
}

.price-container {
    margin-bottom: 2rem;
}

.price-from {
    display: block;
    font-size: 1.1rem;
    color: var(--text-light);
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.price-current {
    display: block;
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 700;
    font-family: 'Crimson Pro', serif;
}

.buy-now-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(131, 94, 84, 0.3);
}

.buy-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(131, 94, 84, 0.5);
}

/* Uncertainty Section */
.uncertainty-section {
    background-color: var(--background-color);
}

.uncertainty-title {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    font-family: 'Crimson Pro', serif;
}

.uncertainty-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.uncertainty-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.uncertainty-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.uncertainty-icon i {
    font-size: 1.3rem;
}

.uncertainty-text h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-family: 'Crimson Pro', serif;
}

.uncertainty-text p {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.uncertainty-conclusion {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.6;
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, rgba(247, 237, 233, 0.8) 100%);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.uncertainty-placeholder {
    height: 600px;
    background: linear-gradient(135deg, rgba(179, 189, 181, 0.3) 0%, var(--accent-color) 100%);
}

/* About eBook Section */
.about-ebook-section {
    background-color: var(--white);
}

.about-ebook-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-family: 'Crimson Pro', serif;
}

.ebook-subtitle {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 600;
    font-family: 'Crimson Pro', serif;
    line-height: 1.3;
}

.ebook-description {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.ebook-highlight {
    background: linear-gradient(135deg, var(--accent-color) 0%, rgba(255, 252, 245, 0.8) 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    margin-top: 1.5rem;
}

.ebook-highlight p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.6;
}

.ebook-photo-placeholder {
    height: 450px;
    background: linear-gradient(135deg, var(--accent-color) 0%, rgba(201, 144, 124, 0.2) 100%);
    border: 2px dashed var(--secondary-color);
}

/* Discovery Section */
.discovery-section {
    background-color: var(--background-color);
}

.discovery-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    font-weight: 700;
    font-family: 'Crimson Pro', serif;
}

.discovery-items {
    margin-top: 2rem;
}

.discovery-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.discovery-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.discovery-item-title {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
    font-family: 'Crimson Pro', serif;
}

.discovery-item-text {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.discovery-placeholder {
    height: 550px;
    background: linear-gradient(135deg, rgba(247, 237, 233, 0.8) 0%, var(--accent-color) 100%);
    border: 2px dashed var(--primary-color);
}

/* New Author Section */
.new-author-section {
    background: #A08875;
    color: var(--white);
    padding: 80px 0;
}

.new-author-title {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 4rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    text-align: center;
}

.new-author-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.new-author-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.new-author-image {
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 15px;
}

.new-author-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.new-author-image img:hover {
    transform: scale(1.05);
}

.new-author-card-title {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.new-author-card-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

/* New Audience Section */
.new-audience-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.9) 100%);
    color: var(--white);
    padding: 80px 0;
    position: relative;
}

.new-audience-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(68, 55, 40, 0.9) 0%, rgba(131, 94, 84, 0.8) 100%);
    z-index: 1;
}

.new-audience-section .container {
    position: relative;
    z-index: 2;
}

.new-audience-title {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 4rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    text-align: center;
}

.new-audience-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
}

.new-audience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.new-audience-card-title {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
}

.new-audience-card-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

.new-audience-card-text strong {
    color: var(--white);
    font-weight: 600;
}

.target-title {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 3rem;
    font-weight: 700;
    font-family: 'Crimson Pro', serif;
}

.target-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
}

.target-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.target-icon {
    background: linear-gradient(135deg, var(--accent-color), rgba(255, 252, 245, 0.8));
    color: var(--primary-color);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.target-card:hover .target-icon {
    transform: scale(1.1);
}

.target-icon i {
    font-size: 2rem;
}

.target-card-title {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 600;
    font-family: 'Crimson Pro', serif;
}

.target-card-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

/* Investment Section */
.investment-section {
    background-color: var(--white);
    padding: 2rem 0;
}

.investment-image {
    text-align: center;
    padding: 1rem;
}

.investment-image img {
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.investment-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
}

.investment-cta-button {
    margin: 1rem 0;
    text-align: center;
}

.investment-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-family: 'Crimson Pro', serif;
    text-align: center;
}

.price-section {
    background: linear-gradient(135deg, var(--accent-color) 0%, rgba(247, 237, 233, 0.8) 100%);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 1rem;
    border-left: 4px solid var(--primary-color);
}

.price-from {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.price-current {
    font-size: 3rem;
    color: #e74c3c;
    font-weight: 700;
    font-family: 'Crimson Pro', serif;
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.guarantees {
    display: flex;
    gap: 2rem;
    margin-bottom: 0;
}

.guarantee-item {
    flex: 1;
    text-align: center;
    padding: 1.5rem;
    background: var(--background-color);
    border-radius: 12px;
}

.guarantee-number {
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: 700;
    font-family: 'Crimson Pro', serif;
    margin-bottom: 1rem;
}

.guarantee-text {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.4;
}

.guarantee-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

.investment-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.cta-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.investment-placeholder {
    height: 500px;
    background: linear-gradient(135deg, var(--accent-color) 0%, rgba(179, 189, 181, 0.3) 100%);
    border: 2px dashed var(--primary-color);
}

/* Benefits Section */
.benefits-section {
    background-color: var(--background-color);
}

/* eBook Showcase Section */
.ebook-showcase-section {
    background-color: var(--accent-color);
}

.showcase-content {
    padding: 2rem 0;
}

.showcase-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.showcase-subtitle {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.showcase-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.showcase-benefits {
    margin-bottom: 2rem;
}

.showcase-benefit {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.showcase-benefit i {
    color: #FFD700;
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

.showcase-cta {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.showcase-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(131, 94, 84, 0.4);
}

.showcase-image {
    text-align: center;
    padding: 1rem;
}

.showcase-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.section-title {
    font-size: 2.2rem;
    color: var(--text-dark);
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
}

.benefit-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 8px;
    background: var(--accent-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: none;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon i {
    font-size: 2rem;
    color: var(--white);
}

.benefit-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Lead Form Section */
.lead-form-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.form-container {
    background: var(--accent-color);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    color: var(--text-dark);
}

.form-title {
    font-size: 2rem;
    color: var(--text-dark);
    font-weight: 700;
}

.form-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
}

.form-control {
    border: 2px solid #E9ECEF;
    border-radius: 10px;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(111, 168, 220, 0.25);
}

.form-label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.submit-btn {
    background: var(--cta-orange);
    border: none;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-white);
}

.submit-btn:hover {
    background: var(--cta-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(229, 92, 0, 0.4);
}

.form-disclaimer {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--background-color);
}

.testimonial-card {
    background: var(--accent-color);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author strong {
    color: var(--text-dark);
    display: block;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* WhatsApp Support Button */
.whatsapp-support {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-btn {
    background: #25D366;
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background: #128C7E;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn i {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.whatsapp-text {
    font-weight: 500;
}

/* Target Audience Section - Nova seção com cor diferenciada */
.target-audience-section {
    background-color: var(--accent-color);
    background: linear-gradient(135deg, var(--accent-color) 0%, rgba(179, 189, 181, 0.3) 100%);
}

.target-title {
    font-size: 2.5rem;
    color: var(--text-highlights);
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-family: 'Crimson Pro', serif;
}

.target-subtitle {
    font-size: 1.2rem;
    color: var(--text-main);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.target-boxes {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.target-box {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--cta-primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.target-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.target-box h4 {
    font-size: 1.3rem;
    color: var(--text-highlights);
    margin-bottom: 0.8rem;
    font-weight: 600;
    font-family: 'Crimson Pro', serif;
}

.target-box p {
    color: var(--text-main);
    margin: 0;
    line-height: 1.5;
}

.target-image {
    display: flex;
    align-items: flex-start;
    height: 100%;
    padding-top: 60px;
}

.target-image img {
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--text-dark);
}

.footer p {
    margin: 0;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 0 3rem 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-text {
        font-size: 1.1rem;
    }
    
    .hero-highlight {
        font-size: 1.2rem;
    }
    
    .ebook-offer {
        font-size: 1.1rem;
        padding: 0.8rem;
    }
    
    .video-cta {
        margin: 1rem 0 1.5rem 0;
        padding: 0.8rem;
    }
    
    .video-cta p {
        font-size: 1.1rem;
    }
    
    .hero-form-card {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    
    .form-card-title {
        font-size: 1.3rem;
    }
    
    .hero-cta-btn {
        font-size: 0.9rem;
        padding: 0.8rem 1rem;
    }
    
    .form-support-text p {
        font-size: 0.85rem;
    }
    
    .identification-title {
        font-size: 2rem;
    }
    
    .identification-text p {
        font-size: 1.1rem;
    }
    
    .doubt-item {
        flex-direction: row;
        text-align: left;
        padding: 0.6rem;
    }
    
    .doubt-item span {
        font-size: 1rem;
    }
    
    .doubts-list li {
        font-size: 1rem;
        padding-left: 1.2rem;
    }
    
    .doubts-list li::before {
        font-size: 1rem;
    }
    
    .journey-quote {
        font-size: 1.2rem;
        padding-left: 1.5rem;
    }
    
    .transformation-title {
        font-size: 2rem;
    }
    
    .transformation-text p {
        font-size: 1.1rem;
    }
    
    .intro-text {
        font-size: 1.2rem !important;
    }
    
    .target-list li, .learning-list li {
        font-size: 1rem;
        padding-left: 1.5rem;
    }
    
    .target-list li::before, .learning-list li::before {
        font-size: 1rem;
    }
    
    .method-subtitle {
        font-size: 1.2rem;
        margin: 2rem 0 1rem 0;
    }
    
    .support-highlight {
        font-size: 1.1rem !important;
        padding: 1rem;
    }
    
    .transition-message {
        font-size: 1.2rem !important;
    }
    
    .ebook-gift-title {
        font-size: 2rem;
    }
    
    .ebook-gift-text p {
        font-size: 1.1rem;
    }
    
    .ebook-name {
        font-size: 1.5rem;
    }
    
    .ebook-description {
        font-size: 1rem;
    }
    
    .topic-item {
        padding: 0.6rem;
    }
    
    .topic-item span {
        font-size: 1rem;
    }
    
    .personal-message {
        font-size: 1.2rem !important;
        padding: 1rem;
    }
    
    .call-to-action-text {
        padding: 1rem;
    }
    
    .call-to-action-text p {
        font-size: 1.1rem;
    }
    
    .about-tamara-title {
        font-size: 2rem;
    }
    
    .about-tamara-text p {
        font-size: 1.1rem;
    }
    
    .introduction {
        font-size: 1.2rem !important;
    }
    
    .personal-story {
        padding: 0.8rem;
    }
    
    .current-success {
        padding: 1rem;
    }
    
    .mission-statement {
        padding: 1rem;
    }
    
    .mission-statement p {
        font-size: 1.2rem !important;
    }
    
    .support-quote {
        font-size: 1.2rem;
        padding-left: 1.5rem;
    }
    
    .final-cta-title {
        font-size: 2rem;
    }
    
    .final-cta-text p {
        font-size: 1.1rem;
    }
    
    .limited-spots {
        padding: 0.8rem;
    }
    
    .ebook-name {
        font-size: 1.5rem;
    }
    
    .ebook-topics-list li {
        font-size: 1rem;
        padding-left: 1.2rem;
    }
    
    .vip-title {
        font-size: 1.2rem;
    }
    
    .benefits-simple p {
        font-size: 1rem;
    }
    
    .final-form-clean {
        padding: 1.5rem;
    }
    
    .form-intro {
        font-size: 1rem;
    }
    
    .form-instruction {
        font-size: 1.2rem !important;
    }
    
    .final-form-container {
        padding: 1.5rem;
    }
    
    .final-form-container .form-control {
        padding: 0.8rem;
        font-size: 1rem;
    }
    
    .final-form-container .btn-cta {
        font-size: 1.1rem;
        padding: 0.8rem 1.5rem;
    }
    
    .final-message {
        padding: 1rem;
    }
    
    .final-message p {
        font-size: 1.2rem !important;
    }
    
    .footer-title {
        font-size: 1.3rem;
    }
    
    .social-link {
        padding: 0.6rem 1rem;
    }
    
    .social-link span {
        font-size: 1rem;
    }
    
    .institutional-link {
        padding: 0.6rem;
    }
    
    .institutional-link span {
        font-size: 0.9rem;
    }
    
    .legal-links {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .separator {
        display: none;
    }
    
    .footer-disclaimer {
        padding: 1rem;
        margin-top: 2rem;
    }
    
    .disclaimer-text {
        font-size: 0.8rem;
    }
    
    .whatsapp-float .whatsapp-btn {
        padding: 0.6rem 1rem;
    }
    
    .whatsapp-float .whatsapp-text {
        font-size: 0.9rem;
    }
}
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-title {
        font-size: 1.8rem;
    }
    
    .learning-title {
        font-size: 1.5rem;
    }
    
    .price-current {
        font-size: 2rem;
    }
    
    .pricing-section {
        padding: 2rem 1.5rem;
    }
    
    .buy-now-btn {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .photo-placeholder {
        height: 350px;
    }
    
    .photo-placeholder i {
        font-size: 3rem;
    }
    
    .uncertainty-title {
        font-size: 1.8rem;
    }
    
    .uncertainty-item {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .uncertainty-icon {
        width: 45px;
        height: 45px;
        margin-right: 1rem;
    }
    
    .uncertainty-text h4 {
        font-size: 1.1rem;
    }
    
    .uncertainty-placeholder {
        height: 400px;
    }
    
    .about-ebook-title {
        font-size: 2rem;
    }
    
    .ebook-subtitle {
        font-size: 1.5rem;
    }
    
    .ebook-description {
        font-size: 1.1rem;
    }
    
    .ebook-highlight {
        padding: 1rem;
    }
    
    .ebook-photo-placeholder {
        height: 350px;
    }
    
    .discovery-title {
        font-size: 2rem;
    }
    
    .discovery-item {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .discovery-item-title {
        font-size: 1.2rem;
    }
    
    .discovery-item-text {
        font-size: 1rem;
    }
    
    .discovery-placeholder {
        height: 400px;
    }
    
    .author-main-title {
        font-size: 2rem;
    }
    
    .author-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .author-card-title {
        font-size: 1.2rem;
    }
    
    .author-placeholder {
        height: 150px;
    }
    
    .target-title {
        font-size: 2rem;
    }
    
    .target-card {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .target-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .target-icon i {
        font-size: 1.5rem;
    }
    
    .target-card-title {
        font-size: 1.1rem;
    }
    
    .investment-title {
        font-size: 2rem;
    }
    
    .price-section {
        padding: 1.5rem;
    }
    
    .price-current {
        font-size: 2.5rem;
    }
    
    .guarantees {
        flex-direction: column;
        gap: 1rem;
    }
    
    .guarantee-item {
        padding: 1rem;
    }
    
    .guarantee-number {
        font-size: 2.5rem;
    }
    
    .investment-cta {
        padding: 1.5rem;
    }
    
    .investment-placeholder {
        height: 350px;
    }
    
    .showcase-title {
        font-size: 2rem;
    }
    
    .showcase-subtitle {
        font-size: 1.5rem;
    }
    
    .form-container {
        padding: 2rem 1.5rem;
    }
    
    .ebook-cover {
        max-width: 300px;
    }
    
    .whatsapp-btn {
        padding: 0.8rem 1.2rem;
    }
    
    .whatsapp-text {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-content {
        padding: 1rem 0;
    }
    
    .form-container {
        padding: 1.5rem 1rem;
    }
    
    .benefit-card {
        padding: 1.5rem 1rem;
    }
    
    .target-title {
        font-size: 1.8rem;
    }
    
    .target-subtitle {
        font-size: 1rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Form Validation */
.was-validated .form-control:valid {
    border-color: var(--success);
}

.was-validated .form-control:invalid {
    border-color: var(--danger);
}

/* Smooth Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Alert Customization */
.alert {
    border-radius: 10px;
    border: none;
    font-weight: 500;
}

.alert-success {
    background-color: rgba(40, 167, 69, 0.1);
    color: var(--success);
}

.alert-danger {
    background-color: rgba(220, 53, 69, 0.1);
    color: var(--danger);
}

.alert-info {
    background-color: rgba(111, 168, 220, 0.1);
    color: var(--primary-color);
}

/* Pricing Options Section */
.pricing-options-section {
    background: linear-gradient(135deg, #F7EDE9 0%, #FFFCFA 100%);
}

.pricing-card {
    background: var(--background-gray);
    border-radius: 15px;
    border: 1px solid var(--border-light);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-highlight {
    border: 2px solid #835E54;
    position: relative;
}

.pricing-highlight::before {
    content: "MAIS POPULAR";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #835E54;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.pricing-header {
    padding: 2rem 1.5rem 1rem;
}

.pricing-title {
    color: var(--text-dark);
    font-family: 'Crimson Pro', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.pricing-price {
    margin-bottom: 1rem;
}

.pricing-price .old-price {
    color: #dc3545;
    text-decoration: line-through;
    font-size: 1rem;
    display: block;
    margin-bottom: 0.3rem;
}

.pricing-price .current-price {
    color: #28a745;
    font-size: 1.8rem;
    font-weight: 700;
    display: block;
}

.pricing-content {
    padding: 0 1.5rem;
    flex-grow: 1;
}

.pricing-item {
    margin-bottom: 1rem;
    color: #443728;
    font-size: 0.95rem;
    line-height: 1.5;
}

.pricing-description {
    color: #666;
    font-style: italic;
    margin: 1.5rem 0;
    font-size: 0.9rem;
}

.pricing-footer {
    padding: 1.5rem;
    margin-top: auto;
}

.btn-pricing {
    background: var(--cta-orange);
    border: none;
    color: var(--accent-light);
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    text-align: center;
    width: 100%;
}

.btn-pricing:hover {
    background: var(--cta-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
    color: var(--accent-light);
    text-decoration: none;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, var(--background-color) 0%, rgba(247, 237, 233, 0.8) 100%);
    padding: 80px 0;
}

.faq-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.faq-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.faq-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    background: var(--white);
}

.faq-button {
    background: var(--white);
    border: none;
    padding: 1.5rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    transition: all 0.3s ease;
    border-radius: 12px;
    box-shadow: none;
}

.faq-button:not(.collapsed) {
    background: linear-gradient(135deg, #7D8F69 0%, #6B7A58 100%);
    color: var(--white);
}

.faq-button:hover {
    background: linear-gradient(135deg, #7D8F69 0%, #6B7A58 100%);
    color: var(--white);
}

.faq-button:focus {
    border: none;
    box-shadow: 0 0 0 3px rgba(125, 143, 105, 0.25);
}

.faq-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform 0.3s ease;
}

.faq-button.collapsed::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-answer {
    padding: 1.5rem 2rem;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    background: var(--white);
    border-top: 1px solid rgba(125, 143, 105, 0.1);
}

.accordion-collapse {
    border: none;
}

/* Price styling for investment section */
.price-old {
    color: #dc3545;
    text-decoration: line-through;
}

.price-highlight {
    color: #28a745;
    font-weight: 600;
}

/* Quiz Finish Button - Enhanced */
#finish-quiz-btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: var(--cta-primary);
    border: none;
    border-radius: 12px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(125, 143, 105, 0.4);
    transition: all 0.3s ease;
    animation: pulse-glow 2s infinite;
}

#finish-quiz-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(125, 143, 105, 0.6);
    background: #6B8E23;
}

#finish-quiz-btn:active {
    transform: translateY(0);
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(125, 143, 105, 0.4);
    }
    50% {
        box-shadow: 0 8px 25px rgba(125, 143, 105, 0.7);
    }
}

/* Main Content Section */
.main-content-section {
    background: linear-gradient(135deg, #F7EDE9 0%, #FFFCFA 100%);
    padding: 4rem 0;
}

.content-card {
    background: #FFFCFA;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: 0 15px 40px rgba(131, 94, 84, 0.15);
    border: 1px solid rgba(201, 144, 124, 0.2);
    max-width: 600px;
    margin: 0 auto;
}

.main-title {
    color: #835E54;
    font-family: 'Crimson Pro', serif;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.main-subtitle {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Brevo Form Styles */
.brevo-form-container {
    margin: 2rem 0;
}

.brevo-form {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(201, 144, 124, 0.2);
}

.brevo-form .form-label {
    color: #835E54;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.brevo-form .form-control {
    border: 2px solid rgba(201, 144, 124, 0.3);
    border-radius: 8px;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #FFFCFA;
}

.brevo-form .form-control:focus {
    border-color: #835E54;
    box-shadow: 0 0 0 0.2rem rgba(131, 94, 84, 0.25);
    outline: 0;
}

.info-text {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.info-text i {
    color: var(--cta-orange);
}

/* Countdown timer styles removed */











/* Section Alternating Backgrounds */
.about-section {
    background-color: var(--background-gray);
    color: var(--text-dark);
    padding: 4rem 0;
}

.identification-section {
    background-color: var(--background-black);
    color: var(--text-white);
    padding: 4rem 0;
}

.identification-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333 !important;
    margin-bottom: 2rem;
    line-height: 1.2;
    font-family: 'Crimson Pro', serif;
}

.identification-text p {
    font-size: 1.2rem;
    color: var(--text-white);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.doubts-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2rem 0;
}

.doubts-list li {
    color: var(--text-white);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    text-align: left;
}

.doubts-list li::before {
    content: "?";
    position: absolute;
    left: 0;
    color: var(--cta-orange);
    font-weight: 700;
    font-size: 1.2rem;
}

.journey-quote {
    font-size: 1.3rem;
    color: var(--cta-orange);
    font-weight: 600;
    font-style: italic;
    text-align: left;
    margin: 2.5rem 0 0 0;
    padding: 1.5rem 0 0 2rem;
    border-left: 4px solid var(--cta-orange);
    background: none;
    border-top: none;
    border-right: none;
    border-bottom: none;
    quotes: none;
}

.identification-image img {
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    width: 100%;
    height: auto;
}

.transformation-section {
    background-color: var(--background-gray);
    color: var(--text-white);
    padding: 4rem 0;
}

.transformation-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 2rem;
    line-height: 1.2;
    font-family: 'Crimson Pro', serif;
}

.transformation-text p {
    font-size: 1.2rem;
    color: var(--text-white);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.intro-text {
    font-size: 1.3rem !important;
    color: var(--text-white);
    font-weight: 500;
    margin-bottom: 1rem !important;
}

.target-list, .learning-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2rem 0;
}

.target-list li, .learning-list li {
    color: var(--text-white);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.target-list li::before {
    content: "✨";
    position: absolute;
    left: 0;
    color: var(--cta-orange);
    font-size: 1.2rem;
}

.learning-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--cta-orange);
    font-weight: 700;
    font-size: 1.3rem;
}

.method-subtitle {
    font-size: 1.4rem;
    color: var(--cta-orange);
    font-weight: 600;
    margin: 2.5rem 0 1.5rem 0;
    font-family: 'Crimson Pro', serif;
}

.support-highlight {
    font-size: 1.2rem !important;
    color: var(--text-white) !important;
    font-weight: 500;
    background: rgba(229, 92, 0, 0.08);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--cta-orange);
    margin: 2rem 0 !important;
    line-height: 1.5;
}

.transition-message {
    font-size: 1.3rem !important;
    color: var(--cta-orange) !important;
    font-weight: 600;
    font-style: italic;
    text-align: center;
    margin-top: 2rem !important;
    line-height: 1.4;
}

.transformation-image img {
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    width: 100%;
    height: auto;
}

/* eBook Gift Section - Block 4 */
.ebook-gift-section {
    background-color: var(--background-black);
    color: var(--text-white);
    padding: 4rem 0;
}

.ebook-gift-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 2rem;
    line-height: 1.2;
    font-family: 'Crimson Pro', serif;
}

.ebook-gift-text p {
    font-size: 1.2rem;
    color: var(--text-white);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.ebook-name {
    font-size: 1.8rem;
    color: var(--cta-orange);
    font-weight: 700;
    margin: 1.5rem 0 1rem 0;
    font-family: 'Crimson Pro', serif;
}

.ebook-description {
    font-size: 1.1rem;
    color: var(--text-white);
    margin-bottom: 1rem;
    font-weight: 500;
}

.ebook-topics-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2rem 0;
}

.ebook-topics-list li {
    color: var(--text-white);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.ebook-topics-list li::before {
    content: "📋";
    position: absolute;
    left: 0;
    font-size: 1rem;
}

.ebook-gift-text p strong {
    color: var(--cta-orange);
}

.ebook-gift-image {
    text-align: center;
    padding: 1rem;
}

.ebook-gift-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(229, 92, 0, 0.3);
    transition: transform 0.3s ease;
}

.ebook-gift-image img:hover {
    transform: scale(1.05);
}

/* About Tamara Section - Block 5 */
.about-tamara-section {
    background-color: var(--background-gray);
    color: var(--text-white);
    padding: 4rem 0;
}

.about-tamara-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 2rem;
    line-height: 1.2;
    font-family: 'Crimson Pro', serif;
}

.about-tamara-text p {
    font-size: 1.2rem;
    color: var(--text-white);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.about-tamara-text p strong {
    color: var(--cta-orange);
    font-weight: 700;
}

.support-quote {
    font-size: 1.3rem;
    color: var(--cta-orange);
    font-weight: 600;
    font-style: italic;
    text-align: left;
    margin: 2.5rem 0 0 0;
    padding: 1.5rem 0 0 2rem;
    border-left: 4px solid var(--cta-orange);
    background: none;
    border-top: none;
    border-right: none;
    border-bottom: none;
    quotes: none;
    font-family: 'Open Sans', sans-serif;
}

.about-tamara-image {
    text-align: center;
    padding: 1rem;
}

.about-tamara-image img {
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.about-tamara-image img:hover {
    transform: scale(1.02);
}

/* Final CTA Section - Block 6 */
.final-cta-section {
    background-color: var(--background-black);
    color: var(--text-white);
    padding: 4rem 0;
}

.final-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 2rem;
    line-height: 1.2;
    font-family: 'Crimson Pro', serif;
}

.final-cta-text p {
    font-size: 1.2rem;
    color: var(--text-white);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.course-info {
    color: var(--text-white);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.vip-benefits-section {
    margin: 2rem 0;
}

.vip-title {
    color: var(--cta-orange);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Crimson Pro', serif;
}

.benefits-simple {
    margin: 1rem 0;
}

.benefits-simple p {
    color: var(--text-white);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
}

.form-intro {
    color: var(--text-white);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.final-form-clean {
    background: rgba(255, 255, 255, 0.08);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.final-form-clean .form-control {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 1rem;
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.final-form-clean .form-control:focus {
    border-color: var(--cta-orange);
    box-shadow: 0 0 0 0.2rem rgba(229, 92, 0, 0.25);
    background: rgba(255, 255, 255, 1);
    outline: 0;
}

.final-form-clean .btn-cta {
    background: var(--cta-orange);
    border: none;
    border-radius: 8px;
    color: var(--text-white);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.final-form-clean .btn-cta:hover {
    background: #d44d00;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229, 92, 0, 0.3);
}

.final-message {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(229, 92, 0, 0.1);
    border-radius: 12px;
    border: 2px solid var(--cta-orange);
}

.final-message p {
    color: var(--cta-orange) !important;
    font-size: 1.3rem !important;
    font-weight: 600;
    margin-bottom: 0;
    font-style: italic;
}

.final-cta-image {
    text-align: center;
    padding: 1rem;
}

.final-cta-image img {
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(229, 92, 0, 0.3);
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.final-cta-image img:hover {
    transform: scale(1.02);
}

/* Footer Section - Block 7 */
.footer-section {
    background-color: var(--background-gray);
    color: var(--text-white);
    padding: 3rem 0 2rem 0;
    border-top: 2px solid var(--cta-orange);
}

.footer-title {
    color: var(--cta-orange);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: 'Crimson Pro', serif;
}

.social-links {
    margin-bottom: 1.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    color: var(--text-white);
    text-decoration: none;
    background: rgba(229, 92, 0, 0.1);
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    border-left: 3px solid var(--cta-orange);
    transition: all 0.3s ease;
    margin-bottom: 0.8rem;
}

.social-link:hover {
    background: rgba(229, 92, 0, 0.2);
    color: var(--cta-orange);
    transform: translateX(5px);
}

.social-link i {
    color: var(--cta-orange);
    font-size: 1.3rem;
    margin-right: 0.8rem;
}

.social-link span {
    font-size: 1.1rem;
    font-weight: 500;
}

.institutional-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.institutional-link {
    display: flex;
    align-items: center;
    color: var(--text-white);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.8rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.institutional-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--cta-orange);
    transform: translateX(3px);
}

.institutional-link i {
    color: var(--cta-orange);
    font-size: 1.1rem;
    margin-right: 0.8rem;
    width: 20px;
}

.institutional-link span {
    font-size: 1rem;
}

.footer-legal {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(229, 92, 0, 0.3);
}

.copyright {
    color: var(--text-white);
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.legal-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.legal-link {
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: var(--cta-orange);
    text-decoration: underline;
}

.separator {
    color: var(--text-white);
    opacity: 0.5;
}

.footer-disclaimer {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid var(--cta-orange);
    height: fit-content;
}

.disclaimer-text {
    color: var(--text-white);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
    font-style: italic;
}

/* Course Method Section */
.course-method-section {
    margin: 3rem 0;
    padding: 2.5rem 0;
}

.course-method-title {
    font-size: 1.8rem;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.course-method-title em {
    font-style: italic;
    color: #C9907C;
}

.method-pillar {
    background: rgba(255, 255, 255, 0.98) !important;
    padding: 1.5rem;
    border-radius: 12px;
    height: 100%;
    border: 2px solid rgba(131, 94, 84, 0.2) !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15) !important;
}

.method-pillar:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 1);
}

.method-pillar h3 {
    font-size: 1.2rem;
    color: #835E54 !important;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.method-pillar p {
    font-size: 0.95rem;
    color: #555555 !important;
    line-height: 1.5;
    margin: 0;
}

/* Curso Método Tâmara Organiza Section */
.curso-method-section {
    background: #4a4a4a !important;
    padding: 4rem 0;
}

.curso-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.curso-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.curso-card-title {
    color: #835E54;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    text-align: center;
}

.curso-card-text {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
    margin: 0;
}

/* Testimonials Section */
.testimonials-section {
    background: #f8f9fa !important;
    padding: 4rem 0;
}

.testimonial-card-new {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    position: relative;
}

.testimonial-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.quote-icon {
    font-size: 4rem;
    color: #C9907C;
    font-family: Georgia, serif;
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    border-top: 2px solid #f0f0f0;
    padding-top: 1rem;
}

.testimonial-author strong {
    color: #835E54;
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.testimonial-author span {
    color: #888;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Final Tâmara CTA Section */
.final-tamara-section {
    background: white !important;
    padding: 4rem 0;
}

.tamara-cta-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333333 !important;
    margin-bottom: 1.5rem;
}

.tamara-quote {
    background: #f8f9fa;
    border-left: 4px solid #E55C00;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.tamara-quote em {
    font-size: 1.2rem;
    color: #333333 !important;
    font-style: italic;
    line-height: 1.5;
}

/* Final Form Styles - Dark Theme */
.final-form-container {
    background: #404040;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    margin-top: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.final-form-title {
    color: #ffffff;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 500;
    line-height: 1.4;
}

.final-form .form-control {
    background: #f5f5f5;
    border: none;
    border-radius: 8px;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    color: #333 !important;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.final-form .form-control:focus {
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(229, 92, 0, 0.2);
    outline: none;
    color: #333 !important;
}

.final-form .btn-final-cta {
    background: #E55C00;
    border: none;
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.final-form .btn-final-cta:hover {
    background: #cc5200;
    transform: translateY(-1px);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-float .whatsapp-btn {
    display: flex;
    align-items: center;
    background: #25D366;
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    font-weight: 600;
}

.whatsapp-float .whatsapp-btn:hover {
    background: #20b954;
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    color: white;
}

.whatsapp-float .whatsapp-btn i {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.whatsapp-float .whatsapp-text {
    font-size: 1rem;
}

.descobrir-section {
    background-color: var(--background-black);
    color: var(--text-white);
    padding: 4rem 0;
}

.new-author-section {
    background-color: var(--background-gray);
    color: var(--text-dark);
    padding: 4rem 0;
}

.lead-capture-section {
    background-color: var(--background-black);
    color: var(--text-white);
    padding: 4rem 0;
}

.investment-section {
    background-color: var(--background-gray);
    color: var(--text-dark);
    padding: 4rem 0;
}

.pricing-options-section {
    background-color: var(--background-black);
    color: var(--text-white);
    padding: 4rem 0;
}

.lead-capture-card {
    background: var(--background-gray);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-dark);
}

.lead-capture-title {
    color: var(--text-white) !important;
    font-family: 'Crimson Pro', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.lead-capture-subtitle {
    color: var(--text-white) !important;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.benefits-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.benefit-item-form {
    display: flex;
    align-items: center;
    color: var(--text-white) !important;
    font-weight: 500;
    font-size: 1rem;
}

.benefit-item-form i {
    color: var(--cta-orange);
    font-size: 1.1rem;
}

.brevo-form-landing {
    background: var(--accent-light);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid var(--border-light);
}

.brevo-form-landing .form-label {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.brevo-form-landing .form-control {
    border: 2px solid var(--border-light);
    border-radius: 8px;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: var(--accent-light);
}

.brevo-form-landing .form-control:focus {
    border-color: var(--cta-orange);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
    outline: 0;
}

/* Mobile responsive for lead capture */
@media (max-width: 768px) {
    .lead-capture-card {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .lead-capture-title {
        font-size: 1.6rem;
    }
    
    .benefits-grid {
        flex-direction: column;
        gap: 1rem;
    }
    
    .benefit-item-form {
        justify-content: center;
        font-size: 0.95rem;
    }
}

/* Quiz Styles */
.quiz-lead-section {
    background: linear-gradient(135deg, #F7EDE9 0%, #FFFCFA 100%);
}

.quiz-container {
    background: #FFFCFA;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(131, 94, 84, 0.1);
    border: 1px solid rgba(201, 144, 124, 0.2);
}

.quiz-title {
    color: #835E54;
    font-family: 'Crimson Pro', serif;
    font-size: 2rem;
    font-weight: 600;
}

.quiz-subtitle {
    color: #666;
    font-size: 1.1rem;
}

.quiz-progress {
    text-align: center;
}

.progress {
    height: 8px;
    background-color: rgba(201, 144, 124, 0.2);
    border-radius: 10px;
    margin-bottom: 0.5rem;
}

.progress-bar {
    background: linear-gradient(135deg, #C9907C 0%, #835E54 100%);
    border-radius: 10px;
    transition: width 0.3s ease;
}

.progress-text {
    color: #835E54;
    font-size: 0.9rem;
    font-weight: 500;
}

.question-card {
    display: none;
    padding: 2rem 0;
}

.question-card.active {
    display: block;
    animation: fadeInUp 0.4s ease;
}

.question-title {
    color: #835E54;
    font-family: 'Crimson Pro', serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quiz-option {
    background: #FFFCFA;
    border: 2px solid rgba(201, 144, 124, 0.3);
    border-radius: 10px;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    margin-bottom: 0;
}

.quiz-option:hover {
    border-color: #C9907C;
    background: rgba(201, 144, 124, 0.05);
}

.quiz-option input[type="radio"] {
    margin-right: 1rem;
    margin-top: 0.2rem;
    transform: scale(1.2);
    accent-color: #835E54;
}

.quiz-option input[type="radio"]:checked + .option-text {
    color: #835E54;
    font-weight: 500;
}

.quiz-option:has(input[type="radio"]:checked) {
    border-color: #835E54;
    background: rgba(131, 94, 84, 0.1);
}

.option-text {
    color: #443728;
    font-size: 1rem;
    line-height: 1.4;
    flex: 1;
}

.quiz-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(201, 144, 124, 0.2);
}

.quiz-result-preview {
    background: rgba(131, 94, 84, 0.05);
    border-radius: 10px;
    padding: 2rem;
    border: 1px solid rgba(131, 94, 84, 0.2);
}

.result-title {
    color: #835E54;
    font-family: 'Crimson Pro', serif;
    font-size: 1.8rem;
    font-weight: 600;
}

.result-preview {
    color: #666;
}

/* Profissão Section */
.profissao-section {
    background-color: var(--background-main);
    padding: 4rem 0;
}

.profissao-image img {
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(77, 60, 47, 0.1);
    max-width: 100%;
    height: auto;
}

.profissao-title {
    font-size: 2.2rem;
    color: var(--text-highlights);
    margin-bottom: 2.5rem;
    font-weight: 700;
}

.profissao-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 1rem;
}

.profissao-icon {
    background-color: var(--cta-primary);
    color: var(--white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.3rem;
}

.profissao-icon i {
    font-size: 1.2rem;
}

.profissao-text h4 {
    font-size: 1.2rem;
    color: var(--text-highlights);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.profissao-text p {
    color: var(--text-main);
    margin-bottom: 0;
    line-height: 1.6;
}

.profissao-conclusion {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-top: 1.5rem;
    font-style: italic;
    line-height: 1.6;
}

/* Pensando Section */
.pensando-section {
    background-color: var(--accent-color);
    padding: 4rem 0;
}

.pensando-title {
    font-size: 2.2rem;
    color: var(--text-highlights);
    margin-bottom: 2rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.pensando-text {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.pensando-image img {
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(77, 60, 47, 0.1);
    max-width: 100%;
    height: auto;
}

.sobre-ebook-section {
    background-color: var(--background-secondary);
    border-radius: 12px;
    padding: 3rem;
    margin-top: 3rem;
    box-shadow: 0 8px 25px rgba(77, 60, 47, 0.08);
}

.sobre-ebook-title {
    font-size: 1.8rem;
    color: var(--text-highlights);
    margin-bottom: 2rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.sobre-ebook-text {
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.sobre-ebook-image img {
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(77, 60, 47, 0.1);
    max-width: 100%;
    height: auto;
}

/* Descobrir Section */
.descobrir-section {
    background-color: var(--background-color);
    padding: 4rem 0;
}

.descobrir-title {
    font-size: 2.2rem;
    color: var(--text-highlights);
    margin-bottom: 2.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.descobrir-item {
    background-color: var(--background-secondary);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--cta-primary);
}

.descobrir-item-title {
    font-size: 1.2rem;
    color: var(--text-highlights);
    margin-bottom: 0.8rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.descobrir-item-text {
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: 0;
    line-height: 1.6;
}

.descobrir-image {
    text-align: center;
    padding-left: 1rem;
    margin-top: 3rem;
}

.descobrir-image img {
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(77, 60, 47, 0.1);
    max-width: 90%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
}
    font-size: 1.1rem;
}

/* Quiz Invitation Page */
.quiz-invitation-section {
    background: linear-gradient(135deg, #F7EDE9 0%, #FFFCFA 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 2rem 0;
}

.quiz-invitation-card {
    background: #FFFCFA;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: 0 15px 40px rgba(131, 94, 84, 0.15);
    border: 1px solid rgba(201, 144, 124, 0.2);
    max-width: 600px;
    margin: 0 auto;
}

.quiz-invitation-title {
    color: #835E54;
    font-family: 'Crimson Pro', serif;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.quiz-invitation-subtitle {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.btn-primary {
    background-color: #7D8F69;
    border: none;
    font-weight: 600;
    color: #fff;
    font-size: 1.1rem;
    padding: 0.8rem 2.2rem;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(125, 143, 105, 0.25);
    transition: background-color 0.3s ease-in-out, transform 0.2s ease;
}

.btn-primary:hover {
    background-color: #637954;
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
}

.quiz-start-btn {
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 1rem 2.5rem;
    margin-bottom: 2rem;
}

/* Quiz benefits in invitation */
.quiz-benefits-main {
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
}

.benefit-item-main {
    display: flex;
    align-items: flex-start;
    color: #443728;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.benefit-item-main i {
    color: var(--cta-orange);
    font-size: 1.1rem;
    width: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.quiz-quick-info {
    border-top: 2px solid rgba(201, 144, 124, 0.2);
    padding-top: 1.5rem;
}

.quick-info-highlight {
    color: #835E54;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.quick-info-details {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.quick-info-details i {
    color: #C9907C;
}

/* Legacy quiz benefits for other pages */
.quiz-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    text-align: left;
    max-width: 300px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    color: #443728;
    font-size: 1rem;
    font-weight: 500;
}

.benefit-item i {
    color: #28a745;
    font-size: 1.1rem;
    width: 20px;
    flex-shrink: 0;
}

/* Mobile responsiveness for quiz */
@media (max-width: 768px) {
    .quiz-container {
        padding: 1.5rem;
    }
    
    .quiz-title {
        font-size: 1.6rem;
    }
    
    .question-title {
        font-size: 1.2rem;
    }
    
    .quiz-option {
        padding: 0.8rem 1rem;
    }
    
    .quiz-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .quiz-navigation .btn {
        width: 100%;
    }
    
    .quiz-benefits {
        margin-top: 1.5rem !important;
    }
    
    /* Quiz invitation mobile */
    .quiz-invitation-card {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .quiz-invitation-title {
        font-size: 1.8rem;
    }
    
    .quiz-invitation-subtitle {
        font-size: 1rem;
    }
    
    .quiz-start-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    /* Quiz benefits mobile */
    .quiz-benefits-main {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .benefit-item-main {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
    }
    
    .quick-info-highlight {
        font-size: 1rem;
    }
    
    .quick-info-details {
        font-size: 0.9rem;
    }
}

/* Form Title Hero Styles */
.form-title-hero {
    text-align: center;
    margin-bottom: 1.5rem;
}

.form-title-hero h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1.4;
    font-family: 'Crimson Pro', serif;
}

/* Hero Form Container */
.hero-form-container {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-top: 2rem;
    backdrop-filter: blur(10px);
}

/* Mobile responsive for form title */
@media (max-width: 768px) {
    .form-title-hero h3 {
        font-size: 1.2rem;
    }
    
    .hero-form-container {
        padding: 1.5rem;
    }
    
    /* Countdown banner styles removed */
}

/* Repeated Form Section */
.repeated-form-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

.repeated-form-container {
    background: #ffffff;
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.repeated-form-title {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 600;
    line-height: 1.4;
}

.repeated-form .form-control {
    padding: 1rem;
    font-size: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.repeated-form .form-control:focus {
    border-color: var(--cta-orange);
    box-shadow: 0 0 0 0.2rem rgba(229, 92, 0, 0.25);
    background: rgba(255, 255, 255, 1);
    outline: 0;
}

.repeated-form .btn-cta {
    font-size: 1.1rem;
    padding: 1rem 2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .repeated-form-container {
        padding: 2rem 1.5rem;
    }
    
    .repeated-form-title {
        font-size: 1.3rem;
    }
}

/* Unified Form Styles - Dark Theme */
.unified-form-container {
    background: #404040;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    margin: 2rem 0;
}

.unified-form-title {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.unified-form .form-control {
    background: #f5f5f5;
    border: none;
    border-radius: 8px;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    color: #333 !important;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.unified-form .form-control::placeholder {
    color: #666;
    font-weight: 400;
}

.unified-form .form-control:focus {
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(229, 92, 0, 0.2);
    outline: none;
    color: #333 !important;
}

.unified-form .btn-unified {
    background: #E55C00;
    border: none;
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.unified-form .btn-unified:hover {
    background: #cc5200;
    transform: translateY(-1px);
}

/* Mobile responsive for unified forms */
@media (max-width: 768px) {
    .unified-form-container {
        padding: 2rem 1.5rem;
    }
    
    .unified-form-title {
        font-size: 1rem;
    }
}

/* Force dark background for hero section */
header.hero-section,
.hero-section,
section.hero-section {
    background: #2F2F2F !important;
    background-color: #2F2F2F !important;
}

header.hero-section *:not(input):not(.form-control):not(.unified-form input):not(.method-pillar):not(.method-pillar *) {
    color: #ffffff !important;
}

/* Ensure method pillar text is always visible */
.course-method-section .method-pillar h3 {
    color: #835E54 !important;
}

.course-method-section .method-pillar p {
    color: #555555 !important;
}

.hero-section h1,
.hero-section h2,
.hero-section h3,
.hero-section p {
    color: #ffffff !important;
}

/* Force dark text in form inputs */
.unified-form input[type="text"],
.unified-form input[type="email"],
.unified-form input[type="tel"],
.form-control {
    color: #333333 !important;
    background: #f5f5f5 !important;
}

.unified-form input[type="text"]:focus,
.unified-form input[type="email"]:focus,
.unified-form input[type="tel"]:focus,
.form-control:focus {
    color: #333333 !important;
    background: #ffffff !important;
}

/* Ensure dark text in light background sections */
.identification-section,
.ebook-gift-section,
.testimonials-section {
    color: #333333 !important;
}

.identification-section *,
.ebook-gift-section *,
.testimonials-section * {
    color: #333333 !important;
}

.identification-section h1,
.identification-section h2,
.identification-section h3,
.ebook-gift-section h1,
.ebook-gift-section h2,
.ebook-gift-section h3,
.testimonials-section h1,
.testimonials-section h2,
.testimonials-section h3 {
    color: #835E54 !important;
}

.transformation-section,
.about-tamara-section {
    color: #333333 !important;
}

.transformation-section *,
.about-tamara-section * {
    color: #333333 !important;
}

.transformation-section h1,
.transformation-section h2,
.transformation-section h3,
.about-tamara-section h1,
.about-tamara-section h2,
.about-tamara-section h3 {
    color: #835E54 !important;
}
