* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
	text-decoration: none;
	scroll-behavior: smooth;
}

body {
	text-decoration: none;
	background: linear-gradient(45deg, #000000, #62BCBF);
}

header {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 8%;
	transition: ease .40s;
	background-color: rgba(0, 0, 0, 0.6);
}

.logo {
	width: 100px;
}

.navbar {
	display: flex;
	list-style: none;
}

.navbar li {
	margin-left: 5px;
}

.navbar a {
	color: #FFFFFF;
	font-size: 1.1rem;
	font-weight: 500;
	padding: 10px 22px;
	border-radius: 4px;
	transition: ease .40s;
}

.navbar a:hover {
	background: #C9EDBB;
	color: #000000;
	box-shadow: 5px 10px 30px rgb(85 85 85 / 20%);
	border-radius: 4px;
}

#menu {
	display: none;
}

.menu-icono {
	width: 30px;
	margin-top: 8px;
}

.lab {
	cursor: pointer;
	display: none;
}

#btn-mas {
	display: none;
}

.social {
	position: fixed;
	z-index: 4;
	bottom: 20px;
	right: 20px;
}

.redes a, .icon-plus {
	display: block;
	text-decoration: none;
	background: #8EBC7D;
	color: #fff;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	border-radius: 50%;
	box-shadow: 0px 1px 10px rgba(0,0,0,0.4);
	transition: all 500ms ease;
}

.redes a:hover {
	background-color: #fff;
	color: #8EBC7D;
}

.redes a {
	margin-bottom: -15px;
	opacity: 0;
	visibility: hidden; 
}

#btn-mas:checked ~ .redes a {
	margin-bottom: 10px;
	opacity: 1;
	visibility: visible;
}

.icon-plus {
	cursor: pointer;
	background-color: #428E25;
	font-size: 18px;
}

#btn-mas:checked ~ .btn-mas .icon-plus {
	transform: rotate(137deg);
}

.btn-open-popup {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #D90C43;
	display: block;
	background: #FFFFFF;
	padding: 20px 50px;
	border-radius: 50px;
}

.about {
	padding: 30px;
}

.abus {
	background-color: rgba(255, 255, 255, 0.5);
	margin-top: 77px;
	padding: 30px;
	width: 100%;
	display: flex;
	justify-content: center;
	gap: 30px;
	place-items: center;
	border-radius: 20px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.abus-text {
	width: 70%;
	justify-content: center;
}

.abus-text h1 {
	text-align: center;
	font-family: 'Paytone One', sans-serif !important;
	font-size: 30px;
	margin-bottom: 15px;
}

.abus-text p {
	text-align: justify;
	font-family: 'Poppins', sans-serif;
}

.abus-img {
	width: 30%;
	text-align: center;
}

.abus-img img {
	width: 80%;
  	animation: balancear 5s ease-in-out infinite;
}

@keyframes balancear {
  	0% {
    	transform: translateY(0px) rotate(0deg);
  	}
  	25% {
   		transform: translateY(-8px) rotate(2deg);
  	}
  	50% {
    	transform: translateY(0px) rotate(0deg);
  	}
  	75% {
    	transform: translateY(-8px) rotate(-2deg);
  	}
  	100% {
    	transform: translateY(0px) rotate(0deg);
  	}
}

.mission {
	padding:  0px 30px;
	display: flex;
	justify-content: center;
	gap: 30px;
}

.miss {
	background-color: rgba(0, 0, 0, 0.7);
	padding: 30px;
	width: 100%;
	display: flex;
	justify-content: center;
	gap: 50px;
	place-items: center;
	border-radius: 20px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.mis {
	text-align: center;
}

.mis h1 {
	text-align: center;
	font-family: 'Paytone One', sans-serif !important;
	font-size: 30px;
	margin-bottom: 15px;
	color: #dfded5;
	font-weight: normal;
}

.mis p {
	text-align: justify;
	font-family: 'Poppins', sans-serif;
	margin-bottom: 30px;
	color: #dfded5;
	font-weight: normal;
}

.mis img {
	width: 200px;
  	animation: zoomInfinito 3s ease-in-out infinite;
}

@keyframes zoomInfinito {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05); /* Aumenta un 5% */
  }
  100% {
    transform: scale(1);
  }
}

.viss {
	background-color: rgba(0, 0, 0, 0.7);
	padding: 30px;
	width: 100%;
	display: flex;
	justify-content: center;
	gap: 50px;
	place-items: center;
	border-radius: 20px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.vis{
	text-align: center;
}

.vis h1 {
	text-align: center;
	font-family: 'Paytone One', sans-serif !important;
	font-size: 30px;
	margin-bottom: 15px;
	color: #dfded5;
	font-weight: normal;
}

.vis p {
	text-align: justify;
	font-family: 'Poppins', sans-serif;
	margin-bottom: 30px;
	color: #dfded5;
	font-weight: normal;
}

.vis img {
	width: 200px;
  	animation: zoomInfinito 3s ease-in-out infinite;
}

@keyframes zoomInfinito {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05); /* Aumenta un 5% */
  }
  100% {
    transform: scale(1);
  }
}

.values {
	padding: 30px;
}

.valu {
	background-color: rgba(255, 255, 255, 0.5);
	padding: 60px 30px;
	width: 100%;
	display: flex;
	flex-direction: row-reverse;
	justify-content: center;
	gap: 50px;
	place-items: center;
	
	border-radius: 20px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.v-ti {
	width: 20%;
	text-align: center;
}

.v-ti h1 {
	font-family: 'Paytone One', sans-serif !important;
	font-size: 30px;
  	display: inline-block;
  	animation: moverLado 5s linear infinite;
}

@keyframes moverLado {
  	0% {
    	transform: translateX(0px);
  	}
  	50% {
    	transform: translateX(20px);
  	}
  	100% {
    	transform: translateX(0px);
  	}
}


.val {
	width: 80%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.value-1 {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 50px;
	width: 100%;
	margin-bottom: 30px;
}

.value-2 {
	display: flex;
	flex-direction: row;

	align-items: center;
	justify-content: center;
	gap: 50px;
	width: 100%;
}

.v-exc {
	width: 33.3%;
	text-align: center;
}

.v-int {
	width: 33.3%;
	text-align: center;
}

.v-com {
	width: 33.3%;
	text-align: center;
}

.v-pas {
	width: 33.3%;
	text-align: center;
}

.v-emp {
	width: 33.3%;
	text-align: center;
}

.v-exc h3 p {
	text-align: center;
}

.v-int h3 p {
	text-align: center;
}

.v-com h3 p {
	text-align: center;
}

.v-pas h3 p {
	text-align: center;
}

.v-emp h3 p {
	text-align: center;
}

.v-exc img {
	width: 60px;
}

.v-int img {
	width: 60px;
}

.v-com img {
	width: 60px;
}

.v-pas img {
	width: 60px;
}

.v-emp img {
	width: 60px;
	align-items: center;
	justify-content: center;
}

/* Footer Styling */
footer {
    text-align: center; /* Centra todo el contenido */
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1); /* Color de fondo (ajustable) */
    font-family: 'Poppins', sans-serif; /* Fuente general */
}

/* Logo */
.foot {
    width: 150px; /* Ajusta el tamaño del logo */
    margin-bottom: 15px; /* Espaciado inferior */
}

/* Social Media Icons */
.footer-icons {
    display: flex; /* Coloca los íconos en línea */
    justify-content: center; /* Centra los íconos horizontalmente */
    gap: 15px; /* Espacio entre los íconos */
    margin-bottom: 15px; /* Espaciado inferior */
}

.footer-icons a {
    display: flex; /* Para centrar el contenido dentro del círculo */
    justify-content: center; /* Centrar horizontalmente */
    align-items: center; /* Centrar verticalmente */
    width: 40px; /* Tamaño del círculo */
    height: 40px; /* Tamaño del círculo */
    background-color: #8EBC7D; /* Fondo verde */
    color: white; /* Color del ícono blanco */
    border-radius: 50%; /* Hace el fondo circular */
    text-decoration: none; /* Elimina el subrayado */
    font-size: 20px; /* Tamaño del ícono */
    transition: background-color 0.3s ease; /* Transición suave para hover */
}

.footer-icons a:hover {
    background-color: #fff;
	color: #8EBC7D;
}

/* Copyright Text */
.footer-copyright {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px; /* Espaciado inferior */
}

/* Privacy and Terms Links */
.footer-links {
    font-size: 14px;
    color: #fff;
}

.footer-links a {
    text-decoration: none;
    color: #E1E1E1; /* Color del enlace */
    margin: 0 5px; /* Espacio entre enlaces */
}

.footer-links a:hover {
    text-decoration: underline;
}


/* General Modal Styling */
.modal {
  display: none; /* Oculto por defecto */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Fondo semitransparente */
  overflow: hidden; /* Evitar overflow del contenido general */
  align-items: center; /* Centrar el modal verticalmente */
  justify-content: center; /* Centrar el modal horizontalmente */
  text-align: justify;
  font-family: 'Poppins', sans-serif;
}

.modal h2 {
	text-align: center;
	font-family: 'Paytone One', sans-serif !important;
}

/* Modal Content */
.modal-content {
  background-color: white;
  width: 80%;
  max-width: 600px; /* Ancho máximo */
  height: 80%; /* Alto fijo */
  overflow-y: auto; /* Activar scroll solo en el contenido */
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
}

@media screen and (max-width: 991px) {
	
	header {
		position: absolute;
	}

	.lab {
		display: initial;
	}

	.navbar {
        position: absolute;
        top: 100%;
        left: 10px;
        right: 10px;
        margin-top: 10px;
        backdrop-filter: blur(70px);
        -webkit-backdrop-filter: blur(70px); /* Compatibilidad con Safari */
        background-color: rgba(255, 255, 255, 0.3); /* Fallback si no soporta blur */
        display: none;
        border-radius: 5px;
        min-height: 490px;
        flex-direction: column;
        z-index: 1001;
    }

	.navbar li {
		width: 100%;
		padding: 35px 0;
		text-align: center;
	}

	.navbar a {
		color: #FFFFFF;
	}

	.navbar a:hover {
		color: #000000;
	}

	#menu:checked ~ .navbar {
		display: initial;
		z-index: 3;
	}

	.abus {
		margin-top: 85px;
		flex-direction: column;
	}

	.abus-text {
		width: 100%;
	}

	.abus-img {
		width: 100%;
	}

	.abus-img img {
		width: 200px;
	}

	.mission {
		flex-direction: column;
	}

	.mis {
		width: 100%;
		margin-bottom: 50px;
	}

	.mis img {
		width: 150px;
	}

	.vis {
		width: 100%;
	}

	.vis img {
		width: 150px;
	}

	.valu {
		width: 100%;
		display: flex;
		flex-direction: column;
		justify-content: center;
		gap: 50px;
		place-items: center;
	}

	.v-ti {
		width: 100%;
		text-align: center;
		margin-bottom: 30px;
	}

	.val {
		width: 100%;
	}

	.value-1 {
		display: flex;
		flex-direction: column;
		gap: 40px;
		margin-bottom: 40px;
	}

	.value-2 {
		display: flex;
		flex-direction: column;
		gap: 40px;
	}

	.v-exc {
		width: 100%;
		text-align: center;
	}

	.v-int {
		width: 100%;
		text-align: center;
	}

	.v-com {
		width: 100%;
		text-align: center;
	}

	.v-pas {
		width: 100%;
		text-align: center;
	}

	.v-emp {
		width: 100%;
		text-align: center;
	}

}