@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

:root {
    --peru-red: #DC143C;
    --peru-yellow: #FFD700;
    --andean-blue: #1e3a8a;
    --turquoise: #06b6d4;
    --warm-orange: #fb923c;
    --dark-text: #1f2937;
    --light-text: #6b7280;
    --white: #ffffff;
    --light-bg: #f9fafb;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    font-weight: 400;
    background: var(--light-bg);
}

.publicidad-banner {
    background: var(--peru-red);
    color: white;
    text-align: center;
    padding: 8px 0;
    font-weight: 600;
    font-size: 14px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1rem 0;
    position: sticky;
    top: 36px;
    z-index: 999;
}

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

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

.logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--peru-red);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 600;
    transition: color 0.3s ease;
}

nav a:hover, nav a.active {
    color: var(--peru-red);
}

.hero {
    background: linear-gradient(135deg, rgba(220,20,60,0.9), rgba(255,215,0,0.7)), 
                url('https://images.pexels.com/photos/3408744/pexels-photo-3408744.jpeg') center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: var(--peru-yellow);
    color: var(--dark-text);
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    background: #ffed4a;
}

.section {
    padding: 80px 0;
}

.section-alt {
    background: var(--light-bg);
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--andean-blue);
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--peru-red);
}

.description {
    text-align: center;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--light-text);
}

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

.ingredient-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-left: 4px solid var(--turquoise);
}

.ingredient-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.ingredient-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--andean-blue);
}

.detailed-ingredient {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.detailed-ingredient:nth-child(even) {
    flex-direction: row-reverse;
}

.ingredient-image {
    flex: 0 0 300px;
    height: 300px;
    background: var(--light-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    font-size: 1.1rem;
}

.ingredient-content {
    flex: 1;
}

.benefits-list {
    list-style: none;
    margin-top: 1rem;
}

.benefits-list li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--turquoise);
    font-weight: 600;
}

.complex-section {
    background: var(--andean-blue);
    color: white;
    text-align: center;
}

.complex-section h2 {
    color: white;
}

.complex-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 2rem 0;
    list-style: none;
}

.complex-list li {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 8px;
    font-weight: 600;
}

.why-choose {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.feature {
    text-align: center;
    padding: 30px 20px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--peru-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 25px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-text);
}

input, select, textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--turquoise);
}

.submit-btn {
    background: var(--peru-red);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: #b91c3c;
    transform: translateY(-2px);
}

.disclaimer {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 8px;
    margin-top: 3rem;
    text-align: center;
    font-size: 0.9rem;
    color: var(--light-text);
    border-left: 4px solid var(--warm-orange);
}

footer {
    background: var(--dark-text);
    color: white;
    padding: 60px 0 30px;
}

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

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--peru-yellow);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--peru-yellow);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 30px;
    text-align: center;
    color: #9ca3af;
    font-size: 0.9rem;
}

.company-info {
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

/* Additional styles for other pages */
.page-header {
    background: linear-gradient(135deg, var(--andean-blue), var(--turquoise));
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.main-content {
    padding: 80px 0;
}

.content-wrapper {
    background: var(--white);
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 2rem 0 1rem 0;
    color: var(--andean-blue);
    border-left: 4px solid var(--peru-red);
    padding-left: 20px;
    text-align: left;
}

.content-wrapper h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem 0;
    color: var(--peru-red);
}

.content-wrapper p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--dark-text);
}

.content-wrapper ul, .content-wrapper ol {
    margin: 1rem 0 1rem 2rem;
}

.content-wrapper li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.contact-info {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 8px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--peru-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 20px;
}

.contact-details h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--andean-blue);
}

.contact-details p {
    color: var(--light-text);
    margin: 0;
}

.faq-section {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-top: 40px;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
    padding: 20px 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-weight: 600;
    color: var(--andean-blue);
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    color: var(--light-text);
    line-height: 1.6;
}

.highlight-box {
    background: linear-gradient(135deg, var(--peru-yellow), #fef08a);
    padding: 20px;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid var(--peru-red);
}

.warning-box {
    background: linear-gradient(135deg, #fecaca, #f87171);
    padding: 25px;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid #dc2626;
    font-weight: 600;
}

.important-box {
    background: linear-gradient(135deg, #fef3c7, #fbbf24);
    padding: 25px;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid #f59e0b;
    font-weight: 600;
}

.medical-disclaimer {
    background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
    padding: 30px;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid var(--andean-blue);
    font-weight: 600;
}

.last-updated {
    background: var(--andean-blue);
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 600;
}

.disclaimer-icon {
    font-size: 2rem;
    color: var(--warm-orange);
    margin-bottom: 1rem;
    text-align: center;
    display: block;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .detailed-ingredient {
        flex-direction: column !important;
        text-align: center;
    }

    .detailed-ingredient:nth-child(even) {
        flex-direction: column !important;
    }

    .ingredient-image {
        flex: none;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    nav ul {
        gap: 20px;
    }

    h2 {
        font-size: 2rem;
    }

    .section {
        padding: 60px 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .content-wrapper {
        padding: 40px 30px;
    }

    .main-content {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .ingredients-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }

    .content-wrapper {
        padding: 30px 20px;
    }
}
