        /* Reset básico */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html{
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: #2c2c2c;
        }

        /* Header */
        header {
            background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
            padding: 1.2rem 2rem;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 700;
            color: #D4AF37;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2.5rem;
        }

        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 25px;
        }

        .nav-links a:hover {
            color: #D4AF37;
            background: rgba(212, 175, 55, 0.1);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(
                135deg, 
                rgba(20, 20, 20, 0.7) 0%, 
                rgba(101, 67, 33, 0.8) 50%, 
                rgba(20, 20, 20, 0.7) 100%
            ), url('https://images.unsplash.com/photo-1521017432531-fbd92d768814?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            min-height: 80vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }

        .hero-content {
            max-width: 700px;
            padding: 4rem 2rem;
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 4.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #ffffff, #D4AF37);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            font-size: 1.4rem;
            margin-bottom: 2.5rem;
            font-weight: 300;
            line-height: 1.8;
            opacity: 0.95;
        }

        .btn {
            background: linear-gradient(135deg, #D4AF37, #B8941F);
            color: #1a1a1a;
            padding: 1.2rem 3rem;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            letter-spacing: 0.5px;
            transition: all 0.4s ease;
            display: inline-block;
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
            background: linear-gradient(135deg, #E6C547, #D4AF37);
        }

        /* Contenedor principal */
        main {
            display: flex;
            flex-direction: column;
        }

        /* Sección de Productos */
        .productos {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-family: 'Playfair Display', serif;
            font-size: 3.2rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #2c2c2c;
        }

        .section-subtitle {
            text-align: center;
            width: 80px;
            height: 4px;
            background: linear-gradient(135deg, #D4AF37, #B8941F);
            border-radius: 2px;
            margin: 0 auto 4rem;
        }

        .productos-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2.5rem;
        }

        .producto-card {
            background: white;
            border-radius: 20px;
            padding: 3rem 2rem;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            width: 320px;
            /* max-width: 380px; */
            border-top: 5px solid transparent;
        }

        .producto-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 60px rgba(0,0,0,0.15);
            border-top: 5px solid #D4AF37;
        }

        .producto-icon {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #D4AF37, #B8941F);
            border-radius: 50%;
            margin: 0 auto 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: white;
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
            transition: all 0.3s ease;
        }

        .producto-card:hover .producto-icon {
            transform: scale(1.1);
            box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
        }

        .producto-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: #2c2c2c;
        }

        .producto-card p {
            color: #666;
            line-height: 1.8;
            font-size: 1rem;
        }

        /* Sección Sobre Nosotros */
        .sobre-nosotros {
            padding: 6rem 2rem;
            background: white;
        }

        .sobre-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 4rem;
        }

        .sobre-text {
            width: 45%;
            min-width: 350px;
        }

        .sobre-text h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 2rem;
            color: #2c2c2c;
            line-height: 1.2;
        }

        .sobre-text p {
            font-size: 1.15rem;
            color: #555;
            margin-bottom: 2rem;
            line-height: 1.8;
            font-weight: 300;
        }

        .sobre-image {
            width: 45%;
            min-width: 350px;
            height: 500px;
            background: linear-gradient(
                135deg, 
                rgba(212, 175, 55, 0.1) 0%, 
                rgba(44, 44, 44, 0.1) 100%
            ), url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2071&q=80');
            background-size: cover;
            background-position: center;
            border-radius: 20px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
            transition: all 0.3s ease;
        }

        .sobre-image:hover {
            transform: scale(1.02);
            box-shadow: 0 25px 60px rgba(0,0,0,0.2);
        }

        /* Estadísticas */
        .stats {
            padding: 4rem 2rem;
            background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
            color: white;
        }

        .stats-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 3rem;
            list-style: none;
        }

        .stat-item {
            text-align: center;
            width: 200px;
            padding: 2rem;
            transition: all 0.3s ease;
            border-radius: 15px;
        }

        .stat-item:hover {
            transform: translateY(-5px);
            background: rgba(212, 175, 55, 0.1);
        }

        .stat-number {
            font-family: 'Playfair Display', serif;
            font-size: 4rem;
            font-weight: 700;
            color: #D4AF37;
            margin-bottom: 1rem;
        }

        .stat-label {
            font-size: 1.2rem;
            opacity: 0.9;
            font-weight: 300;
            letter-spacing: 0.5px;
        }

        /* Sección de Llamada a la Acción */
        .cta-section {
            padding: 5rem 2rem;
            background: linear-gradient(135deg, #D4AF37, #B8941F);
            text-align: center;
            color: white;
        }

        .cta-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .cta-content p {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            opacity: 0.95;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .btn-white {
            background: white;
            color: #2c2c2c;
            padding: 1.2rem 3rem;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            letter-spacing: 0.5px;
            transition: all 0.4s ease;
            display: inline-block;
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        }

        .btn-white:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.3);
            background: #f8f8f8;
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
            color: white;
            padding: 4rem 2rem 2rem;
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section {
            width: 280px;
            min-width: 280px;
        }

        .footer-section h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: #D4AF37;
        }

        address {
            font-style: normal;
            line-height: 2;
            font-weight: 300;
            color: #ccc;
        }

        .footer-section p,
        .footer-section a {
            color: #ccc;
            text-decoration: none;
            line-height: 2;
            font-weight: 300;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: #D4AF37;
        }

        .footer-icon {
            margin-right: 0.5rem;
            color: #D4AF37;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #333;
            color: #999;
            font-weight: 300;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 3rem;
            }
            
            .hero p {
                font-size: 1.2rem;
            }
            
            .nav-links {
                flex-direction: column;
                gap: 1rem;
            }
            
            nav {
                flex-direction: column;
                gap: 1.5rem;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
            
            .sobre-text h2 {
                font-size: 2.2rem;
            }

            .cta-content h2 {
                font-size: 2.2rem;
            }

            .sobre-text {
                width: 100%;
            }

            .sobre-image {
                width: 100%;
            }

            .footer-section {
                width: 100%;
            }
        }

        @media (max-width: 480px) {
            .hero-content {
                padding: 2rem 1rem;
            }
            
            .btn, .btn-white {
                padding: 1rem 2rem;
                font-size: 1rem;
            }
            
            .producto-card {
                width: 280px;
                padding: 2rem 1.5rem;
            }

            .stat-item {
                width: 150px;
            }
        }