/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;800&display=swap');

/* Estilos para la pagina de Inicio */
body {
    /* Aquí el origen de la imagen */
	background-image: url("../img/lkvi-bg.jpg");
    /* Fijar la imagen de fondo este vertical y     horizontalmente y centrado */
    background-position: center center;
    /* Esta imagen no debe de repetirse */
    background-repeat: no-repeat;
    /* COn esta regla fijamos la imagen en la pantalla. */
    background-attachment: fixed;
    /* La imagen ocupa el 100% y se reescala */
    background-size: cover;
    /* Damos un color de fondo mientras la imagen está cargando  */
    background-color: dimgray;
    /* Colocamos el margen */
    margin: 0px;
}
/******** CABECERA *************/
.main-header {
	background: url("");
    background-size: cover;
    width: 100%;
    height: 60px;
    left: 0;
	top: 0;
    position: fixed;
}
.boton_inicio {
     animation-name: flash;
     animation-duration: 3s;
     margin-top: 20px;
     float: right;
     padding: 12px;
     display: inline-block;
     text-decoration: none;
     font-weight: 600;
     font-size: 20px;
     color: #b4b1b1;
     background-color: #be0000;
     border-radius: 6px;
     border: 2px solid #650101;
     margin-right: 90px;
 }
 .boton_inicio:hover {
    color:floralwhite;
    background-color: transparent;
    border: 2px solid #650101;
 }
.boton_cpanel {
     animation-name: flash;
     animation-duration: 3s;
    margin-top: 20px;
    float: right;
    padding: 12px;
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
    font-size: 20px;
    color:floralwhite;
    /*background-color: #FEC95C;*/
    border-radius: 6px;
    border: 2px solid #650101;
    margin-right: 10px;
 }
 .boton_cpanel:hover {
    color: #b4b1b1;
    background-color: #be0000;
	 border: 2px solid #650101;
 }

/* cuerpo de la Página */
.pos_logo {
    margin-left: 30px;
    animation-name: bajarli;
    animation-duration: 2s;
    margin-top: 60px;
}
.footer {
    position: absolute;
    bottom: 0;
    width: 80%;
    height: 30px;
    margin-left: 50px;
}
.letra {
    font-family: bold sans-serif;
    color: #fbf8f8;
    font-size: 24px;
    line-height: 50%;
}
.subir {
    animation-name: subirlk,flash;
    animation-duration: 3s;
}

/* ? ----- PORTADA ----- */
.portada {
	width: 100%;
	background: #EFEFEF;

	min-height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	transition: .5s ease-out all;
}
.portada .header {
	margin-bottom: 100px;
	text-transform: uppercase;
	letter-spacing: 3px;
}

.portada .header .logotipo {
	font-size: 50px;
	font-size: 900;
	margin-bottom: 20px;
}

.portada .header .mensaje {
	font-size: 30px;
	font-weight: 600;
}

/* ? ----- Cuenta Regresiva ----- */
#cuenta {
	animation-name: flash;
    animation-duration: 3s;
	margin-top: 320px;
	display: flex;
	justify-content: center;
	align-items: center;
	justify-content: center;
	text-align: center;
	transition: .5s ease-out all;
	margin-bottom: 100px;
	opacity: 0.6;
	color: brown;
}
.sitio-web {
	animation-name: flash;
	animation-duration: 3s;
	margin-top: 90px;
	font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", "serif";
	color: #fbf8f8;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	transition: .5s ease-out all;
}
.quedan{
	animation-name: flash;
	animation-duration: 3s;
	margin-top: 10px;
	font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", "serif";
	color: #fbf8f8;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	transition: .5s ease-out all;
}


.simply-section {
	background: #fff;
	width: 180px;
	height: 180px;
	margin: 0 20px;
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.simply-amount {
	display: block;
	font-size: 50px;
	font-weight: 700;
}

.simply-word {
	font-weight: 300;
	font-size: 30px;
}


/* ? ---------------------------- */

/*******  EFECTOS ******************/
@keyframes bajarli {
    from {margin-top: 0;}
    to {margin-top: 60px;}
}
@keyframes flash {
    from {opacity: 0;}
    to {opacity: 1;}
}
@keyframes subirlk {
    from {margin-bottom: -250px;}
    to {margin-bottom: 0;}
}
body::-webkit-scrollbar{
    width: 1px;
}
body::-webkit-scrollbar-thumb{
    background: blue;
    border-radius: 5px;
}

.fecha span {
    font-weight: 600;
}

.cuenta-atras {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.grupo {
    line-height: 1;
}

.grande {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 6rem;
    font-weight: 800;
}

@media (width < 550px) {
    .cuenta-atras {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

@media (width < 350px) {
    .cuenta-atras {
        display: flex;
        flex-direction: column;
    }
}