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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0a0a0a;
    overflow-x: hidden;
}

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

/* Tipografia */
h1, h2, h3 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: clamp(28px, 5vw, 48px);
    text-align: center;
    margin-bottom: 40px;
    color: #d4af37;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Botões CTA */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #000;
    text-decoration: none;
    padding: 20px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #f4d03f, #d4af37);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: clamp(32px, 6vw, 64px);
    color: #d4af37;
    margin-bottom: 30px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: clamp(18px, 3vw, 24px);
    margin-bottom: 40px;
    color: #cccccc;
    line-height: 1.5;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

/* Seção da Dor */
.pain-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a0a0a 100%);
    position: relative;
}

.pain-section::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><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23333" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.pain-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
    z-index: 2;
    position: relative;
}

.pain-point {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.pain-point:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.pain-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.pain-point p {
    font-size: 18px;
    color: #ffffff;
}

.pain-conclusion {
    text-align: center;
    z-index: 2;
    position: relative;
}

.pain-conclusion p {
    font-size: clamp(20px, 4vw, 32px);
    color: #d4af37;
    font-weight: 600;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
}

/* Seção da Solução */
.solution-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #1a0a0a 0%, #0a0a0a 100%);
}

.solution-description {
    font-size: clamp(18px, 3vw, 22px);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    color: #cccccc;
    line-height: 1.6;
}

.solution-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature {
    padding: 25px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

/* Seção de Bônus */
.bonus-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.bonus-item {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border-radius: 20px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.bonus-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
    border-color: rgba(212, 175, 55, 0.6);
}

.bonus-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 15px;
}

.bonus-item h3 {
    font-size: 22px;
    color: #d4af37;
    margin-bottom: 15px;
}

.bonus-item p {
    font-size: 16px;
    color: #cccccc;
    line-height: 1.5;
}

.bonus-cta {
    display: block;
    max-width: 400px;
    margin: 0 auto;
}

/* Seção de Transformação */
.transformation-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
}

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

.transformation-item {
    text-align: center;
    padding: 40px 20px;
}

.transformation-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 50%;
}

.transformation-item h3 {
    font-size: 24px;
    color: #d4af37;
}

/* Seção de Depoimentos */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a0a0a 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.testimonial {
    padding: 40px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border-radius: 20px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    text-align: center;
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 80px;
    color: #d4af37;
    opacity: 0.3;
    font-family: serif;
}

.testimonial p {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.6;
}

.testimonial cite {
    font-size: 16px;
    color: #d4af37;
    font-weight: 600;
}

/* Seção de Oferta */
.offer-section {
    padding: 100px 0;
    background: url('../images/offer_guarantee_background.png') center/cover;
    position: relative;
    text-align: center;
}

.offer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.offer-section .container {
    position: relative;
    z-index: 2;
}

.offer-title {
    font-size: clamp(32px, 6vw, 56px);
    color: #d4af37;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}

.offer-subtitle {
    font-size: clamp(20px, 4vw, 28px);
    color: #ffffff;
    margin-bottom: 40px;
}

.offer-image {
    margin: 40px 0;
}

.offer-image img {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.4);
}

.offer-cta {
    font-size: clamp(18px, 3vw, 24px);
    padding: 25px 50px;
    margin: 40px 0;
}

.guarantee-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.guarantee-info p {
    font-size: 18px;
    color: #ffffff;
    font-weight: 600;
}

/* Chamada Final */
.final-call-section {
    padding: 100px 0;
    background: url('../images/final_call_background.png') center/cover;
    position: relative;
    text-align: center;
}

.final-call-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
}

.final-call-section .container {
    position: relative;
    z-index: 2;
}

.final-title {
    font-size: clamp(28px, 5vw, 48px);
    color: #d4af37;
    margin-bottom: 30px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}

.final-text {
    font-size: clamp(18px, 3vw, 24px);
    color: #ffffff;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.final-cta {
    font-size: clamp(18px, 3vw, 24px);
    padding: 25px 50px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    }
    50% {
        box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
    }
    100% {
        box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .pain-points {
        grid-template-columns: 1fr;
    }
    
    .pain-point {
        flex-direction: column;
        text-align: center;
    }
    
    .bonus-grid {
        grid-template-columns: 1fr;
    }
    
    .transformation-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .guarantee-info {
        flex-direction: column;
        gap: 20px;
    }
    
    .cta-button {
        padding: 18px 30px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero, .pain-section, .solution-section, .bonus-section, 
    .transformation-section, .testimonials-section, .offer-section, 
    .final-call-section {
        padding: 60px 0;
    }
    
    .pain-point, .bonus-item, .transformation-item, .testimonial {
        padding: 25px 15px;
    }
}

