/* Animación de escalado secuencial */
.animate-scale {
    animation: scaleIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@keyframes scaleIn {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Retrasos para cada elemento */
.hero .subtitle,
.hero h1,
.hero .subtitle:nth-of-type(2),
.hero .cta-button,
.key-points .point:nth-child(1),
.key-points .point:nth-child(2),
.key-points .point:nth-child(3) {
    opacity: 0;
}

/* Asignamos los delays */
.hero .subtitle {
    animation: scaleIn 0.6s forwards;
    animation-delay: 0.3s;
}

.hero h1 {
    animation: scaleIn 0.6s forwards;
    animation-delay: 0.6s;
}

.hero .subtitle:nth-of-type(2) {
    animation: scaleIn 0.6s forwards;
    animation-delay: 0.9s;
}

.hero .cta-button {
    animation: scaleIn 0.6s forwards;
    animation-delay: 1.2s;
}

.key-points .point:nth-child(1) {
    animation: scaleIn 0.6s forwards;
    animation-delay: 1.5s;
}

.key-points .point:nth-child(2) {
    animation: scaleIn 0.6s forwards;
    animation-delay: 1.8s;
}

.key-points .point:nth-child(3) {
    animation: scaleIn 0.6s forwards;
    animation-delay: 2.1s;
}

