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

body {
    font-family: 'Inter', sans-serif;
    background-color: #0D0D0D;
    color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

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

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #C9A84C;
    text-decoration: none;
}

.menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.menu a {
    color: #CCCCCC;
    text-decoration: none;
    transition: color 0.3s;
}

.menu a:hover {
    color: #C9A84C;
}

.cta-header {
    background: linear-gradient(135deg, #C9A84C, #D4B85A);
    color: #0D0D0D;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s;
}

.cta-header:hover {
    transform: translateY(-2px);
}

/* Hero */
#hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/hero.webp') no-repeat center center/cover;
    padding: 120px 0 80px;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.hero p {
    font-size: 1.3rem;
    color: #CCCCCC;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.cta {
    background: linear-gradient(135deg, #C9A84C, #D4B85A);
    color: #0D0D0D;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
}

.cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(201, 168, 76, 0.4);
}

/* Sections */
section {
    padding: 80px 0;
}

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

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #C9A84C;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #CCCCCC;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.bg-dark { background: #1A1A1A; }
.bg-darker { background: #141414; }

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

#receber .cards-grid {
    grid-template-columns: repeat(4, 1fr);
}

.card {
    background: #1E1E1E;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(201, 168, 76, 0.15);
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    transition: all 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    border-color: #C9A84C;
    box-shadow: 0 10px 40px rgba(201, 168, 76, 0.2);
}

.benefit-number {
    font-size: 3rem;
    color: #C9A84C;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    display: block;
    margin-bottom: 1rem;
}

/* Modules */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.module {
    background: #1E1E1E;
    border-radius: 10px;
    border-left: 4px solid #C9A84C;
    overflow: hidden;
    height: fit-content;
    transition: all 0.3s ease;
}

.module-header {
    padding: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s;
}

.module-header:hover {
    background: #2A2A2A;
}

.module-header h3 {
    font-size: 0.9rem;
    margin: 0;
    color: #FFFFFF;
}

.module-header i {
    font-size: 0.8rem;
    color: #C9A84C;
    transition: transform 0.3s;
}

.module-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #141414;
}

.module-content.active {
    max-height: 1000px; /* Large enough for content */
    padding: 1rem 1.2rem;
}

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

.module-content ul li {
    font-size: 0.85rem;
    padding: 0.4rem 0 0.4rem 1.5rem;
    color: #CCCCCC;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.module-content ul li:last-child {
    border-bottom: none;
}

/* Stats */
.stat-highlight {
    font-size: 2rem;
    color: #C9A84C;
    font-weight: 600;
    text-align: center;
    margin: 2rem 0;
}

/* Price & Pricing Card */
.pricing-card {
    background: #1E1E1E;
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(201, 168, 76, 0.2);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    text-align: center;
}

.pricing-card ul {
    display: inline-block;
    text-align: left;
    margin: 2rem 0;
}

.price-highlight {
    font-size: 3rem;
    color: #C9A84C;
    font-weight: 700;
    text-align: center;
    margin: 1rem 0 2rem;
    text-shadow: 0 0 20px rgba(201, 168, 76, 0.5);
}

.cta-container {
    margin-top: 2rem;
}

/* FAQ */
.faq-item {
    margin-bottom: 1rem;
    background: #1E1E1E;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #2A2A2A;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-answer.active {
    max-height: 500px;
    padding: 1rem 1.5rem 1.5rem;
}

/* Mentora Section Two-Column Layout */
.mentora-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.mentora-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.mentora-bio {
    text-align: left;
}

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

.mentora-bio .section-title::after {
    left: 0;
    transform: none;
}

.mentora-bio h3 {
    color: #C9A84C;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.mentora-bio p {
    margin-bottom: 1.2rem;
    color: #CCCCCC;
}

/* Garantia Section Two-Column Layout */
.garantia-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.garantia-image img {
    width: 100%;
    max-width: 450px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.garantia-text {
    text-align: left;
}

.garantia-text .section-title {
    text-align: left;
}

.garantia-text .section-title::after {
    left: 0;
    transform: none;
}

.garantia-text .section-subtitle {
    text-align: left;
    margin-left: 0;
}

.garantia-text p {
    font-size: 1.1rem;
    color: #CCCCCC;
}

/* Sobre Section Two-Column Layout */
.sobre-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.sobre-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.sobre-text {
    text-align: left;
}

.sobre-text .section-title {
    text-align: left;
}

.sobre-text .section-title::after {
    left: 0;
    transform: none;
}

/* Grid for testimonials and logos */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

#clinicas .section-title {
    color: #1A1A1A;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2.5rem;
    align-items: center;
    justify-items: center;
    margin-top: 3rem;
}

.logos-grid img {
    max-width: 130px;
    height: auto;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.logos-grid img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.testimonial {
    background: #1E1E1E;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(201, 168, 76, 0.1);
    transition: transform 0.3s ease;
}

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

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

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

.testimonial p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #CCCCCC;
}

/* Footer */
footer {
    background: #0D0D0D;
    padding: 40px 0 20px;
    text-align: center;
    border-top: 1px solid rgba(201, 168, 76, 0.15);
}

/* WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    z-index: 1000;
    animation: pulse 2s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Intro Section Two-Column Layout */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
}

.intro-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.intro-text .section-title,
.intro-text .section-subtitle,
.intro-text p {
    text-align: left;
    margin-left: 0;
}

.intro-text .section-title::after {
    left: 0;
    transform: none;
}

/* Stats Section Two-Column Layout */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.stats-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.stats-text .section-title,
.stats-text p,
.stats-text .stat-highlight {
    text-align: left;
}

.stats-text .section-title::after {
    left: 0;
    transform: none;
}

.stats-text p {
    margin-bottom: 1.2rem;
}

.stats-footer-text {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 1.4rem;
    margin-top: 2rem;
}

.stats-footer-text i {
    font-size: 2.5rem;
    color: #4A1D2C; /* Dark wine color from reference image */
}

/* Responsive */
@media (max-width: 768px) {
    .menu {
        display: none;
    }

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

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

    nav {
        flex-direction: column;
        gap: 1rem;
    }

    .intro-grid, .stats-grid, .modules-grid, #receber .cards-grid, .mentora-grid, .testimonials-grid, .garantia-grid, .sobre-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .logos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .intro-text, .stats-text, .mentora-bio, .garantia-text, .sobre-text,
    .intro-text .section-title, .stats-text .section-title, .mentora-bio .section-title, .garantia-text .section-title, .sobre-text .section-title,
    .intro-text .section-subtitle, .stats-text .section-subtitle, .garantia-text .section-subtitle,
    .intro-text p, .stats-text p, .stats-text .stat-highlight, .mentora-bio h3, .mentora-bio p, .garantia-text p {
        text-align: center;
    }

    .intro-text .section-title::after, .stats-text .section-title::after, .mentora-bio .section-title::after, .garantia-text .section-title::after, .sobre-text .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

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

/* List styles */
ul {
    list-style: none;
    padding-left: 0;
}

ul li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

ul li::before {
    content: '▶';
    color: #C9A84C;
    position: absolute;
    left: 0;
}

/* WhatsApp Floating Button & Popup */
.whatsapp-float-button {
    position: fixed !important;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 2147483647;
}

.whatsapp-float-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.whatsapp-float-button svg {
    width: 35px;
    height: 35px;
    fill: white;
}

.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2147483648;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.popup-overlay.active {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.popup-container {
    background-color: white;
    border-radius: 16px;
    padding: 30px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.3s ease;
    position: relative;
    color: #333;
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close-button {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    color: #999 !important;
    cursor: pointer;
    transition: color 0.2s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-button:hover {
    color: #333 !important;
}

.popup-header {
    text-align: center;
    margin-bottom: 25px;
}

.popup-header-icon {
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.popup-header-icon svg {
    width: 35px;
    height: 35px;
    fill: white;
}

.popup-header h2 {
    font-size: 22px;
    color: #333;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

.popup-header p {
    font-size: 14px;
    color: #666;
}

.popup-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.form-group input {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.2s ease;
    outline: none;
    width: 100%;
    color: #333;
}

.form-group input:focus {
    border-color: #25D366;
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.1);
}

.submit-button {
    border: none;
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

/* Botão WhatsApp (Verde com ícone) */
.submit-button.whatsapp-submit {
    background-color: #25D366;
    color: white;
}

.submit-button.whatsapp-submit:hover {
    background-color: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.submit-button.whatsapp-submit svg {
    width: 20px;
    height: 20px;
    fill: white;
}

/* Botão Checkout (Dourado com texto preto) */
.submit-button.checkout-submit {
    background: linear-gradient(135deg, #C9A84C, #D4B85A);
    color: #0D0D0D;
}

.submit-button.checkout-submit:hover {
    background: linear-gradient(135deg, #D4B85A, #C9A84C);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 168, 76, 0.3);
}

.submit-button svg {
    width: 20px;
    height: 20px;
}

.status-message {
    display: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    text-align: center;
    margin-top: 15px;
}

.status-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.status-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@media (max-width: 480px) {
    .whatsapp-float-button {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
}
