/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #000;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    min-height: 100vh;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    margin-right: 40px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    padding: 20px 40px;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
    text-transform: uppercase;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
}

.hero-image {
    flex: 1;
    max-width: 500px;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Benefits Bar */
.benefits-bar {
    background-color: white;
    color: #333;
    padding: 40px 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-top: 4px solid #ff6b35;
    border-bottom: 4px solid #ff6b35;
}

.benefits-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto 30px auto;
}

.benefit {
    display: flex;
    align-items: center;
    margin: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    color: #333;
}

.benefit .icon {
    font-size: 2.5em;
    margin-right: 15px;
    color: #ff6b35;
}

.whatsapp-button-container {
    text-align: center;
    margin-top: 20px;
}

.whatsapp-button {
    background: linear-gradient(45deg, #25D366, #1DA851);
    color: white;
    padding: 18px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    text-transform: uppercase;
}

.whatsapp-button:hover {
    background: linear-gradient(45deg, #1DA851, #128C7E);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
    font-size: 1.3em;
    margin-right: 10px;
}

/* Section Styles */
section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #ff6b35;
    text-transform: uppercase;
    font-weight: bold;
}

section p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #666;
}

/* Why Section */
.why-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #333;
}

.section-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 50px;
    font-style: italic;
}

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

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.benefit-card h3 {
    font-size: 1.4rem;
    color: #ff6b35;
    margin-bottom: 15px;
}

/* Secret and Safety Sections */
.secret-section, .safety-section {
    background: #1a1a1a;
    color: white;
}

.secret-section p, .safety-section p {
    color: #ccc;
}

/* Expert Section */
.expert-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #333;
}

.expert-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.expert-image img {
    max-width: 300px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Formula Section - Aligned with treatment sections */
.formula-section {
    background: #1a1a1a;
    color: white;
    padding: 80px 20px;
}

.formula-section h2 {
    color: #ff6b35;
    text-align: center;
    margin-bottom: 20px;
}

.formula-section .section-subtitle {
    text-align: center;
    color: #ccc;
    margin-bottom: 50px;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
    justify-items: center;
}

.ingredient-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    max-width: 280px;
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.ingredient-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.ingredient-card img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 3px solid #ff6b35;
}

.ingredient-card h3 {
    color: #ff6b35;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.ingredient-card p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Guarantee Section */
.guarantee-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #333;
}

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

.guarantee-image img {
    max-width: 300px;
    height: auto;
    border-radius: 15px;
}

/* Pricing Section */
.pricing-section {
    background: #1a1a1a;
    color: white;
    padding: 80px 20px;
}

.pricing-section h2 {
    color: #ff6b35;
    text-align: center;
    margin-bottom: 20px;
}

.pricing-subtitle {
    text-align: center;
    color: #ff6b35;
    font-weight: bold;
    margin-bottom: 50px;
    font-size: 1.2rem;
}

.pricing-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    max-width: 320px;
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
}

.pricing-card.featured-single {
    border-color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
    width: 100%;
    max-width: 350px;
}

.pricing-grid-bottom {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    width: 100%;
    justify-items: center;
}

@media (max-width: 768px) {
    .pricing-grid-bottom {
        grid-template-columns: 1fr;
    }
}

.pricing-card h3 {
    color: #ff6b35;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.product-kit-image {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.price {
    margin: 20px 0;
}

.installment {
    font-size: 1.2rem;
    color: #ccc;
}

.amount {
    font-size: 2rem;
    color: #ff6b35;
    font-weight: bold;
    margin-left: 10px;
}

.cash-price {
    color: #ccc;
    margin-bottom: 20px;
}

.buy-button {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 25px;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.buy-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

/* Privacy and Support Sections */
.privacy-section, .support-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #333;
}

/* FAQ Section */
.faq-section {
    background: #1a1a1a;
    color: white;
    padding: 80px 20px;
}

.faq-section h2 {
    color: #ff6b35;
    text-align: center;
    margin-bottom: 50px;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.faq-question {
    cursor: pointer;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ff6b35;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #f7931e;
}

.faq-question::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    margin-top: 15px;
    color: #ccc;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #000;
    color: white;
    padding: 50px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3 {
    color: #ff6b35;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer-section ul li {
    margin-bottom: 10px;
    color: #ccc;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff6b35;
}

.payment-icons {
    max-width: 250px;
    height: auto;
    border-radius: 10px;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 60px 20px;
    }
    
    .hero-content {
        margin-right: 0;
        margin-bottom: 40px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .benefits-bar {
        flex-direction: column;
        gap: 20px;
    }
    
    section h2 {
        font-size: 2rem;
    }
    
    .benefits-grid,
    .ingredients-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1.2rem;
    }
    
    section {
        padding: 60px 15px;
    }
    
    section h2 {
        font-size: 1.8rem;
    }
}



html {
    scroll-behavior: smooth;
}

