/* ===== SECCIÓN HERO PRODUCTOS ===== */
.seccion-hero-productos {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    padding: 120px 20px 80px 20px;
    margin-top: 80px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Ajustes para móviles */
@media (max-width: 768px) {
    .seccion-hero-productos {
        margin-top: 0;
        padding: 100px 15px 60px 15px;
    }
}

@media (max-width: 480px) {
    .seccion-hero-productos {
        margin-top: 0;
        padding: 110px 15px 50px 15px;
    }
}

.seccion-hero-productos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.contenedor-principal {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.encabezado-seccion {
    text-align: center;
    margin-bottom: 60px;
}

.titulo-seccion {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .titulo-seccion {
        font-size: 2.5em;
        letter-spacing: 2px;
    }
}

@media (max-width: 480px) {
    .titulo-seccion {
        font-size: 2em;
        letter-spacing: 1px;
    }
}

.titulo-seccion::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, #FFD700 50%, transparent 100%);
}

.subtitulo-seccion {
    font-size: 1.3em;
    color: #cccccc;
    margin-top: 30px;
    font-style: italic;
}

@media (max-width: 768px) {
    .subtitulo-seccion {
        font-size: 1.1em;
    }
}

/* ===== SECCIÓN PRODUCTOS PRINCIPALES ===== */
.seccion-productos-principales {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    padding: 100px 20px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .seccion-productos-principales {
        padding: 80px 15px;
    }
}

.seccion-productos-principales::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.categoria-productos {
    margin-bottom: 100px;
}

@media (max-width: 768px) {
    .categoria-productos {
        margin-bottom: 80px;
    }
}

.titulo-categoria {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
    position: relative;
}

@media (max-width: 768px) {
    .titulo-categoria {
        font-size: 2em;
        margin-bottom: 40px;
    }
}

.titulo-categoria::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #FFD700 50%, transparent 100%);
}

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

@media (max-width: 768px) {
    .grid-productos {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }
}

@media (max-width: 480px) {
    .grid-productos {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

.producto-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .producto-item {
        padding: 25px 20px;
    }
}

.producto-item:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.1);
}

.producto-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.producto-item:hover::before {
    left: 100%;
}

.producto-imagen {
    position: relative;
    margin-bottom: 25px;
    overflow: hidden;
    border-radius: 15px;
}

.producto-imagen img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .producto-imagen img {
        height: 220px;
    }
}

.overlay-imagen {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border-radius: 20px;
    z-index: 1;
    opacity: 0.3;
    transition: opacity 0.4s ease;
}

.producto-imagen:hover .overlay-imagen {
    opacity: 0.6;
}

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

/* Etiquetas de productos */
.etiqueta-sostenible,
.etiqueta-nuevo,
.etiqueta-tecnologia {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.etiqueta-sostenible {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: #ffffff;
}

.etiqueta-nuevo {
    background: linear-gradient(135deg, #FF5722, #D84315);
    color: #ffffff;
}

.etiqueta-tecnologia {
    background: linear-gradient(135deg, #2196F3, #1565C0);
    color: #ffffff;
}

.producto-contenido {
    position: relative;
    z-index: 2;
}

.producto-icono {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    transition: all 0.4s ease;
}

.producto-icono:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
}

.producto-icono i {
    font-size: 1.5em;
    color: #000000;
}

.producto-contenido h3 {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .producto-contenido h3 {
        font-size: 1.3em;
    }
}

.producto-descripcion {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1em;
}

.producto-caracteristicas {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.producto-caracteristicas li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 0.95em;
    transition: all 0.3s ease;
}

.producto-caracteristicas li:hover {
    color: #FFD700;
    transform: translateX(5px);
}

.producto-caracteristicas li i {
    color: #FFD700;
    margin-right: 10px;
    font-size: 1em;
    transition: all 0.3s ease;
    min-width: 16px;
}

.producto-caracteristicas li:hover i {
    transform: scale(1.2);
}

.producto-precio {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.precio-desde {
    color: #cccccc;
    font-size: 0.9em;
    font-style: italic;
}

.precio-valor {
    color: #FFD700;
    font-size: 1.8em;
    font-weight: 700;
}

@media (max-width: 768px) {
    .precio-valor {
        font-size: 1.5em;
    }
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #ffffff;
    border: none;
    padding: 15px 25px;
    border-radius: 50px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    position: relative;
    overflow: hidden;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.btn-whatsapp::before {
    content: '\f232';
    font-family: 'Font Awesome 6 Brands';
    font-weight: 400;
    font-size: 1.4em;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.btn-whatsapp::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-whatsapp:hover::after {
    left: 100%;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
    background: linear-gradient(135deg, #128C7E, #25D366);
}

/* ===== SECCIÓN BENEFICIOS ===== */
.seccion-beneficios {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    padding: 100px 20px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .seccion-beneficios {
        padding: 80px 15px;
    }
}

.seccion-beneficios::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255, 215, 0, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.grid-beneficios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

@media (max-width: 768px) {
    .grid-beneficios {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }
}

.beneficio-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

@media (max-width: 768px) {
    .beneficio-item {
        padding: 30px 20px;
    }
}

.beneficio-item:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.1);
}

.beneficio-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.beneficio-item:hover::before {
    left: 100%;
}

.beneficio-icono {
    width: 80px;
    height: 80px;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid #FFD700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    transition: all 0.4s ease;
}

.beneficio-icono:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: scale(1.1) rotate(10deg);
}

.beneficio-icono i {
    font-size: 2em;
    color: #FFD700;
}

.beneficio-item h4 {
    font-size: 1.3em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: 600;
}

.beneficio-item p {
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 1em;
}

/* ===== SECCIÓN CTA PRODUCTOS ===== */
.seccion-cta-productos {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 100px 20px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .seccion-cta-productos {
        padding: 80px 15px;
    }
}

.seccion-cta-productos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-contenido {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-contenido h3 {
    font-size: 2.5em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .cta-contenido h3 {
        font-size: 2em;
    }
}

.cta-contenido p {
    font-size: 1.2em;
    color: #e0e0e0;
    margin-bottom: 40px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .cta-contenido p {
        font-size: 1.1em;
    }
}

.cta-botones {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .cta-botones {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

.btn-whatsapp-principal,
.btn-catalogo {
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    position: relative;
    overflow: hidden;
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

@media (max-width: 768px) {
    .btn-whatsapp-principal,
    .btn-catalogo {
        min-width: 250px;
        padding: 12px 30px;
    }
}

.btn-whatsapp-principal {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-principal::before {
    content: '\f232';
    font-family: 'Font Awesome 6 Brands';
    font-weight: 400;
    font-size: 1.4em;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.btn-whatsapp-principal:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
    background: linear-gradient(135deg, #128C7E, #25D366);
}

.btn-catalogo {
    background: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.btn-catalogo::before {
    content: '\f1c1';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1.3em;
    color: #FFD700;
}

.btn-catalogo:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

.btn-whatsapp-principal::after,
.btn-catalogo::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-whatsapp-principal:hover::after,
.btn-catalogo:hover::after {
    left: 100%;
}

/* ===== MEJORAS ADICIONALES PARA BOTONES ===== */
.btn-whatsapp:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-principal:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

.btn-catalogo:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
}

/* Mejora para iconos en dispositivos móviles */
@media (max-width: 768px) {
    .btn-whatsapp::before,
    .btn-whatsapp-principal::before {
        font-size: 1.3em;
    }
    
    .btn-catalogo::before {
        font-size: 1.2em;
    }
}

/* ===== ANIMACIONES ===== */
.titulo-animado {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease forwards;
}

.animar-entrada {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards 0.3s;
}

.animar-entrada-izquierda {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.animar-entrada-derecha {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.card-animacion {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    transition: all 0.8s ease;
}

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

@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Animaciones de scroll */
.fade-in-up {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: all 0.8s ease;
}

.fade-in-left {
    opacity: 1 !important;
    transform: translateX(0) !important;
    transition: all 0.8s ease;
}

.fade-in-right {
    opacity: 1 !important;
    transform: translateX(0) !important;
    transition: all 0.8s ease;
}

/* Delays para animaciones */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }