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

:root {
    --color-primary: #C9A961;
    --color-gold: #C9A961;
    --color-dark: #000000;
    --color-white: #FFFFFF;
    --color-gray: #1A1A1A;
    --color-gray-light: #2C2C2C;
    --font-serif: 'Playfair Display', 'Georgia', serif;
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

body {
    font-family: var(--font-sans);
    color: var(--color-white);
    line-height: 1.6;
    background: radial-gradient(ellipse at top, #1a1a1a 0%, #000000 100%);
}

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

/* Utility Classes */
.gold {
    color: var(--color-gold);
}

/* Header */
.header {
    background: linear-gradient(180deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.85) 100%);
    padding: 20px 0;
    border-bottom: 1px solid var(--color-gray-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.logo {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: bold;
    color: var(--color-gold);
    text-align: center;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(201, 169, 97, 0.5), 0 0 40px rgba(201, 169, 97, 0.3);
    transition: all 0.3s ease;
}

.logo:hover {
    text-shadow: 0 0 30px rgba(201, 169, 97, 0.8), 0 0 60px rgba(201, 169, 97, 0.5);
}

/* Hero Section */
.hero {
    background-color: var(--color-dark);
    padding: 60px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    padding-right: 20px;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 38px;
    line-height: 1.3;
    color: var(--color-white);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-white);
    margin-bottom: 30px;
    opacity: 0.9;
}

.vsl-container {
    background: linear-gradient(135deg, #2C2C2C 0%, #1A1A1A 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(201, 169, 97, 0.3), 0 0 0 1px rgba(201, 169, 97, 0.2);
    transition: all 0.4s ease;
}

.vsl-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(201, 169, 97, 0.4), 0 0 0 2px rgba(201, 169, 97, 0.4);
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 600px; /* Altura fixa para vídeo vertical */
    background: linear-gradient(135deg, var(--color-gray) 0%, var(--color-gray-light) 100%);
    border-radius: 12px;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 18px 40px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button.primary {
    background-color: var(--color-gold);
    color: var(--color-dark);
}

.cta-button.primary:hover {
    background-color: #B8954E;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.4);
}

.cta-button.secondary {
    background-color: transparent;
    color: var(--color-gold);
    border: 2px solid var(--color-gold);
}

.cta-button.secondary:hover {
    background-color: var(--color-gold);
    color: var(--color-dark);
}

.cta-button.large {
    padding: 20px 50px;
    font-size: 18px;
}

.guarantee-text {
    margin-top: 20px;
    font-size: 13px;
    color: var(--color-white);
    opacity: 0.7;
}

/* Section Styles */
.section {
    padding: 60px 0;
    border-top: 1px solid var(--color-gray-light);
}

.section-title {
    font-family: var(--font-serif);
    font-size: 32px;
    line-height: 1.3;
    color: var(--color-white);
    text-align: center;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-white);
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

/* Problem Section */
.problem-section {
    background-color: var(--color-gray);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 50px 0 30px;
}

.problem-item {
    background: linear-gradient(135deg, #2C2C2C 0%, #1A1A1A 100%);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(201, 169, 97, 0.2);
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.problem-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.1), transparent);
    transition: left 0.6s ease;
}

.problem-item:hover::before {
    left: 100%;
}

.problem-item:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 169, 97, 0.5);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.problem-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.problem-item p {
    font-size: 15px;
    line-height: 1.6;
}

.connection-text {
    text-align: center;
    font-size: 17px;
    font-style: italic;
    color: var(--color-white);
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Solution Section */
.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 50px;
}

.solution-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.solution-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(201, 169, 97, 0.2);
}

/* Modules Section */
.modules-section {
    background-color: var(--color-gray);
}

.modules-wrapper {
    overflow: hidden;
    margin-top: 50px;
    position: relative;
}

.modules-grid {
    display: flex;
    gap: 25px;
    animation: scroll 60s linear infinite;
    width: max-content;
}

.modules-grid:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% - 25px));
    }
}

.module-card {
    background: linear-gradient(135deg, #2C2C2C 0%, #1A1A1A 100%);
    padding: 35px;
    border-radius: 12px;
    border: 1px solid rgba(201, 169, 97, 0.2);
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    width: 350px;
}

.module-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.module-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--color-gold);
    box-shadow: 0 20px 50px rgba(201, 169, 97, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.module-card:hover::after {
    transform: scaleX(1);
}

.module-card.featured {
    border: 2px solid var(--color-gold);
    position: relative;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.1) 0%, #1A1A1A 100%);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.4), 0 0 60px rgba(201, 169, 97, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.module-card.featured::before {
    content: "⭐ DESTAQUE";
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--color-gold);
    color: var(--color-dark);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: bold;
    letter-spacing: 1.5px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.5);
}

.module-number {
    font-size: 13px;
    font-weight: bold;
    color: var(--color-gold);
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.module-title {
    font-family: var(--font-serif);
    font-size: 22px;
    color: var(--color-white);
    margin-bottom: 12px;
}

.module-description {
    font-size: 15px;
    color: var(--color-white);
    margin-bottom: 12px;
    opacity: 0.8;
}

.module-benefit {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-white);
    opacity: 0.9;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.gallery-grid img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(201, 169, 97, 0.15);
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--color-gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.testimonial-card {
    background: linear-gradient(135deg, #2C2C2C 0%, #1A1A1A 100%);
    padding: 35px;
    border-radius: 12px;
    border: 1px solid rgba(201, 169, 97, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 80px;
    font-family: var(--font-serif);
    color: rgba(201, 169, 97, 0.1);
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 169, 97, 0.4);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 15px;
    line-height: 1.8;
    font-style: italic;
    color: var(--color-white);
    opacity: 0.9;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(201, 169, 97, 0.2);
    padding-top: 15px;
}

.testimonial-author strong {
    font-size: 15px;
    color: var(--color-gold);
    margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 13px;
    color: var(--color-white);
    opacity: 0.7;
}

/* Offer Section */
.offer-section {
    background: linear-gradient(135deg, var(--color-gray) 0%, var(--color-dark) 100%);
}

.offer-box {
    max-width: 800px;
    margin: 50px auto 0;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.05) 0%, #1A1A1A 100%);
    padding: 50px;
    border-radius: 16px;
    border: 2px solid var(--color-gold);
    box-shadow: 0 20px 60px rgba(201, 169, 97, 0.4), 0 0 100px rgba(201, 169, 97, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.offer-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.offer-title {
    font-family: var(--font-serif);
    font-size: 26px;
    color: var(--color-white);
    margin-bottom: 30px;
    text-align: center;
}

.offer-list {
    list-style: none;
    margin-bottom: 35px;
}

.offer-list li {
    font-size: 16px;
    line-height: 2;
    padding: 12px 0;
    border-bottom: 1px solid rgba(201, 169, 97, 0.1);
}

.offer-list .value {
    color: var(--color-gold);
    font-size: 15px;
}

.price-box {
    text-align: center;
    padding: 35px 0;
    border-top: 2px solid var(--color-gold);
    border-bottom: 2px solid var(--color-gold);
    margin-bottom: 35px;
}

.old-price {
    font-size: 17px;
    color: var(--color-white);
    opacity: 0.7;
    margin-bottom: 10px;
}

.old-price span {
    text-decoration: line-through;
}

.installment-price {
    font-size: 38px;
    font-weight: bold;
    color: var(--color-gold);
    margin: 10px 0;
}

.installment-price span {
    font-size: 50px;
}

.cash-price {
    font-size: 18px;
    color: var(--color-white);
    opacity: 0.8;
}

.offer-box .cta-button {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
}

.offer-subtext {
    text-align: center;
    font-size: 13px;
    color: var(--color-white);
    font-style: italic;
    opacity: 0.7;
}

/* Guarantee Section */
.guarantee-section {
    background-color: var(--color-gray);
    text-align: center;
}

.guarantee-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 25px;
}

.guarantee-days {
    font-size: 22px;
    font-weight: bold;
    color: var(--color-gold);
    margin-top: 10px;
    letter-spacing: 2px;
}

.guarantee-text {
    font-size: 17px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Big Numbers Section */
.big-numbers-section {
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-gray) 50%, var(--color-dark) 100%);
    position: relative;
    overflow: hidden;
}

.big-numbers-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(201, 169, 97, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.big-numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.big-number-card {
    background: linear-gradient(135deg, #2C2C2C 0%, #1A1A1A 100%);
    padding: 40px 25px;
    border-radius: 16px;
    border: 1px solid rgba(201, 169, 97, 0.3);
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.big-number-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    transform: scaleX(0);
    transition: transform 0.6s ease;
}

.big-number-card:hover::before {
    transform: scaleX(1);
}

.big-number-card:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: var(--color-gold);
    box-shadow: 0 20px 50px rgba(201, 169, 97, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.big-number {
    font-family: var(--font-serif);
    font-size: 64px;
    font-weight: bold;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 15px;
    text-shadow: 0 0 30px rgba(201, 169, 97, 0.5);
}

.big-number::before {
    content: '+';
    font-size: 48px;
    margin-right: 5px;
    opacity: 0.8;
}

.big-number-label {
    font-size: 16px;
    font-weight: bold;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.big-number-desc {
    font-size: 13px;
    line-height: 1.6;
    color: var(--color-white);
    opacity: 0.7;
}

/* FAQ Section */
.faq-section {
    background-color: var(--color-gray);
}

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

.faq-item {
    background: linear-gradient(135deg, #2C2C2C 0%, #1A1A1A 100%);
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(201, 169, 97, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(201, 169, 97, 0.4);
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.2);
}

.faq-question {
    padding: 22px 28px;
    font-size: 17px;
    font-weight: bold;
    color: var(--color-white);
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--color-gray);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 26px;
    color: var(--color-gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 28px 22px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-white);
    opacity: 0.8;
}

/* Final CTA Section */
.final-cta-section {
    text-align: center;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 50px 0;
}

.option-card {
    background: linear-gradient(135deg, #2C2C2C 0%, #1A1A1A 100%);
    padding: 35px;
    border-radius: 12px;
    border: 1px solid rgba(201, 169, 97, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
}

.option-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 169, 97, 0.4);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.3);
}

.option-card.highlight {
    background: linear-gradient(135deg, var(--color-gold) 0%, #B8954E 100%);
    color: var(--color-dark);
    transform: scale(1.05);
    border: none;
    box-shadow: 0 20px 60px rgba(201, 169, 97, 0.6), 0 0 80px rgba(201, 169, 97, 0.3);
    position: relative;
    overflow: hidden;
}

.option-card.highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.option-card.highlight:hover {
    transform: scale(1.08);
    box-shadow: 0 25px 70px rgba(201, 169, 97, 0.7), 0 0 100px rgba(201, 169, 97, 0.4);
}

.option-card h3 {
    font-family: var(--font-serif);
    font-size: 20px;
    margin-bottom: 12px;
}

.option-card p {
    font-size: 15px;
    line-height: 1.6;
}

.option-card.highlight h3,
.option-card.highlight p {
    color: var(--color-dark);
}

.final-question {
    font-family: var(--font-serif);
    font-size: 28px;
    color: var(--color-white);
    margin-bottom: 35px;
}

.urgency-text {
    margin-top: 20px;
    font-size: 15px;
    color: var(--color-gold);
    font-weight: bold;
}

/* Footer */
.footer {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 35px 0;
    text-align: center;
    border-top: 1px solid var(--color-gray-light);
}

.footer p {
    font-size: 13px;
    margin: 5px 0;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text {
        padding-right: 0;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .video-wrapper {
        height: 500px; /* Altura menor no mobile */
    }

    .section-title {
        font-size: 26px;
    }

    .solution-content,
    .about-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .modules-grid,
    .gallery-grid,
    .testimonials-grid,
    .options-grid,
    .big-numbers-grid,
    .problem-grid {
        grid-template-columns: 1fr;
    }

    .problem-item {
        padding: 25px 20px;
    }

    .problem-item p {
        font-size: 15px;
        line-height: 1.6;
    }

    .big-number {
        font-size: 48px;
    }

    .big-number::before {
        font-size: 36px;
    }

    .offer-box {
        padding: 35px 25px;
    }

    .installment-price {
        font-size: 30px;
    }

    .installment-price span {
        font-size: 40px;
    }
}
