/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --emerald-green: #2d5a3d;
    --aged-emerald: #4a7c59;
    --gold: #d4af37;
    --light-gold: #f4e4a6;
    --white: #ffffff;
    --cream: #faf9f7;
    --dark-text: #2c2c2c;
    --light-text: #666666;
    --gradient-primary: linear-gradient(135deg, var(--emerald-green) 0%, var(--aged-emerald) 100%);
    --gradient-gold: linear-gradient(135deg, var(--gold) 0%, var(--light-gold) 100%);
    --gradient-hero: linear-gradient(135deg, rgba(45, 90, 61, 0.9) 0%, rgba(74, 124, 89, 0.8) 100%);
}

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

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

/* Tipografia */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--emerald-green);
}

.highlight {
    color: var(--gold);
    font-style: italic;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><radialGradient id="flash" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:rgba(212,175,55,0.3);stop-opacity:1" /><stop offset="100%" style="stop-color:rgba(212,175,55,0);stop-opacity:0" /></radialGradient></defs><circle cx="20" cy="30" r="15" fill="url(%23flash)" /><circle cx="80" cy="70" r="20" fill="url(%23flash)" /><circle cx="60" cy="20" r="10" fill="url(%23flash)" /></svg>') no-repeat;
    background-size: cover;
    opacity: 0.6;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-image {
    text-align: center;
    position: relative;
}

.profile-image {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 0%; /* Removendo borda */
    border: none; /* Removendo borda */
    box-shadow: none; /* Removendo sombra */
    transition: transform 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.05);
}

.hero-text {
    color: var(--white);
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--light-gold);
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    opacity: 0.95;
}

/* Botões */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button.primary {
    background: var(--gradient-gold);
    color: var(--emerald-green);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.cta-button.secondary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(45, 90, 61, 0.3);
}

.cta-button.secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(45, 90, 61, 0.4);
}

.cta-button.large {
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
}

.cta-center {
    text-align: center;
    margin-top: 3rem;
}

/* Transformation Section */
.transformation {
    padding: 6rem 0;
    background: var(--cream);
}

.section-description {
    font-size: 1.3rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: var(--light-text);
    line-height: 1.8;
}

/* Benefits Section */
.benefits {
    padding: 6rem 0;
    background: var(--white);
}

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

.benefit-card {
    background: var(--cream);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--gold);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--emerald-green);
}

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

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--cream);
}

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

.about-image {
    text-align: center;
}

.about-photo {
    width: 350px;
    height: 350px;
    object-fit: cover;
    border-radius: 0%; /* Removendo borda */
    box-shadow: none; /* Removendo sombra */
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

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

.about-mission {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--emerald-green);
    font-weight: 500;
    padding: 1.5rem;
    background: var(--white);
    border-left: 4px solid var(--gold);
    border-radius: 10px;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: var(--white);
}

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

.testimonial-card {
    background: var(--cream);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    position: relative;
    transition: transform 0.3s ease;
}

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

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author strong {
    color: var(--emerald-green);
    font-size: 1.1rem;
}

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

/* Final CTA Section */
.final-cta {
    padding: 6rem 0;
    background: var(--gradient-primary);
    text-align: center;
    color: var(--white);
}

.cta-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-description {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    background: var(--cream);
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: var(--white);
    border-radius: 15px;
    text-decoration: none;
    color: var(--emerald-green);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact-link.whatsapp:hover {
    background: #25d366;
    color: var(--white);
}

.contact-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
}

.contact-link i {
    font-size: 1.5rem;
}

/* Footer */
.footer {
    padding: 2rem 0;
    background: var(--emerald-green);
    color: var(--white);
    text-align: center;
}

/* CTA Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 24px;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 15px 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.05);
    box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.4);
}

.whatsapp-float i {
    margin-right: 10px;
}

/* Timeline Section */
.method {
    padding: 6rem 0;
    background: var(--cream);
}

.timeline {
    max-width: 800px;
    margin: 3rem auto 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--emerald-green);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: var(--emerald-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
    margin: 0 2rem;
}

.timeline-content {
    flex: 1;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.timeline-content h3 {
    color: var(--emerald-green);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

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

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: var(--white);
}

.accordion {
    max-width: 800px;
    margin: 3rem auto 0;
}

.accordion details {
    background: var(--cream);
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.02);
    overflow: hidden;
}

.accordion summary {
    padding: 1.5rem 2rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--emerald-green);
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
    list-style: none;
    position: relative;
}

.accordion summary::-webkit-details-marker {
    display: none;
}

.accordion summary::after {
    content: '+';
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.accordion details[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}

.accordion summary:hover {
    background-color: var(--light-gold);
}

.accordion details p {
    padding: 0 2rem 2rem;
    color: var(--light-text);
    line-height: 1.6;
    margin: 0;
}

/* Guarantee Section */
.guarantee {
    padding: 6rem 0;
    background: var(--cream);
    text-align: center;
}

.guarantee-content {
    max-width: 600px;
    margin: 3rem auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.guarantee-icon {
    width: 100px;
    height: 100px;
    background: var(--emerald-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
}

.guarantee-content p {
    font-size: 1.2rem;
    color: var(--light-text);
    line-height: 1.8;
}

.badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.badge {
    background: var(--emerald-green);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.badge i {
    font-size: 1.2rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .profile-image {
        width: 300px;
        height: 300px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-text .section-title {
        text-align: center;
    }
    
    .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 80px;
    }
    
    .timeline-item:nth-child(even) {
        flex-direction: row !important;
    }
    
    .timeline-icon {
        position: absolute;
        left: 0;
        margin: 0;
    }
    
    .timeline-content {
        margin-left: 1rem;
    }
    
    .badges {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .guarantee-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .profile-image {
        width: 250px;
        height: 250px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .cta-button.large {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
    }
    .whatsapp-float {
        font-size: 18px;
        padding: 10px 15px;
    }
    .whatsapp-float i {
        margin-right: 5px;
    }
    .timeline-item {
        padding-left: 70px;
    }
    
    .timeline-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .accordion summary {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .accordion summary::after {
        right: 1.5rem;
    }
    
    .accordion details p {
        padding: 0 1.5rem 1.5rem;
    }
}


/* Pain Points Grid */
.pain-points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pain-point-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.pain-point-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--gold);
}

.pain-point-card h3 {
    color: var(--emerald-green);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

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

/* How It Works Section */
.how-it-works {
    padding: 6rem 0;
    background: var(--white);
}

.how-it-works-content {
    max-width: 800px;
    margin: 3rem auto;
    text-align: center;
}

.how-it-works-content p {
    font-size: 1.2rem;
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Investment Section */
.investment {
    padding: 6rem 0;
    background: var(--cream);
}

.investment-list {
    max-width: 600px;
    margin: 3rem auto;
}

.investment-list ul {
    list-style: none;
    padding: 0;
}

.investment-list li {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    font-size: 1.1rem;
    color: var(--dark-text);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.investment-list li:last-child {
    border-bottom: none;
}

.investment-list li i {
    color: var(--emerald-green);
    margin-right: 1rem;
    font-size: 1.2rem;
}

/* Footer Social */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: var(--emerald-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-icon.whatsapp:hover {
    background: #25d366;
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.minimal-text {
    font-style: italic;
    opacity: 0.7;
}

/* Responsividade para novas seções */
@media (max-width: 768px) {
    .pain-points-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-social {
        gap: 1rem;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .pain-point-card {
        padding: 1.5rem;
    }
    
    .how-it-works-content p {
        font-size: 1rem;
    }
    
    .investment-list li {
        font-size: 1rem;
    }
}



.label-text {
    background-color: var(--aged-emerald);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 10px;
}


