* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        body {
            line-height: 1.6;
            color: #333;
            background-color: #ffffff;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        /* Header y navegación */
        header {
            background: #000000;
            color: #ffffff;
            padding: 20px 0;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #ffffff;
        }

        .logo span {
            color: #ff0000;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 20px;
        }

        nav ul li a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
        }

        nav ul li a:hover {
            color: #ff0000;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #000000, #333333);
            color: #ffffff;
            padding: 80px 0;
            text-align: center;
        }

        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
        }

        .btn {
            display: inline-block;
            background: #ff0000;
            color: #ffffff;
            padding: 10px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: background 0.3s;
        }

        .btn:hover {
            background: #cc0000;
        }

        /* Sección Nosotros */
        .about {
            padding: 60px 0;
            background: #f1f1f1;
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .about-text {
            flex: 1;
        }

        .about-text h2 {
            color: #000000;
            margin-bottom: 20px;
        }

        /* Estilos del carrusel */
        .about-img {
            flex: 1;
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .carousel {
            display: flex;
            transition: transform 0.5s ease;
            width: 100%;
        }

        .carousel-item {
            min-width: 100%;
        }

        .carousel-item img {
            width: 100%;
            height: auto;
            display: block;
        }

        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            font-size: 20px;
            cursor: pointer;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s;
        }

        .carousel-btn:hover {
            background: rgba(0, 0, 0, 0.8);
        }

        .carousel-btn.prev {
            left: 15px;
        }

        .carousel-btn.next {
            right: 15px;
        }

        .carousel-dots {
            position: absolute;
            bottom: 15px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 8px;
            z-index: 10;
        }

        .carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: background 0.3s;
        }

        .carousel-dot.active {
            background: #ff0000;
        }

        /* Sección Contacto (versión simplificada con correo) */
        .contact {
            padding: 60px 0;
            background: #000000;
            color: #ffffff;
            text-align: center;
        }

        .contact .section-title {
            color: #ffffff;
            margin-bottom: 30px;
        }

        .contact-info {
            background: #ffffff;
            padding: 30px;
            border-radius: 8px;
            max-width: 600px;
            margin: 0 auto;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .contact-info p {
            margin-bottom: 20px;
            color: #333;
        }

        .email-link {
            color: #ff0000;
            font-weight: bold;
            text-decoration: none;
            font-size: 1.2rem;
            transition: color 0.3s;
        }

        .email-link:hover {
            color: #cc0000;
        }

        .email-icon {
            display: inline-block;
            margin-right: 10px;
            vertical-align: middle;
        }

        /* Footer */
        footer {
            background: #000000;
            color: #ffffff;
            text-align: center;
            padding: 20px 0;
        }

        footer p {
            margin: 0;
        }

        /* Responsive */
        @media (max-width: 768px) {
            header .container {
                flex-direction: column;
            }
            
            nav ul {
                margin-top: 20px;
            }
            
            .about-content {
                flex-direction: column;
            }

            .carousel-btn {
                width: 30px;
                height: 30px;
                font-size: 16px;
            }

            .productos-grid {
                grid-template-columns: 1fr;
            }
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo-img {
            height: 70px; /* Ajusta según el tamaño de tu logo */
            width: auto;
            background: #000000; 
            padding: 5px;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .logo-text {
            font-size: 24px;
            font-weight: bold;
            color: #ffffff;
        }

        .logo-text span {
            color: #ff0000;
        } 

        .productos {
            margin-top: 30px;
        }
        
        .productos h3 {
            color: #ff0000;
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        
        .productos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        
        .producto-item {
            background: #ffffff;
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            border-left: 4px solid #ff0000;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .producto-icon {
            color: #ff0000;
            font-size: 24px;
            min-width: 30px;
        }
        
        .producto-info h4 {
            color: #000000;
            margin-bottom: 5px;
        }
        
        .producto-info p {
            color: #666;
            font-size: 0.9rem;
        }