/*
   ===========================
   ESTILOS PARA EL HERO SECTION
   ===========================
*/

/* Tipografía del hero */
.hero-content .subtitle {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-content .title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    letter-spacing: 1px;
    line-height: 1.2;
    margin-bottom: 30px;
}

/* Efecto de degradado para textos */
.gradient-text {
    background: linear-gradient(to right, #fff, #8c8fa1, #5b64e8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    animation: gradient-animation 8s ease infinite;
    background-size: 200%;
}

/* Animaciones */
@keyframes gradient-animation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ==================== BOTÓN HERO CON EFECTO LETRAS ==================== */

.btn-53,
.btn-53 *,
.btn-53 :after,
.btn-53 :before,
.btn-53:after,
.btn-53:before {
    border: 0 solid;
    box-sizing: border-box;
}

.btn-53 {
    -webkit-tap-highlight-color: transparent;
    -webkit-appearance: button;
    background-color: #8c9eff;
    background-image: none;
    color: #fff;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 100%;
    line-height: 1.5;
    margin: 0;
    -webkit-mask-image: -webkit-radial-gradient(#000, #fff);
    padding: 0;
}

.btn-53:disabled {
    cursor: default;
}

.btn-53:-moz-focusring {
    outline: auto;
}

.btn-53 svg {
    display: block;
    vertical-align: middle;
}

.btn-53 [hidden] {
    display: none;
}

.btn-53 {
    border: 1px solid #8c9eff;
    border-radius: 999px;
    box-sizing: border-box;
    display: block;
    font-weight: 900;
    overflow: hidden;
    padding: 1.2rem 3rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-53 .original {
    background: #fff;
    color: #1a1a1a;
    display: grid;
    inset: 0;
    place-content: center;
    position: absolute;
    transition: transform 0.2s cubic-bezier(0.87, 0, 0.13, 1);
}

.btn-53:hover .original {
    transform: translateY(100%);
}

.btn-53 .letters {
    display: inline-flex;
}

.btn-53 span {
    opacity: 0;
    transform: translateY(-15px);
    transition: transform 0.2s cubic-bezier(0.87, 0, 0.13, 1), opacity 0.2s;
}

.btn-53 span:nth-child(2n) {
    transform: translateY(15px);
}

.btn-53:hover span {
    opacity: 1;
    transform: translateY(0);
}

.btn-53:hover span:nth-child(2) {
    transition-delay: 0.02s;
}

.btn-53:hover span:nth-child(3) {
    transition-delay: 0.04s;
}

.btn-53:hover span:nth-child(4) {
    transition-delay: 0.06s;
}

.btn-53:hover span:nth-child(5) {
    transition-delay: 0.08s;
}

.btn-53:hover span:nth-child(6) {
    transition-delay: 0.1s;
}

.btn-53:hover span:nth-child(7) {
    transition-delay: 0.12s;
}

.btn-53:hover span:nth-child(8) {
    transition-delay: 0.14s;
}

.btn-53:hover span:nth-child(9) {
    transition-delay: 0.16s;
}

.btn-53:hover span:nth-child(10) {
    transition-delay: 0.18s;
}

.btn-53:hover span:nth-child(11) {
    transition-delay: 0.2s;
}

.btn-53:hover span:nth-child(12) {
    transition-delay: 0.22s;
}

.btn-53:hover span:nth-child(13) {
    transition-delay: 0.24s;
}

.btn-53:hover span:nth-child(14) {
    transition-delay: 0.26s;
}

.btn-53:hover span:nth-child(15) {
    transition-delay: 0.28s;
}

.btn-53:hover span:nth-child(16) {
    transition-delay: 0.3s;
}

.btn-53:hover span:nth-child(17) {
    transition-delay: 0.32s;
}

.btn-53:hover span:nth-child(18) {
    transition-delay: 0.34s;
}

.btn-53:hover span:nth-child(19) {
    transition-delay: 0.36s;
}

.btn-53:hover span:nth-child(20) {
    transition-delay: 0.38s;
}

.btn-53:hover span:nth-child(21) {
    transition-delay: 0.4s;
}

.btn-53:hover span:nth-child(22) {
    transition-delay: 0.42s;
}

.btn-53:hover span:nth-child(23) {
    transition-delay: 0.44s;
}

.btn-53:hover span:nth-child(24) {
    transition-delay: 0.46s;
}

.btn-53:hover span:nth-child(25) {
    transition-delay: 0.48s;
}

.btn-53:hover span:nth-child(26) {
    transition-delay: 0.5s;
}

.btn-53:hover span:nth-child(27) {
    transition-delay: 0.52s;
}

.btn-53:hover span:nth-child(28) {
    transition-delay: 0.54s;
}

.btn-53:hover span:nth-child(29) {
    transition-delay: 0.56s;
}

.btn-53:hover span:nth-child(30) {
    transition-delay: 0.58s;
}

/* Media queries para responsividad */
@media (max-width: 768px) {
    .hero-content .title {
        font-size: 3.5rem;
    }

    .hero-content .subtitle {
        font-size: 0.9rem;
    }

    .btn-53 {
        padding: 1rem 2rem;
        font-size: 90%;
    }
}

@media (max-width: 576px) {
    .hero-content .title {
        font-size: 2.5rem;
    }

    .btn-53 {
        padding: 0.9rem 1.5rem;
        font-size: 80%;
        letter-spacing: 1px;
    }
}
