@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700;900&family=Playfair+Display:ital,wght=1,700&display=swap');

body {
    background-color: #FFFFFF;
    color: #414141;
    font-family: 'Inter', sans-serif;
    background-image: radial-gradient(#f3f4f6 1px, transparent 1px);
    background-size: 20px 20px;
}

.blue-text { color: #0077b6; }

.font-cursive {
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.main-cta {
    background-color: #0077b6;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 119, 182, 0.25);
    border-radius: 12px;
    border: none;
    cursor: pointer;
}

.main-cta:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
    box-shadow: 0 12px 25px rgba(0, 119, 182, 0.35);
}

.wa-btn {
    background-color: #25D366;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
    border-radius: 12px;
    cursor: pointer;
}

.wa-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.4);
}

/* Animación para aparecer deslizando hacia abajo con difuminado */
@keyframes slideDownFadeIn {
    0% { 
        opacity: 0; 
        transform: translateY(-30px); 
    }
    100% { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.hidden-action {
    display: none !important;
    opacity: 0;
}

.reveal-action {
    display: flex !important;
    animation: slideDownFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Detalles del reproductor tipo WhatsApp */
input[type=range] {
    -webkit-appearance: none;
    background: transparent;
}
input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 14px;
    width: 14px;
    border-radius: 50%;
    background: #0077b6;
    cursor: pointer;
    margin-top: -5px;
    position: relative;
    z-index: 30;
}
input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    background: transparent;
}