/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=SUSE:wght@100..800&display=swap');

/* Reiniciar Valores por Defecto del Navegador */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "SUSE", sans-serif;
}

/* Section */

section {
	position: relative;
	width: 100%;
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	background-color: #bd9b9b;
}

/* Header */

section header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	padding: 30px 100px;
	z-index: 1;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

section header .logo {
	color: #ffffffa2;
	font-size: 1.5em;
	text-decoration: none;
	text-align: center;
	letter-spacing: 1px;
	font-weight: 700;
	text-shadow: 
	0 0 5px #c134f8,      /* Resplandor más sutil */
	0 0 10px #c134f8,    /* Resplandor más fuerte */
	0 0 15px #c134f8,     /* Resplandor más intenso */
	0 0 20px #c134f8,     /* Resplandor aún más intenso */
	0 0 25px #f88c34,     /* Resplandor máximo */
	0 0 30px #f88c34,     /* Resplandor adicional */
	0 0 35px #f88c34;     /* Resplandor final */
	
}

section header .menu {
	width: 55px;
	height: 55px;
}

section header .menu img {
	position: absolute;
	width: 55px;
	height: 55px;
	object-fit: cover;
	cursor: pointer;
	filter: invert(1);
}


/* Video Background */

section video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Aside (Menú Lateral) */

section aside {
	position: absolute;
	display: flex;
	flex-direction: column;
	top: 0;
	right: 0;
	z-index: 10;
	width: 350px;
	height: 100%;
	background: #fff;
	transform: translateX(100%);
	transition: 0.3s;
	overflow: hidden;
}

section aside.active {
	transform: translateX(0px);
}

section aside .menu img {
	position: absolute;
	margin: 30px;
	right: 0;
	width: 20px;
	height: 20px;
	object-fit: cover;
	filter: invert(1);
	z-index: 100;
	cursor: pointer;
}

section aside .box {
	position: relative;
	width: 350px;
	height: 300px;
	overflow: hidden;
}

section aside .box img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
	filter: brightness(50%);
	transition: 0.3s;
}

section aside .box .texto {
	position: absolute;
	bottom: 0;
	margin: 30px;
	
}

section aside .box .texto p {
	color: #ffffffcb;
	font-weight: 700;
	transform: translateX(-150%);
	transition: 0.3s;

}

section aside .box .texto p span {
	font-style: italic;
	
}
.texto a {
    color: inherit; /* Hereda el color del texto del padre */
    text-decoration: none; /* Quita el subrayado */
}

.texto a:hover {
    text-decoration: none; /* Quita el subrayado al pasar el mouse */
}

section aside .box:hover img {
	filter: brightness(100%);
	transform: scale(1.2);
}

section aside .box:hover .texto p {
	transform: translateX(0px);
}


/* Contenido */


section .contenido {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	z-index: 1;
}

section .contenido h2 {
    color: #000000; /* Color neón rojo/naranja */
    font-size: 7em;
    letter-spacing: 2px;
    text-shadow:
        0 0 5px #c134f8,      /* Resplandor más sutil */
        0 0 10px #c134f8,    /* Resplandor más fuerte */
        0 0 15px #c134f8,     /* Resplandor más intenso */
        0 0 20px #c134f8,     /* Resplandor aún más intenso */
        0 0 25px #f88c34,     /* Resplandor máximo */
        0 0 30px #f88c34,     /* Resplandor adicional */
        0 0 35px #f88c34;     /* Resplandor final */
}

footer {
    background-color: #3333334b;
    color: white;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}



/* Cards */

section .cards {
	position: absolute;
	bottom: 0;
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	
}

section .cards .card {
	display: flex;
	align-items: center;
	width: 350px;
	height: 150px;
	margin: 20px;
	
}

section .cards .card img {
	width: 40px;
	height: 40px;
	filter: invert(1);
	margin-right: 20px;
	text-shadow: 0 5px 5px rgba(255, 255, 255, 0.5); /* Sombra blanca */
	
}

section .cards .card p {
	color: #fff;
	font-size: 0.9em;
	text-shadow: 
	0 0 5px #c134f8,      /* Resplandor más sutil */
	0 0 10px #c134f8,    /* Resplandor más fuerte */
	0 0 15px #c134f8,     /* Resplandor más intenso */
	0 0 20px #c134f8,     /* Resplandor aún más intenso */
	0 0 25px #f88c34,     /* Resplandor máximo */
	0 0 30px #f88c34,     /* Resplandor adicional */
	0 0 35px #f88c34;     /* Resplandor final */
	
}
a {
	text-decoration: none;
	color: inherit;
	font-weight: bold;
}

/* Redes Sociales */

section .redesSociales {
	position: absolute;
	top: 30%;
	left: 0;
	padding-left: 100px;
}

section .redesSociales ul {
	list-style: none;
}

section .redesSociales ul li {
	margin-bottom: 20px;
}

section .redesSociales ul li a {
	color: #fff;
	font-size: 1.3em;
	transition: 0.3s;
}

section .redesSociales ul li a:hover {
	color: #b7b7b7;
}


/* Breakpoints */


/* -- Pantallas largas -- */

@media only screen and (max-width: 1200px) {
	section .cards .card {
		width: 300px;
		height: 50px;
	}
}

/* -- Laptops -- */

@media only screen and (max-width: 992px) {
	section .cards .card {
		width: 250px;
	}
}

/* -- Tablets -- */

@media only screen and (max-width: 768px) {
	section header {
		padding: 20px 80px;
	}

	section aside {
		width: 100%;
	}

	section aside .box {
		width: 100%;
	}

	section .contenido h2 {
		font-size: 5em;
	}

	section .contenido p {
		font-size: 0.9em;
	}

	section .cards .card {
		width: 180px;
	}

	section .cards .card img {
		width: 35px;
		height: 35px;
	}

	section .cards .card p {
		font-size: 0.8em;
	}

	section .redesSociales {
		padding-left: 80px;
	}
}

/* -- Celulares -- */

@media only screen and (max-width: 600px) {
	section header {
		padding: 20px 50px;
	}
	section .contenido {
		width: 200px;
		text-align: center;
	}

	section .contenido h2 {
		font-size: 3em;
	}

	section .logo img {
		width: 80%;
		margin-top: 10%;
		margin-left: -20%;
	}


	section .contenido p {
		font-size: 0.8em;
	}

	section .cards {
		flex-direction: column;
		display: grid;               /* Usa Grid Layout para el contenedor */
		grid-template-columns: repeat(2, 1fr); /* Define 2 columnas de igual tamaño */
		grid-template-rows: repeat(2, auto);   /* Define 2 filas de tamaño automático */
		margin-left: 10%;
		margin-bottom: 10%;
	}

	section .cards .card {
		width: 160px;
		height: 50px;
		margin: 10px;
	}

	section .redesSociales {
		padding-left: 30px;
		margin-top: -50px;
	}
}
