* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.header-spacing {
    height: 50px; /* Ajusta este valor según sea necesario */
}

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

        .section-title {
            text-align: center;
            margin-bottom: 20px;
            padding-top: 20px;
        }

        .section-title h1 {
            font-size: 2.8rem;
            color: #2c3e50;
            margin-bottom: 15px;
            font-weight: 700;
            text-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .section-title::after {
            content: '';
            display: block;
            width: 120px;
            height: 4px;
            background: linear-gradient(90deg, #e74c3c, #c0392b);
            margin: 0 auto;
            border-radius: 2px;
            margin-top: 10px;
        }

        .section-description {
            text-align: center;
            color: #555;
            font-size: 1.2rem;
            margin-bottom: 50px;
            line-height: 1.7;
            font-weight: 400;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
            margin-bottom: 50px;
        }

        .productos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .producto-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            text-decoration: none;
            color: inherit;
            display: block;
        }

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

        .producto-image {
            position: relative;
            height: 250px;
            overflow: hidden;
            background: #2c3e50;
        }

        .producto-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .producto-card:hover .producto-image img {
            transform: scale(1.05);
        }

        .producto-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(231, 76, 60, 0.8), rgba(192, 57, 43, 0.8));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .producto-card:hover .producto-overlay {
            opacity: 1;
        }

        .overlay-text {
            color: white;
            font-size: 1.1rem;
            font-weight: 600;
            text-align: center;
            padding: 20px;
        }

        .producto-info {
            padding: 25px;
        }

        .producto-titulo {
            font-size: 1.4rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .producto-descripcion {
            color: #7f8c8d;
            font-size: 0.95rem;
            line-height: 1.5;
            margin-bottom: 15px;
        }

        .producto-badge {
            display: inline-block;
            background: linear-gradient(90deg, #e74c3c, #c0392b);
            color: white;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Estilos responsivos para móviles */
        @media (max-width: 768px) {
            body {
                padding: 20px 0;
            }

            .productos-section {
                padding: 0 15px;
            }

            .section-title {
                padding-top: 10px;
            }

            .section-title h1 {
                font-size: 2.2rem;
            }

            .section-description {
                font-size: 1.1rem;
                margin-bottom: 35px;
                padding: 0 10px;
            }

            .productos-grid {
                grid-template-columns: 1fr;
                gap: 25px;
                margin-bottom: 40px;
            }

            .producto-image {
                height: 200px;
            }

            .producto-info {
                padding: 20px;
            }

            .producto-titulo {
                font-size: 1.2rem;
            }

            .producto-descripcion {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .section-title h1 {
                font-size: 1.9rem;
            }

            .section-description {
                font-size: 1rem;
                padding: 0 5px;
            }

            .producto-image {
                height: 180px;
            }

            .producto-info {
                padding: 15px;
            }

            .producto-titulo {
                font-size: 1.1rem;
            }
        }

        /* Animación de carga */
        .producto-card {
            animation: fadeInUp 0.6s ease forwards;
            opacity: 0;
            transform: translateY(30px);
        }

        .producto-card:nth-child(1) { animation-delay: 0.1s; }
        .producto-card:nth-child(2) { animation-delay: 0.2s; }
        .producto-card:nth-child(3) { animation-delay: 0.3s; }
        .producto-card:nth-child(4) { animation-delay: 0.4s; }
        .producto-card:nth-child(5) { animation-delay: 0.5s; }
        .producto-card:nth-child(6) { animation-delay: 0.6s; }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Estilos para la sección de información adicional */
        .info-button-container {
            text-align: center;
            background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
            padding: 40px 30px;
            border-radius: 20px;
            margin-top: 50px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(44, 62, 80, 0.3);
        }

        .info-button-container::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
            animation: shimmer 3s ease-in-out infinite;
        }

        .info-button-container p {
            color: white;
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 25px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
            position: relative;
            z-index: 2;
        }

        .info-button {
            display: inline-block;
            background: linear-gradient(135deg, #e74c3c, #c0392b);
            color: white;
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
            position: relative;
            z-index: 2;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .info-button:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 15px 40px rgba(231, 76, 60, 0.4);
            background: linear-gradient(135deg, #c0392b, #a93226);
        }

        .info-button:active {
            transform: translateY(-1px) scale(1.02);
        }

        /* Animación shimmer */
        @keyframes shimmer {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Responsivo para la sección de información */
        @media (max-width: 768px) {
            .info-button-container {
                padding: 30px 20px;
                margin-top: 40px;
            }

            .info-button-container p {
                font-size: 1.2rem;
                margin-bottom: 20px;
            }

            .info-button {
                padding: 12px 28px;
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .info-button-container {
                padding: 25px 15px;
                margin-top: 30px;
            }

            .info-button-container p {
                font-size: 1.1rem;
                margin-bottom: 18px;
            }

            .info-button {
                padding: 10px 25px;
                font-size: 0.95rem;
            }
        }