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

:root {
    --background-main: #F9F7F4;
    --text-highlights: #4D3C2F;
    --text-main: #5F5147;
    --cta-primary: #C8A47E;
    --cta-hover: #A17C5B;
    --background-secondary: #EFEAE5;
    --white: #FFFFFF;
    --success: #28A745;
    --danger: #DC3545;
    --warning: #FFC107;
    --border-color: #E5E0DF;
}

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

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

/* 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;
    color: var(--text-highlights);
}

p {
    margin-bottom: 1rem;
}

/* Hero Section */
.hero-section {
    background-color: var(--background-main);
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.hero-row {
    min-height: auto;
    padding: 1rem 0;
}

.hero-content {
    padding: 1rem 0;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-highlights);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-title .highlight {
    color: var(--cta-primary);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-main);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.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-primary);
    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-primary);
    border: none;
    color: var(--white);
    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-hover);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(168, 124, 91, 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: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    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;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(131, 94, 84, 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-row {
        min-height: auto;
        padding: 1rem 0;
    }
    
    .hero-section {
        padding: 1.5rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .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: #FFFCFA;
    border-radius: 15px;
    border: 1px solid rgba(201, 144, 124, 0.2);
    box-shadow: 0 10px 30px rgba(131, 94, 84, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.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: #835E54;
    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: linear-gradient(135deg, #7D8F69 0%, #6B7A58 100%);
    border: none;
    color: white;
    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: linear-gradient(135deg, #6B7A58 0%, #8FA076 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(125, 143, 105, 0.3);
    color: white;
    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);
    }
}

/* 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: #7D8F69;
    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;
    }
}
