/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

html {
    scroll-behavior: smooth;
}

.centered {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 55vh;
    margin: 0;

    text-align: center;
}

.blinking-cursor {
    display: inline-block;
    animation: blink 1.5s steps(1, start) infinite;
}

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



.banner-image {
    float: right;
    margin-left: 20px;
    max-width: 50%;
    border-radius: 10px; /* Ajusta el valor para definir el radio de las esquinas */
}

@media (max-width: 600px) {
    .banner-image {
        float: none;
        display: block;
        margin: 0 auto 20px;
        max-width: 100%;
        border-radius: 10px; /* Se mantienen las esquinas curveadas en pantallas pequeñas */
    }
}

/* Oculta la línea del brand text por defecto */
.brand-text {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s ease-in-out;
}

/* Muestra el brand text cuando se hace scroll hacia abajo */
body.scroll-down .brand-text {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* Estilos para el Spinner en los botones */
.spinner_hzlK{
    animation:spinner_vc4H .8s linear infinite;animation-delay:-.8s
}

.spinner_koGT{
    animation-delay:-.65s
}

.spinner_YF1u{
    animation-delay:-.5s
}

@keyframes spinner_vc4H{
    0%{
        y:1px;height:22px
    }
    93.75%{
        y:5px;height:14px;opacity:.2
    }
}

