@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.bg-gradient-radial {
    background: radial-gradient(circle at center, var(--tw-gradient-stops));
}

.bg-dots {
    background-image: radial-gradient(circle, #fff 1px, transparent 1px);
    background-size: 50px 50px;
}

.animate-pulse {
    animation: pulse 8s infinite;
}

.animate-spin {
    animation: spin 240s linear infinite;
}

#logo-showcase {
    animation: float 2s infinite alternate;
}

@keyframes float {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-10px); }
}

.drop-shadow-lg {
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
}

#app-showcase .phone {
    transition: transform 0.5s;
    border-radius: 20px; /* Bordes redondeados */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Sombra en la parte inferior */
    overflow: hidden; /* Para asegurar que la sombra y el borde no se salgan */
}

#app-showcase .phone:hover {
    transform: scale(1.05) rotateY(5deg) rotateX(-5deg);
}


#features .feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

#contact-form input,
#contact-form textarea {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

#contact-form button {
    transition: background-color 0.3s;
}

#contact-form button:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

