/* =============================================
   WPS LANDING THEME — Estilos específicos
   ============================================= */

/* Tipografía premium */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

/* Hero con parallax sutil */
.wps-hero {
    position: relative;
}

/* Cards con hover premium */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-img-top {
    transition: transform 0.5s ease;
}

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

/* Backdrop blur para secciones */
.backdrop-blur {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Badge de categoría en hero */
.bg-white.bg-opacity-20 {
    background-color: rgba(255,255,255,0.2) !important;
}

/* Animación pulse para WhatsApp flotante */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Secciones con espaciado extra */
.py-6 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.min-vh-80 {
    min-height: 80vh;
}

/* Responsive */
@media (max-width: 768px) {
    .py-6 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    .wps-hero {
        min-height: 70vh !important;
    }
    .card-flotante-hero {
        position: relative !important;
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    .display-3 {
        font-size: 2.2rem;
    }
    .display-6 {
        font-size: 1.8rem;
    }
    .py-6 {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    .wps-hero {
        min-height: 60vh !important;
    }
}

@media (max-width: 400px) {
    .display-3 {
        font-size: 1.8rem;
    }
    .display-6 {
        font-size: 1.5rem;
    }
    .wps-hero {
        min-height: auto !important;
        padding: 3rem 0;
    }
    .btn-lg {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
}
