2025-11-19 11:44:01 +01:00
|
|
|
/*=============INICIO DE ESTILOS DE PLANTILLA==============*/
|
|
|
|
|
|
2025-11-19 11:23:43 +01:00
|
|
|
/*Reset básico: Eliminacion del padding y evita que el tamaño crezca por máargenes internos*/
|
2025-11-17 20:00:22 +01:00
|
|
|
*
|
|
|
|
|
{
|
|
|
|
|
padding: 0;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
list-style: none;
|
|
|
|
|
}
|
2025-11-19 11:23:43 +01:00
|
|
|
|
|
|
|
|
/*Estilo básico del cuerpo*/
|
2025-11-17 20:00:22 +01:00
|
|
|
body
|
|
|
|
|
{
|
|
|
|
|
font-family: 'Manjari', sans-serif;
|
|
|
|
|
background: linear-gradient(135deg, #0f172a, #1e293b);
|
|
|
|
|
color: white;
|
|
|
|
|
}
|
2025-11-19 11:23:43 +01:00
|
|
|
|
|
|
|
|
/*Barra de navegacion fija. Efecto "glassmorphism"*/
|
2025-11-17 20:00:22 +01:00
|
|
|
.navbar
|
|
|
|
|
{
|
|
|
|
|
position:fixed;
|
|
|
|
|
top: 1rem;
|
|
|
|
|
left: 1rem;
|
|
|
|
|
right: 1rem;
|
|
|
|
|
width: calc(100% -2rem);
|
|
|
|
|
padding: 1rem 1.5rem;
|
|
|
|
|
border-radius: 20px;
|
|
|
|
|
color: white;
|
|
|
|
|
z-index: 64;
|
|
|
|
|
|
2025-11-19 11:23:43 +01:00
|
|
|
/*Efecto cristal difuminado*/
|
2025-11-17 20:00:22 +01:00
|
|
|
backdrop-filter: blur(12px) saturate(180%);
|
|
|
|
|
-webkit-backdrop-filter: blur(12px) saturate(180%);
|
|
|
|
|
border: 1px solid rgba(255, 255, 255, 0.2);
|
|
|
|
|
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
|
|
|
|
|
|
|
|
|
|
display:flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
2025-11-19 11:23:43 +01:00
|
|
|
|
|
|
|
|
/*Contenedor del logo*/
|
2025-11-17 20:00:22 +01:00
|
|
|
.logoContainer
|
|
|
|
|
{
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
}
|
|
|
|
|
|
2025-11-19 11:23:43 +01:00
|
|
|
/*Estilo del texto e icono del logo*/
|
2025-11-17 20:00:22 +01:00
|
|
|
.logoContainer a
|
|
|
|
|
{
|
|
|
|
|
color: white;
|
|
|
|
|
font-size: 1.125rem;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
margin-right: 1rem;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
}
|
2025-11-19 11:23:43 +01:00
|
|
|
/*Aumenta el tamaño del logo en pantallas más grandes*/
|
2025-11-17 20:00:22 +01:00
|
|
|
@media (min-width: 768px){
|
|
|
|
|
.logoContainer a
|
|
|
|
|
{
|
|
|
|
|
font-size: 1.25rem;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2025-11-19 11:23:43 +01:00
|
|
|
/*Lista de links del menú*/
|
2025-11-17 20:00:22 +01:00
|
|
|
.navbarLinks
|
|
|
|
|
{
|
|
|
|
|
list-style: none;
|
|
|
|
|
margin-right: 1rem;
|
|
|
|
|
padding: 0;
|
|
|
|
|
flex-grow: 1;
|
|
|
|
|
}
|
2025-11-19 11:23:43 +01:00
|
|
|
/*En pantallas grandes, la lista se alinea de manera horizontal*/
|
2025-11-17 20:00:22 +01:00
|
|
|
@media (min-width: 768px){
|
|
|
|
|
.navbarLinks
|
|
|
|
|
{
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2025-11-19 11:23:43 +01:00
|
|
|
/*Espacio entre items del menú*/
|
2025-11-17 20:00:22 +01:00
|
|
|
.navbarLinks li
|
|
|
|
|
{
|
|
|
|
|
margin-right: 0.5rem;
|
|
|
|
|
}
|
2025-11-19 11:23:43 +01:00
|
|
|
/*En pantallas grandes, los items se muestran en línea con más espacio*/
|
2025-11-17 20:00:22 +01:00
|
|
|
@media (min-width: 768px) {
|
|
|
|
|
.navbarLinks li
|
|
|
|
|
{
|
|
|
|
|
display: inline-block;
|
|
|
|
|
margin-right: 1rem;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2025-11-19 11:23:43 +01:00
|
|
|
/*Estilos de enlaces del navbar*/
|
2025-11-17 20:00:22 +01:00
|
|
|
.navbarLinks a
|
|
|
|
|
{
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
color: white;
|
|
|
|
|
}
|
|
|
|
|
|
2025-11-19 11:23:43 +01:00
|
|
|
/*Contenedor general centrado*/
|
2025-11-17 20:00:22 +01:00
|
|
|
.container
|
|
|
|
|
{
|
|
|
|
|
max-width: 1200px;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
}
|
|
|
|
|
|
2025-11-19 11:23:43 +01:00
|
|
|
|
|
|
|
|
/*Estilos del footer. Estilo glassmorphism*/
|
2025-11-17 20:00:22 +01:00
|
|
|
.footer
|
|
|
|
|
{
|
|
|
|
|
bottom: 1rem;
|
|
|
|
|
left: 1rem;
|
|
|
|
|
right: 1rem;
|
|
|
|
|
padding: 1rem;
|
|
|
|
|
color: white;
|
|
|
|
|
z-index: 50;
|
|
|
|
|
border-radius: 20px;
|
|
|
|
|
|
2025-11-19 11:23:43 +01:00
|
|
|
/*Efecto cristal difuminado*/
|
|
|
|
|
|
2025-11-17 20:00:22 +01:00
|
|
|
background: rgba(255, 255, 255, 0.05);
|
|
|
|
|
backdrop-filter: blur(20px) saturate(180%);
|
|
|
|
|
-webkit-backdrop-filter: blur(20px) saturate(180%);
|
|
|
|
|
border: 1px solid rgba(255, 255, 255, 0.2);
|
|
|
|
|
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
|
|
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
|
2025-11-19 11:23:43 +01:00
|
|
|
/*Fila principal del footer (flex)*/
|
2025-11-17 20:00:22 +01:00
|
|
|
.footerRow
|
|
|
|
|
{
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: wrap;
|
2025-11-19 11:44:01 +01:00
|
|
|
justify-content: center;
|
2025-11-17 20:00:22 +01:00
|
|
|
}
|
|
|
|
|
|
2025-11-19 11:23:43 +01:00
|
|
|
/*Cada columna del footer*/
|
2025-11-17 20:00:22 +01:00
|
|
|
.footerLinks
|
|
|
|
|
{
|
2025-11-19 11:44:01 +01:00
|
|
|
flex: 1 1 200px;
|
|
|
|
|
max-width: 300px;
|
2025-11-17 20:00:22 +01:00
|
|
|
}
|
|
|
|
|
|
2025-11-19 11:23:43 +01:00
|
|
|
/*Titulos de los bloques del footer*/
|
2025-11-17 20:00:22 +01:00
|
|
|
.footerLinks h4
|
|
|
|
|
{
|
|
|
|
|
font-size: 20px;
|
|
|
|
|
color: #FFFFFF;
|
|
|
|
|
margin-bottom: 25px;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
border-bottom: 2px solid #00c3ff;
|
|
|
|
|
padding-bottom: 10px;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
}
|
|
|
|
|
|
2025-11-19 11:23:43 +01:00
|
|
|
/*Enlaces dentro de las columnas del footer*/
|
2025-11-17 20:00:22 +01:00
|
|
|
.footerLinks ul li a
|
|
|
|
|
{
|
|
|
|
|
font-size: 18px;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
color: #bbbbbb;
|
|
|
|
|
display: block;
|
|
|
|
|
margin-bottom: 15px;
|
|
|
|
|
transition: all .3s ease;
|
|
|
|
|
}
|
|
|
|
|
|
2025-11-19 11:23:43 +01:00
|
|
|
/*Hover del footer*/
|
2025-11-17 20:00:22 +01:00
|
|
|
.footerLinks ul li a:hover
|
|
|
|
|
{
|
|
|
|
|
color:#ffffff;
|
|
|
|
|
padding-left: 6px;
|
|
|
|
|
}
|
|
|
|
|
|
2025-11-19 11:23:43 +01:00
|
|
|
/*Iconos redondos de redes sociales*/
|
2025-11-17 20:00:22 +01:00
|
|
|
.socialLinks a
|
|
|
|
|
{
|
|
|
|
|
display: inline-block;
|
|
|
|
|
min-height: 40px;
|
|
|
|
|
width: 40px;
|
|
|
|
|
background-color: rgba(255, 255, 255, 0.2);
|
|
|
|
|
margin: 0 10px 10px 0;
|
|
|
|
|
text-align: center;
|
|
|
|
|
line-height: 40px;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
transition: all .5s ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.socialLinks a:hover
|
|
|
|
|
{
|
2025-11-24 12:41:47 +01:00
|
|
|
background-color: #41eb60;
|
2025-11-17 20:00:22 +01:00
|
|
|
}
|
2025-11-19 11:23:43 +01:00
|
|
|
/*Footer responsive para moviles*/
|
2025-11-17 20:00:22 +01:00
|
|
|
@media(max-width: 991px) {
|
|
|
|
|
.footerRow
|
|
|
|
|
{
|
|
|
|
|
text-align:center;
|
|
|
|
|
}
|
|
|
|
|
.footerLinks
|
|
|
|
|
{
|
|
|
|
|
width: 100%;
|
|
|
|
|
margin-bottom: 30px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2025-11-19 11:23:43 +01:00
|
|
|
/*Zona de Creative Commons*/
|
|
|
|
|
|
2025-11-17 20:00:22 +01:00
|
|
|
.creativeCommons
|
|
|
|
|
{
|
|
|
|
|
width: 100%;
|
|
|
|
|
text-align: center;
|
|
|
|
|
margin-top: 2rem;
|
|
|
|
|
font-size: 0.875rem;
|
|
|
|
|
color: #bbbbbb;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
gap: 0.2em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.creativeCommons a
|
|
|
|
|
{
|
|
|
|
|
color: #bbbbbb;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
margin: 0 0.2em;
|
|
|
|
|
transition: color 0.3s ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.creativeCommons a:hover
|
|
|
|
|
{
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.creativeCommons img
|
|
|
|
|
{
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
max-width: 1em;
|
|
|
|
|
max-height: 1em;
|
|
|
|
|
margin-left: 0.2em;
|
|
|
|
|
}
|
|
|
|
|
|
2025-11-19 11:23:43 +01:00
|
|
|
/*Espacio para que el contenido no quede oculto por el navbar y el footer*/
|
2025-11-17 20:00:22 +01:00
|
|
|
|
|
|
|
|
.content {
|
|
|
|
|
padding-top: 7rem;
|
|
|
|
|
padding-bottom: 30rem;
|
|
|
|
|
max-width: 1200px;
|
|
|
|
|
margin: 0 auto;
|
2025-11-19 11:44:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*=============FINAL DE ESTILOS DE PLANTILLA==============*/
|
2025-11-21 17:11:38 +01:00
|
|
|
/*====================Seccion juegos======================*/
|
|
|
|
|
.sectionTitle
|
|
|
|
|
{
|
|
|
|
|
text-align: center;
|
|
|
|
|
font-size: 2rem;
|
|
|
|
|
margin-bottom: 3rem;
|
|
|
|
|
color: #00C3FF;
|
|
|
|
|
text-shadow: 0 0 15px rgba(0, 195, 255, 0.5);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cardsContainer
|
|
|
|
|
{
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
|
|
|
|
gap: 2.5rem;
|
|
|
|
|
padding: 0 1.5rem;
|
|
|
|
|
margin-bottom: 5rem;
|
|
|
|
|
}
|
|
|
|
|
/*==================Fin seccion juegos====================*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*=====================Seccion CTA========================*/
|
|
|
|
|
|
|
|
|
|
/*===================Fin seccion CTA======================*/
|