
/* PRELOADER ESTILOS*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5); /* Blanco translúcido */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.loader-circle-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background-color: white; /* Fondo blanco para el contenedor del círculo */
    width: 165px; /* Igual que el loader-circle para que coincidan */
    height: 165px; /* Igual que el loader-circle para que coincidan */
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo {
    position: relative;
    width: 80px !important; /* Ajusta al tamaño de tu logo */
    z-index: 10;
}
.logo img {
    width: 100%;
    height: auto;
}
.loader-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 5px solid rgba(255, 255, 255, 0.524); /* Borde transparente para las partes no animadas */
    border-top: 5px solid rgba(232, 62, 140, 1); /* Color del borde superior giratorio */
    border-radius: 50%;
    width: 165px; /* Ajusta al tamaño deseado */
    height: 165px; /* Ajusta al tamaño deseado */
    animation: spin 1.5s linear infinite;
    box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.2); /* Sombra ajustable */
}
@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}
/*End Preloader */

.landing-page-title {
    font-family: "Allura", sans-serif;
}

.landing-page-subtitle {
    font-family: "Ovo", sans-serif;
}

.g-bg-secondary {
    background-color: #fff !important;
}

html, body, main {
	height: 100%;
}