/* Reset y Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #110E0E;
    --secondary-color: #fff;
    --accent-color: #D4051B;
    --text-dark: #fff;
    --text-light: #ccc;
    --bg-light: #1a1614;
    --border-color: #333;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

/* Top Banner */
.top-banner {
    background-size: contain;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 650px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--primary-color);
}

/* Tipografía */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
}

/* Botones */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background-color: var(--text-light);
    transform: translateY(-3px);
}

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

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

.btn-primary-large {
    padding: 16px 48px;
    font-size: 1.1rem;
}

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

.btn-contacto:hover {
    background-color: #e5a140;
}

/* Navbar */
.navbar {
    background-color: var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--accent-color);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 4px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
}

.hero-img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(212, 5, 27, 0.3);
    object-fit: cover;
}

.hero-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #2a2420 0%, #1a1614 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.hero-placeholder svg {
    width: 200px;
    height: 200px;
}

/* About Section */
.about {
    background-color: var(--primary-color);
    padding: 4rem 2rem;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat h3 {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--secondary-color);
    font-size: 0.95rem;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-img {
    width: 100%;
    height: 300px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 10px 40px rgba(212, 5, 27, 0.3);
}

.image-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #2a2420 0%, #1a1614 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* Distributor Section */
.distributor {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.distributor-content h2 {
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.distributor-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.distributor-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.info-card {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

.info-card h3 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.info-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.contact-info p {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.contact-info strong {
    color: var(--accent-color);
}

.features-list {
    list-style: none;
}

.features-list li {
    color: var(--text-light);
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

/* Productos Section */
.productos {
    background-color: var(--primary-color);
    padding: 4rem 2rem;
}

.productos h2 {
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.productos-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.productos-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-category {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.product-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(212, 5, 27, 0.2);
}

.product-category:hover {
    border-color: var(--accent-color);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.category-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.product-category h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.product-category p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.product-category ul {
    list-style: none;
    padding-left: 0;
}

.product-category li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.product-category li:before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* Ventajas Section */
.ventajas {
    background-color: var(--primary-color);
    padding: 4rem 2rem;
}

.ventajas h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.ventajas-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.ventaja-card {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    position: relative;
    padding-top: 3.5rem;
}

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

.ventaja-number {
    position: absolute;
    top: 1.5rem;
    left: 2rem;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.ventaja-card h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

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

/* Testimonios Section */
.testimonios {
    padding: 4rem 2rem;
    background-color: var(--primary-color);
}

.testimonios h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.testimonios-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonio-card {
    background: linear-gradient(135deg, var(--accent-color) 0%, #a00515 100%);
    color: var(--secondary-color);
    padding: 2.5rem;
    border-radius: 12px;
    position: relative;
    quotes: '"' '"';
}

.testimonio-card::before {
    content: open-quote;
    font-size: 4rem;
    opacity: 0.3;
    position: absolute;
    top: -10px;
    left: 20px;
}

.testimonio-card p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.autor {
    text-align: right;
    font-style: italic;
    opacity: 0.9;
    font-size: 0.9rem;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--accent-color) 0%, #a00515 100%);
    color: var(--secondary-color);
    padding: 4rem 2rem;
    text-align: center;
}

.cta h2 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

/* Contacto Section */
.contacto {
    background-color: var(--primary-color);
    padding: 4rem 2rem;
}

.contacto-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contacto-content h2 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.contacto-content > p {
    color: var(--secondary-color);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contacto-info {
    margin-bottom: 2rem;
}

.info-item {
    margin-bottom: 1.5rem;
}

.info-item h3 {
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.info-item p {
    color: var(--text-light);
}

.contact-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

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

.redes-sociales h3 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: #fff;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 6px;
    transition: var(--transition);
    border: 2px solid var(--border-color);
}

.social-link:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
}

/* Formulario */
.contacto-form {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.contacto-form h3 {
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background-color: #2a2420;
    color: var(--secondary-color);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(212, 5, 27, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.contacto-form .btn {
    width: 100%;
}

/* Footer */
.footer {
    background-color: #000;
    color: var(--secondary-color);
    padding: 3rem 2rem 1rem;
}

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

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.8;
}

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

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--accent-color);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .banner-title {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    .banner-subtitle {
        font-size: 0.9rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }

    .hero-image {
        margin-top: 1rem;
    }

    .hero-placeholder {
        width: 200px;
        height: 200px;
    }

    .hero-placeholder svg {
        width: 120px;
        height: 120px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .distributor-info {
        grid-template-columns: 1fr;
    }

    .productos-grid {
        grid-template-columns: 1fr;
    }

    .ventajas-grid {
        grid-template-columns: 1fr;
    }

    .testimonios-grid {
        grid-template-columns: 1fr;
    }

    .contacto-container {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    .navbar-container {
        padding: 1rem;
    }

    .logo {
        font-size: 1.3rem;
    }

    .hero {
        padding: 1.5rem 1rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .ventaja-number {
        font-size: 1.5rem;
    }

    .about,
    .productos,
    .ventajas,
    .testimonios,
    .contacto,
    .distributor {
        padding: 2rem 1rem;
    }
}
