/** Inicia importacion de animacion Anima.css **/
@import url('https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css');

/** Inicia animación de encabezado */
.animacion_head {
    /* Animacion en bajada de el encabezado*/
    animation: fadeInDown;
    animation-duration: 1.5s;
    animation-fill-mode: both;
    animation-timing-function: ease-in-out;
}

.anima_text_head {
    /*Animacion de los textos del encabezado*/
    animation: fadeInUp;
    animation-duration: 4s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: both;
}

/* ---- Termina animación de encabezado ---- */

/** Inicia animacion de textos*/
.aparicion {
    animation: fadeInUp;
    animation-duration: 2s;
    animation-timing-function: ease-in-out;
    transform: none;

}




/** ===== Inicia animación de botones ===== */
.boton {
    position: relative;
    color: white;
    /* Color inicial del texto */
    background: #baa684;
    border: 0.5px solid white;
    /* Si tienes borde, puedes quitarlo */
    transition: background 0.5s ease, color 0.5s ease;
    z-index: 1;
    overflow: hidden;
    /* Para que la animación no se salga del botón */
}

.boton:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgb(246, 239, 223);
    /* Fondo blanco */
    transition: width 0.9s ease;
    z-index: -1;
    /* Lo ponemos detrás del texto */
}

.boton:hover:before {
    width: 100%;
    /* La barra blanca cubre todo el botón */
}

.boton:hover {
    color: black;
    /* Letras negras al pasar el mouse */
    /* border-color: #2e2e2e; --- /* Opcional: el borde también se vuelve negro */
}

/* ---- Termina animación de botones ---- */

/** ===== Inicia animación de enlace ===== */

a {
    color: #1a73e8;
    /* color normal */
    text-decoration: none;
}

a:hover {
    color: #e91e63;
    /* color al pasar el mouse */
}

/* ---- Termina animación de enlace ---- */