/* DESIGN SYSTEM & VARIABLES */
:root {
    --bg-color: #F7F4EE; /* Off white/bege claro */
    --text-color: #1F1F1F; /* Preto elegante */
    --gold-color: #C6A15B; /* Dourado suave */
    --gold-hover: #b38f4d;
    --card-bg: #FFFFFF;
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Lora', serif;
}

/* RESET & GLOBAL STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Adicionando uma leve textura ao fundo para o 'feel' de papel */
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style-position: inside;
}

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

/* BUTTONS */
.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.primary-cta {
    background-color: var(--gold-color);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(198, 161, 91, 0.3);
}

.primary-cta:hover {
    background-color: var(--gold-hover);
    box-shadow: 0 6px 20px rgba(198, 161, 91, 0.4);
    transform: translateY(-2px);
}

/* 1. HERO SECTION */
.hero-section {
    padding: 6rem 0 4rem;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.subheadline {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #4a4a4a;
}

.subheadline ul {
    margin: 1rem 0;
    padding-left: 1rem;
}

.subheadline ul li {
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
    list-style-type: none;
    position: relative;
    padding-left: 1.5rem;
}

.subheadline ul li::before {
    content: "•";
    color: var(--gold-color);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -4px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mockup-placeholder {
    width: 100%;
}

/* 5. SOCIAL PROOF */
.social-proof {
    padding: 4rem 0;
    text-align: center;
    border-top: 1px solid rgba(198, 161, 91, 0.2);
    border-bottom: 1px solid rgba(198, 161, 91, 0.2);
    background-color: #FFFFFF;
}

.social-proof h2 {
    font-size: 2rem;
    color: var(--gold-color);
    font-weight: 500;
    margin-bottom: 3rem;
}

.testimonials-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.testimonial-card {
    background-color: var(--bg-color);
    padding: 2rem;
    border-radius: 8px;
    flex: 1;
    max-width: 350px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border: 1px solid rgba(198, 161, 91, 0.1);
}

.stars {
    color: var(--gold-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #eaeaea;
    border: 2px solid var(--gold-color);
}

.author-info span {
    font-weight: 600;
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

/* 2. BENEFITS SECTION */
.benefits-section {
    padding: 6rem 0;
    text-align: center;
}

.benefits-section h2 {
    font-size: 2.8rem;
    margin-bottom: 4rem;
}

.cards-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.card {
    background-color: var(--card-bg);
    padding: 3rem 2rem;
    border-radius: 8px;
    flex: 1;
    max-width: 450px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(198, 161, 91, 0.1);
    transition: transform 0.3s ease;
}

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

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--gold-color);
}

.card ul {
    list-style: none;
}

.card ul li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.card ul li::before {
    content: "✓";
    color: var(--gold-color);
    position: absolute;
    left: 0;
}

/* 3. EMOCIONAL SECTION */
.emotional-section {
    padding: 6rem 0;
    text-align: center;
    background-color: #FFFFFF;
}

.emotional-section h2 {
    font-size: 2.5rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.3;
}

.emotional-text {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
}

.emotional-text p {
    margin-bottom: 2rem;
}

/* HERO FORM */
.hero-form-wrapper {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-top: 3px solid var(--gold-color);
    margin-top: 2rem;
}

.hero-form-wrapper .form-row {
    display: flex;
    gap: 1rem;
}

.hero-form-wrapper .form-group {
    flex: 1;
    margin-bottom: 1.5rem;
    text-align: left;
}

.hero-form-wrapper label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.95rem;
    color: #4a4a4a;
}

.hero-form-wrapper input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: #fafafa;
}

.hero-form-wrapper input:focus {
    outline: none;
    border-color: var(--gold-color);
    background-color: #fff;
}

.hero-form-wrapper .form-submit {
    width: 100%;
    padding: 1rem;
}

.privacy-notice {
    font-size: 0.85rem;
    color: #888;
    margin-top: 1rem;
    text-align: center;
}

/* 6. ABOUT SECTION */
.about-section {
    padding: 4rem 0;
    text-align: center;
    background-color: #FFFFFF;
}

.about-section h2 {
    font-size: 2rem;
    color: var(--gold-color);
    margin-bottom: 1.5rem;
}

.about-section p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 1rem;
    color: #555;
}

/* 7. FINAL CTA */
.final-cta-section {
    padding: 6rem 0;
    text-align: center;
}

.final-cta-section h2 {
    font-size: 3rem;
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* FOOTER */
footer {
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.05);
    font-size: 0.9rem;
    color: #777;
    background-color: #FFFFFF;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .hero-section {
        padding: 4rem 0 3rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .subheadline ul li {
        text-align: left;
        display: inline-block;
        width: 100%;
    }

    .cards-container {
        flex-direction: column;
    }

    .benefits-section h2, .emotional-section h2, .final-cta-section h2 {
        font-size: 2rem;
    }

    .hero-form-wrapper {
        padding: 1.5rem;
    }

    .hero-form-wrapper .form-row {
        flex-direction: column;
        gap: 0;
    }

    .testimonials-container {
        flex-direction: column;
        align-items: center;
    }
}

/* =========================================
   THANK YOU PAGE STYLES
   ========================================= */
.thank-you-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: var(--bg-color);
}

.thank-you-section {
    padding: 4rem 0;
    text-align: center;
    width: 100%;
}

.thank-you-content {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--card-bg);
    padding: 4rem 3rem;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    border-top: 4px solid var(--gold-color);
}

.thank-you-content h1 {
    font-size: 3rem;
    color: var(--gold-color);
    margin-bottom: 1rem;
}

.thank-you-content .subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #4a4a4a;
}

.alert-box {
    background-color: rgba(198, 161, 91, 0.1);
    border-left: 4px solid var(--gold-color);
    padding: 1.5rem;
    margin-bottom: 3rem;
    text-align: left;
    border-radius: 0 4px 4px 0;
}

.alert-box p {
    margin: 0;
    color: #555;
    font-size: 1.05rem;
}

.download-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
    align-items: center;
}

.download-btn {
    width: 100%;
    max-width: 400px;
    font-size: 1.1rem;
    text-transform: none;
    background-color: var(--gold-color);
}

.download-btn:hover {
    background-color: var(--gold-hover);
}

.separator {
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 3rem;
    margin-top: 1rem;
}

.social-invitation h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.social-invitation p {
    margin-bottom: 2rem;
    color: #666;
}

.social-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-btn {
    padding: 1rem 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    min-width: 220px;
    color: #ffffff !important;
}

.instagram-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 4px 15px rgba(220, 39, 67, 0.2);
}

.instagram-btn:hover {
    background: linear-gradient(45deg, #e08b2f 0%, #d56037 25%, #cb243e 50%, #bd205f 75%, #ae167e 100%);
    box-shadow: 0 6px 20px rgba(220, 39, 67, 0.4);
    transform: translateY(-2px);
}

.tiktok-btn {
    background-color: #000000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.tiktok-btn:hover {
    background-color: #1a1a1a;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .thank-you-content {
        padding: 2.5rem 1.5rem;
    }
    
    .thank-you-content h1 {
        font-size: 2.2rem;
    }

    .social-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .social-btn {
        width: 100%;
    }
}
