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

:root {
    --primary: #FF6B35;
    --dark: #1a1a1a;
    --light: #f5f5f5;
    --white: #ffffff;
    --text: #333333;
    --text-light: #666666;
    --border: #e0e0e0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}

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

/* Age Warning Bar */
.age-warning-bar {
    background: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    position: sticky;
    top: 0;
    z-index: 100;
}

/* Age Gate Modal */
.age-gate-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.age-gate-modal.hidden {
    display: none;
}

.age-gate-content {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    max-width: 400px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.age-gate-content h2 {
    margin-bottom: 15px;
    color: var(--dark);
    font-size: 1.8rem;
}

.age-gate-content p {
    margin-bottom: 30px;
    color: var(--text-light);
}

.age-gate-buttons {
    display: flex;
    gap: 15px;
    flex-direction: column;
}

.btn-decline,
.btn-accept {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-decline {
    background: var(--light);
    color: var(--text);
    border: 2px solid var(--border);
}

.btn-decline:hover {
    background: var(--border);
}

.btn-accept {
    background: var(--primary);
    color: var(--white);
}

.btn-accept:hover {
    background: #e55a2b;
}

/* Header */
.header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 48px;
    z-index: 99;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.header-content h1 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    font-family: 'Roboto', sans-serif;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-whatsapp-header {
    padding: 12px 24px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    gap: 8px;
}

.btn-whatsapp-header:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.btn-whatsapp-header svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
    background: var(--light);
    color: var(--text);
    border: 2px solid var(--border);
}

.btn-secondary:hover {
    background: var(--border);
}

.btn-primary-large {
    padding: 16px 40px;
    font-size: 1.1rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary-large:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

.btn-buy {
    padding: 10px 20px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

.btn-buy:hover {
    background: #e55a2b;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    overflow: hidden;
    background: linear-gradient(180deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    padding: 80px 20px;
    clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-content h2 {
    font-size: 4rem;
    margin-bottom: 30px;
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #ffffff 0%, #FF6B35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 50px;
    line-height: 1.8;
    opacity: 0.9;
    max-width: 700px;
    color: #e0e0e0;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .header-content {
        height: 60px;
    }

    .logo {
        width: 40px;
        height: 40px;
    }

    .header-content h1 {
        font-size: 1rem;
    }

    .btn-whatsapp-header {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .btn-whatsapp-header svg {
        width: 18px;
        height: 18px;
    }

    .hero {
        min-height: 550px;
        padding: 60px 20px;
        clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
    }

    .hero-content h2 {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .hero-buttons .btn-primary-large {
        width: 100%;
    }
}

/* Product Highlights Section */
.product-highlights {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

.product-highlights h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--dark);
    font-family: 'Roboto', sans-serif;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.highlight-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
}

.highlight-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.highlight-card h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 700;
}

.highlight-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Product Info Section */
.product-info {
    padding: 80px 0;
    background: var(--white);
}

.product-info h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--dark);
    font-family: 'Roboto', sans-serif;
}

.product-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.info-box {
    background: var(--light);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--primary);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.info-box h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 700;
}

.info-box ul {
    list-style: none;
    padding: 0;
}

.info-box li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.6;
}

.info-box li:last-child {
    border-bottom: none;
}

.info-box li strong {
    color: var(--primary);
}

/* Varieties Intro */
.varieties-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.variety-price {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border);
    font-weight: 700;
    color: var(--primary);
}

/* Packs Intro */
.packs-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

/* Packs Section */
.packs-section {
    padding: 80px 0;
    background: var(--white);
}

.packs-section h2 {
    font-size: 2rem;
    margin-bottom: 50px;
    text-align: center;
    color: var(--dark);
    font-family: 'Roboto', sans-serif;
}

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

.pack-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

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

.pack-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.pack-info {
    padding: 20px;
}

.pack-info h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.pack-info .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.pack-details {
    margin-bottom: 20px;
    padding: 15px;
    background: var(--light);
    border-radius: 6px;
}

.pack-details p {
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 8px;
}

.pack-details p:last-child {
    margin-bottom: 0;
}

/* Varieties Section */
.varieties-section {
    padding: 80px 0;
    background: var(--light);
}

.varieties-section h2 {
    font-size: 2rem;
    margin-bottom: 50px;
    text-align: center;
    color: var(--dark);
    font-family: 'Roboto', sans-serif;
}

.varieties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.variety-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.variety-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.variety-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 10px;
}

/* Guides Section */
.guides-section {
    background: var(--light);
    padding: 80px 20px;
}

.guides-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark);
    font-family: 'Roboto', sans-serif;
}

.guides-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.guide-article {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 80px;
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.guide-article-2 {
    grid-template-columns: 1fr 1fr;
}

.guide-article-2 .guide-content {
    order: 2;
}

.guide-article-2 .guide-image-container {
    order: 1;
}

.guide-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.guide-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

.guide-content h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
}

.guide-content > p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 20px;
}

.guide-steps, .guide-options, .guide-mistakes, .guide-storage {
    background: #f9f9f9;
    padding: 25px;
    border-left: 4px solid var(--primary);
    border-radius: 5px;
    margin: 20px 0;
}

.guide-steps h4, .guide-options h4, .guide-mistakes h4, .guide-storage h4 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 15px;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
}

.guide-steps ul, .guide-options ul, .guide-mistakes ul, .guide-storage ul {
    list-style: none;
    padding: 0;
}

.guide-steps li, .guide-options li, .guide-mistakes li, .guide-storage li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
}

.guide-steps li:last-child, .guide-options li:last-child, .guide-mistakes li:last-child, .guide-storage li:last-child {
    border-bottom: none;
}

.guide-content > p:last-of-type {
    background: #fff3e0;
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
    font-size: 0.95rem;
    color: var(--text);
}

@media (max-width: 768px) {
    .guide-article {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
        margin-bottom: 40px;
    }

    .guide-article-2 .guide-content {
        order: 1;
    }

    .guide-article-2 .guide-image-container {
        order: 2;
    }

    .guide-content h3 {
        font-size: 1.5rem;
    }

    .guides-section h2 {
        font-size: 2rem;
    }
}

/* FAQs Section */
.faqs-section {
    padding: 80px 0;
    background: var(--white);
}

.faqs-section h2 {
    font-size: 2rem;
    margin-bottom: 50px;
    text-align: center;
    color: var(--dark);
    font-family: 'Roboto', sans-serif;
}

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

.faq-item {
    margin-bottom: 20px;
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: var(--light);
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: #e8e8e8;
}

.faq-question::after {
    content: '▼';
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 20px;
    background: var(--white);
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

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

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--dark);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    color: var(--white);
    padding: 80px 20px 40px;
    border-top: 3px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

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

.footer-section h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 700;
}

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

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

.footer-section li {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-section a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #e55a2b;
}

.footer-cta {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid var(--primary);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.footer-cta h4 {
    color: var(--primary);
    margin-bottom: 10px;
}

.footer-cta p {
    margin-bottom: 15px;
}

.footer-cta .btn-whatsapp {
    width: 100%;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.footer-bottom .footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.footer-bottom a {
    font-size: 0.85rem;
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #e55a2b;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .product-highlights h2,
    .product-info h2,
    .packs-section h2,
    .varieties-section h2,
    .guides-section h2,
    .faqs-section h2,
    .cta-section h2 {
        font-size: 1.5rem;
    }

    .header-content h1 {
        font-size: 1rem;
    }

    .highlight-card {
        padding: 20px;
    }

    .info-box {
        padding: 20px;
    }
}
