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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #374151;
    background-color: #ffffff;
}

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

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1E3A8A;
}

.large-text {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.highlight {
    color: #F97316;
    font-weight: 800;
}

/* Botões */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #F97316, #EA580C);
    color: white;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
    background: linear-gradient(135deg, #EA580C, #DC2626);
}

/* Header */
.header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo h1 {
    font-size: 1.8rem;
    color: #1E3A8A;
    margin-bottom: 0;
}

.logo-subtitle {
    font-size: 0.9rem;
    color: #6B7280;
    margin: 0;
}

.header-cta {
    padding: 12px 24px;
    font-size: 1rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1E3A8A, #3B82F6);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.detail-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.detail-icon {
    font-size: 1.5rem;
}

.hero-cta {
    font-size: 1.3rem;
    padding: 20px 40px;
}

/* Expectation Break */
.expectation-break {
    padding: 80px 0;
    background: #F9FAFB;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Target Audience */
.target-audience {
    padding: 80px 0;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.audience-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.audience-card h3 {
    color: #1E3A8A;
    margin-bottom: 1rem;
}

/* Experience */
.experience {
    padding: 80px 0;
    background: #F9FAFB;
}

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

.experience-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.item-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.item-content h3 {
    color: #1E3A8A;
    margin-bottom: 0.5rem;
}

/* Differential */
.differential {
    padding: 80px 0;
}

.differential-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.differential-card {
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.differential-card.negative {
    background: #FEF2F2;
    border-left: 4px solid #EF4444;
}

.differential-card.positive {
    background: #F0FDF4;
    border-left: 4px solid #059669;
}

.differential-card h3 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.differential-card ul {
    list-style: none;
}

.differential-card li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
}

/* About Rayane */
.about-rayane {
    padding: 80px 0;
    background: #F9FAFB;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.quote {
    font-size: 1.3rem;
    font-style: italic;
    color: #1E3A8A;
    border-left: 4px solid #F97316;
    padding-left: 1.5rem;
    margin: 2rem 0;
    line-height: 1.6;
}

.author {
    font-weight: 600;
    color: #F97316;
    margin-bottom: 1.5rem;
}

.bio {
    font-size: 1.1rem;
    line-height: 1.7;
}

.image-placeholder {
    background: #E5E7EB;
    border-radius: 12px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6B7280;
    font-weight: 500;
}

/* Event Details */
.event-details {
    padding: 80px 0;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.detail-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.detail-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.detail-header .detail-icon {
    font-size: 2rem;
}

.detail-card h3 {
    color: #1E3A8A;
    margin: 0;
}

.detail-card p {
    font-size: 1.1rem;
    line-height: 1.5;
}

/* Investment */
.investment {
    padding: 80px 0;
    background: linear-gradient(135deg, #1E3A8A, #3B82F6);
    color: white;
    text-align: center;
}

.investment .section-title {
    color: white;
}

.price-card {
    background: white;
    color: #374151;
    padding: 3rem;
    border-radius: 16px;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.price-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1rem;
}

.currency {
    font-size: 2rem;
    font-weight: 600;
    color: #1E3A8A;
}

.amount {
    font-size: 4rem;
    font-weight: 800;
    color: #1E3A8A;
}

.price-installment {
    font-size: 1.2rem;
    color: #6B7280;
    margin-bottom: 2rem;
}

.payment-methods {
    margin-bottom: 2rem;
    text-align: left;
}

.payment-methods h4 {
    color: #1E3A8A;
    margin-bottom: 1rem;
}

.payment-methods ul {
    list-style: none;
}

.payment-methods li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
}

.urgency {
    background: #FEF2F2;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border: 2px solid #EF4444;
}

.urgency p {
    color: #DC2626;
    font-weight: 600;
    margin: 0;
}

.investment-cta {
    width: 100%;
    font-size: 1.2rem;
    padding: 18px;
}

/* FAQ */
.faq {
    padding: 80px 0;
    background: #F9FAFB;
}

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

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    background: #1E3A8A;
    color: white;
    padding: 1.5rem;
    margin: 0;
    cursor: pointer;
    font-size: 1.1rem;
}

.faq-answer {
    padding: 1.5rem;
    margin: 0;
    line-height: 1.6;
}

/* Newsletter */
.newsletter {
    padding: 80px 0;
    background: #1E3A8A;
    color: white;
    text-align: center;
}

.newsletter .section-title {
    color: white;
}

.newsletter-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.form-group input {
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    color: #374151;
}

.form-group input::placeholder {
    color: #9CA3AF;
}

.newsletter-cta {
    width: 100%;
    max-width: 400px;
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #F97316, #EA580C);
    color: white;
    text-align: center;
}

.final-cta-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.final-cta-text {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.final-cta-button {
    background: white;
    color: #F97316;
    font-size: 1.3rem;
    padding: 20px 40px;
    font-weight: 800;
}

.final-cta-button:hover {
    background: #F3F4F6;
    color: #EA580C;
}

/* Footer */
.footer {
    background: #374151;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: #F97316;
    margin-bottom: 1rem;
}

.footer-contact h4 {
    color: #F97316;
    margin-bottom: 1rem;
}

.footer-bottom {
    border-top: 1px solid #4B5563;
    padding-top: 2rem;
    text-align: center;
    color: #9CA3AF;
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .audience-grid {
        grid-template-columns: 1fr;
    }

    .differential-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .details-grid {
        grid-template-columns: 1fr;
    }

    .form-group {
        grid-template-columns: 1fr;
    }

    .final-cta-title {
        font-size: 2rem;
    }

    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .experience-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .price-main .amount {
        font-size: 3rem;
    }

    .final-cta-title {
        font-size: 1.8rem;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.audience-card,
.experience-item,
.differential-card,
.detail-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling para navegação */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

