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

body {
    font-family: 'Crimson Text', serif;
    line-height: 1.6;
    color: #2c3e2d;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e2d 50%, #1a1a1a 100%);
    min-height: 100vh;
}

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

/* Typography */
h1, h2, h3 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    color: #DAA520;
}

.main-headline {
    font-size: 3.5rem;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    background: linear-gradient(45deg, #DAA520, #FFD700, #B8860B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1.4rem;
    text-align: center;
    color: #e8e8e8;
    margin-bottom: 3rem;
    font-style: italic;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #DAA520;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Hero Section */
.hero-section {
    padding: 4rem 0;
    background: radial-gradient(ellipse at center, rgba(218, 165, 32, 0.1) 0%, transparent 70%);
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('selected_images/simbolos_secretos.jpg');
    background-size: 200px;
    background-repeat: repeat;
    opacity: 0.05;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

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

.main-image {
    max-width: 500px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(218, 165, 32, 0.3);
    border: 3px solid #DAA520;
}

/* Benefits Section */
.benefits-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2c3e2d 0%, #1a1a1a 100%);
}

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

.benefit-card {
    background: rgba(218, 165, 32, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #DAA520;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(218, 165, 32, 0.4);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #DAA520;
}

.benefit-card p {
    color: #e8e8e8;
    font-size: 1.1rem;
}

/* Origin Section */
.origin-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e2d 100%);
}

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

.origin-text p {
    font-size: 1.2rem;
    color: #e8e8e8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.origin-text strong {
    color: #DAA520;
    font-weight: 600;
}

.manuscript-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 3px solid #DAA520;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2c3e2d 0%, #1a1a1a 100%);
}

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

.testimonial-card {
    background: rgba(218, 165, 32, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #DAA520;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: scale(1.05);
}

.testimonial-card p {
    font-size: 1.1rem;
    color: #e8e8e8;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    color: #DAA520;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: radial-gradient(ellipse at center, rgba(218, 165, 32, 0.2) 0%, transparent 70%);
    text-align: center;
}

.cta-title {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #DAA520;
}

.cta-description {
    font-size: 1.3rem;
    color: #e8e8e8;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.price-container {
    margin-bottom: 3rem;
}

.old-price {
    font-size: 1.5rem;
    color: #888;
    text-decoration: line-through;
    margin-right: 1rem;
}

.new-price {
    font-size: 2.5rem;
    color: #DAA520;
    font-weight: 700;
    font-family: 'Cinzel', serif;
}

.cta-button {
    background: linear-gradient(45deg, #DAA520, #FFD700);
    color: #1a1a1a;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Cinzel', serif;
    padding: 1.5rem 3rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(218, 165, 32, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(218, 165, 32, 0.6);
    background: linear-gradient(45deg, #FFD700, #DAA520);
}

.guarantee-text {
    margin-top: 2rem;
}

.guarantee-text p {
    color: #e8e8e8;
    font-size: 1.1rem;
    margin: 0.5rem 0;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e2d 100%);
}

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

.faq-item {
    margin-bottom: 1rem;
    border: 2px solid #DAA520;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(218, 165, 32, 0.1);
}

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

.faq-question:hover {
    background: rgba(218, 165, 32, 0.2);
}

.faq-question h3 {
    font-size: 1.3rem;
    color: #DAA520;
}

.faq-toggle {
    font-size: 2rem;
    color: #DAA520;
    font-weight: bold;
    transition: transform 0.3s ease;
}

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

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

.faq-answer p {
    color: #e8e8e8;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    padding: 3rem 0;
    background: #1a1a1a;
    text-align: center;
    border-top: 3px solid #DAA520;
}

.symbols-decoration {
    margin-bottom: 2rem;
}

.symbols-image {
    width: 200px;
    height: auto;
    opacity: 0.3;
    border-radius: 10px;
}

.footer p {
    color: #888;
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.9rem;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-headline {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .origin-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-button {
        font-size: 1.2rem;
        padding: 1rem 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .main-headline {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .new-price {
        font-size: 2rem;
    }
}

