@charset "utf-8";
/* CSS Document */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body{
	width: 100%;
	max-width: 1920px;
	display: flex;
	align-items: center;
	font-family: 'Inter', sans-serif;
	flex-direction: column;
	background-color: #fff;
	font-family: "Figtree", sans-serif;
  font-optical-sizing: auto;

}

.wapp {
	position: fixed;
	width: 50px;
	height: 50px;
	bottom: 15px;
	right: 15px;
	z-index: 10;
}

.wapp::before {
	position: absolute;
	top: 10px;
	color: #FFF;
	font-size: 12px;
	text-align: center;
	content: "¡Escríbenos!";
	padding: 5px 20px 5px 10px;
	border-radius: 5px;
	background-color: #32BA46;
	transition: opacity 0.5s ease, transform 0.5s ease;
	opacity: 0;
	transform: translateX(-40px);
}

.wapp:hover::before {
	opacity: 1;
	transform: translateX(-80px);
}

.wapp a {
	width: 50px;
	height: 50px;
}

.wapp a img {
	width: 50px;
	height: 50px;
	filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.25));
}

.chatbot {
	position: fixed;
	width: 100px;
	height: 50px;
	bottom: 15px;
	right: 15px;
	z-index: 10;
}

.burgermenu {
	position: fixed;
	width: 50px;
	height: 50px;
	top: 15px;
	right: 15px;
	z-index: 20;
	display: none;
}

.burgermenu  img {
	width: 40px;
	height: 40px;
}

h1 {
	font-weight: 800;
	font-size: 48px;
	line-height: 55px;
}

h2 {
	font-weight: 800;
	font-size: 42px;
	line-height: 50px;
}

a:hover {
	transform: scale(1.05);
	transition: 0.3s;
	transform-origin: center center;
}


/* VENTANA POP */

button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
}

/* Estilos del Overlay */
.overlay {
    display: flex; /* Oculto por defecto */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Fondo semi-transparente */
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Asegura que esté por encima de otros elementos */
}

/* Estilos del Pop-up */
.popup {
    background-color: white;
    padding: 5px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    text-align: center;
    width: 50%;
}

.imagen-popup {
    width: 100%;
    height: auto;
    display: block; /* Para eliminar el espacio extra debajo de la imagen */
    margin-bottom: 0px; /* Espacio entre la imagen y el botón (si hubiera) */
}

/* Botón de cerrar */
.cerrar {
    position: absolute;
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #FFF;
    border: 1px solid white;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
}

.cerrar:hover {
    color: #000;
}


/* TERMINA VENTANA POP */


header {
	width: 100%;
	max-width: 1920px;
	position: fixed;
	top: 0;
	display: flex;
	justify-content: space-around;
	align-items: center;
	padding: 10px 0px;
	z-index: 10;
}

header.menutrans {
	background: rgb(2,70,103);
	background: linear-gradient(180deg, rgba(2,70,103,1) 0%, rgba(2,70,103,.7) 100%);
	padding: 0px 0px;
}

.logomin {
	transform: scale(0.75);
	transition: ease-in-out 0.3s;
}

header a img {
	width: 70px;
	height: auto;
}

nav{
	width: 85%;
	text-align: right;
}

nav a {
	display: inline;
	text-decoration: none;
	color: #7F7F7F;
	font-size: 13px;
	font-weight: 300;
	margin-left: 25px;
	filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.25));
}

nav a:hover {
	color: #D85555;
	transform: scale(1.05);
	transition: 0.3s;
}

#login {
	text-align: center;
	font-weight: 500;
}

#login img {
	height: 14px;
	width: auto;
	margin-right: 5px;
	margin-top: -25px';
}

#register {
	padding: 10px 30px;
	background-color: #AB802D;
	color: white;
	border-radius: 10px;
}

#register:hover {
	background: #D85555;
	transform: scale(1.05);
	transition: 0.3s;
}


main {
	width: 100%;
	max-width: 1920px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

main section {
	width: 100%;
}

main .slide {
	height: 700px;
	background-image: url('img/backslide.svg'), linear-gradient(to bottom, #022536, #024667);
	background-color: steelblue;
	background-position: center center;
	background-size: cover;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

main .slide h1 {
	color: white;
	text-align: center;
	margin-bottom: 35px;
	padding: 0px 20%;
}

main .slide h2 {
	font-weight: 400;
	color: white;
	font-size: 28px;
	text-align: center;
	line-height: 35px;
	margin-bottom: 35px;
	background-color: #AC812D;
	padding: 15px 40px;
	border-radius: 20px;
}

main .slide h2 b {
	font-weight: 800;
	font-size: 40px;
	line-height: 48px;
}

main .slide h3 {
	font-weight: 400;
	color: white;
	font-size: 32px;
	text-align: center;
	line-height: 38px;
	margin-bottom: 35px;
}

main .slide h3 small b {
	font-weight: 800;
}

main .slide .botones {
	display: flex;
	justify-content: space-around;
}

main .slide a {
	font-weight: 400;
	color: white;
	font-size: 20px;
	text-align: center;
	background-color: #D85555;
	padding: 10px 40px;
	border-radius: 10px;
	text-decoration: none;
	margin: 10px 20px;
	transition: ease-in-out 0.3s;
}

main .ambassadors {
	width: 100%;
	display: flex;
	padding: 50px 0px 0px 0px;
	margin: 0px;
	justify-content: space-between;
	align-items: center;
}

main .ambassadors .ambassador {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	width: 55%;
}

main .ambassadors .ambassador .video {
	width: 40%;
	background-color: #024464;
	padding: 0px 0px 0px 25px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

main .ambassadors .ambassador .video video{
	border-left: 8px solid white;
}

main .ambassadors .ambassador .infoemb {
	width: 60%;
	max-width: 500px;
	padding: 0px 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}

main .ambassadors .ambassador .infoemb h3 {
	font-size: 28px;
	color: #5E5E5E;
	text-align: left;
	margin-bottom: 10px;
	margin-top: 0px;
}

main .ambassadors .ambassador .infoemb h2 {
	color: #AC812D;
	text-align: left;
	margin-bottom: 10px;
	margin-top: 0px;
}

main .ambassadors .ambassador .infoemb p {
	font-size: 16px;
	color: #5E5E5E;
	text-align: left;
	margin: 0px;
	padding: 0px;
}

main .ambassadors .ambassador .infoemb img {
	width: 50px;
	height: auto;
	margin-top: 25px;
	margin-left: 25px;
}

main .ambassadors .ambassador .infoemb a {
	font-weight: 400;
	color: white;
	font-size: 20px;
	background-color: #D85555;
	padding: 10px 40px;
	border-radius: 10px;
	text-decoration: none;
	margin: 10px 0px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: ease-in-out 0.3s;
}

main .ambassadors .ambassador .infoemb a img {
	width: 30px;
	height: auto;
	margin-top: 0px;
	margin-left: 0px;
	margin-right: 10px;
}


main .ambassadors .ambassador2 {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	width: 45%;
	background-color: black;
	border-top-left-radius: 20px;
	border-bottom-left-radius: 20px;
}

main .ambassadors .ambassador2 .a2left {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: 50%;
	padding: 40px;
}

main .ambassadors .ambassador2 .a2left h4 {
	font-size: 20px;
	color: lightgray;
	text-align: left;
	margin-bottom: 10px;
	margin-top: 0px;
}

main .ambassadors .ambassador2 .a2left h2 {
	font-size: 50px;
	color: #AC812D;
	text-align: left;
	margin-bottom: 10px;
	margin-top: 0px;
}

main .ambassadors .ambassador2 .a2left a {
	font-weight: 400;
	color: white;
	font-size: 20px;
	background-color: #D85555;
	padding: 10px 20px;
	border-radius: 10px;
	text-decoration: none;
	margin: 10px 0px 30px 0px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: ease-in-out 0.3s;
}

main .ambassadors .ambassador2 .a2left a img {
	width: 30px;
	height: auto;
	margin-top: 0px;
	margin-left: 0px;
	margin-right: 10px;
}

main .ambassadors .ambassador2 .a2right {
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
	width: 50%;
}

main .ambassadors .ambassador2 .a2right img {
	width: 100%;
	max-width: 450px;
	height: auto;
}



main .whatis {
	padding: 100px 0px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-image: url('img/back_whatis.svg');
	background-position: top left;
	background-repeat: no-repeat;
	background-size: contain;
}

main .whatis .contenido1 {
	padding: 0px 20px;
	border-left: 5px solid #AC812D;
	width: 50%;
	margin-bottom: 35px;
}

main .whatis .contenido1 h2 {
	color: #022536;
	text-align: left;
	margin-bottom: 20px;
	margin-top: 0px;
}

main .whatis .contenido1 p {
	font-size: 18px;
	color: #5E5E5E;
	text-align: left;
	margin: 0px;
	padding: 0px;
}

main .whatis .contenido2 {
	padding: 0px 20px;
	width: 50%;
	display: flex;
	justify-content: space-around;
	align-items: center;	
}

main .whatis .contenido2 .empresa {
	width: 30%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

main .whatis .contenido2 .empresa img {
	width: 100%;
	height: auto;
	margin-bottom: 25px;
}

main .whatis .contenido2 .empresa a {
	font-weight: 400;
	color: white;
	font-size: 20px;
	text-align: center;
	padding: 10px 40px;
	border-radius: 10px;
	text-decoration: none;	
}

.bold {
	background-color: #AC812D;
}

.tamayo {
	background-color: #3A63A9;
}

main .steps {
	padding: 75px 100px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	background-image: url('img/back_steps');
	background-size: cover;
	background-color: #F0F5F6;
}

main .steps .izq {
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	margin-bottom: 75px;
}

.number {
	font-weight: 800;
	font-size: 48px;
	line-height: 35px;
	background-color: #AB802D;
	padding: 20px;
	border-radius: 50%;
	align-self: flex-start;
	color: white;
}

main .steps .izq .info {
	width: 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-left: 35px;
}

main .steps .izq .info h2 {
	color: #022536;
	text-align: left;
	margin-bottom: 20px;
	margin-top: 0px;
}

main .steps .izq .info p {
	font-size: 18px;
	color: #5E5E5E;
	text-align: left;
	margin: 0px;
	padding: 0px;
}

main .steps .izq img {
	height: 250px;
	width: auto;
	margin-left: 50px;
}

main .steps .izq .info ol {
	font-size: 25px;
	color: #5E5E5E;
}

main .steps .izq .info ol li{
	margin-bottom: 15px;
}

main .steps .der {
	width: 60%;
	align-self: flex-end;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-bottom: 75px;
}

main .steps .der .info {
	width: 90%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-left: 35px;
}

main .steps .der .info h2 {
	color: #022536;
	text-align: left;
	margin-bottom: 20px;
	margin-top: 0px;
}

main .steps .der .info p {
	font-size: 18px;
	color: #5E5E5E;
	text-align: left;
	margin: 0px;
	padding: 0px;
}

main .steps .der .info table {
	font-size: 18px;
	color: #5E5E5E;
	text-align: left;
	margin: 0px;
	padding: 0px;
	margin-top: 20px;
}

main .steps .der .info .plataforma {
	width: 80%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

main .steps .der .info .plataforma img {
	width: 100%;
	height: auto;
	margin-bottom: 35px;
}

main .steps .der .info .plataforma a{
	font-weight: 400;
	color: white;
	font-size: 20px;
	text-align: center;
	padding: 10px 40px;
	border-radius: 10px;
	text-decoration: none;	
	background-color: #E50027;
}

main .steps .der .info table td {
	padding: 5px;
}

main .steps .der .info table td b {
	color: #AC812D;
}

main .steps .der .info table td img {
	width: 25px;
	height: auto;
}

footer {
	width: 100%;
	max-width: 1920px;
	display: flex;
	flex-direction: column;
}

footer .footerup {
	width: 100%;
	background-color: #024667 ;
	display: flex;
	align-items: flex-end;
	justify-content: space-around;
	padding: 30px;
}

footer .footerup .f1 {
	width: 30%;
	max-width: 600px;
	height: auto;
	font-size: 14px;
	color: white;
	display: flex;
	flex-direction: column;
	align-items: center;
}

footer .footerup .f1 > img {
	width: 80px;
	height: auto;
	margin-bottom: 35px;
}

footer .footerup .f1 div {
	display: flex;
	align-items: baseline;
}

footer .footerup .f1 div a {
	font-size: 18px;
	text-decoration: none;
	font-weight: 400;
	color: white;
	margin-left: 5px;
}

footer .footerup hr {
	border: 1px solid #fff;
	transform: rotate(90deg) translateX(-75px);
	width: 200px;
	margin: 20px;
}

footer .footerup .f1 .redes {
	width: 100%;
	padding: 15px 0px;
	display: flex;
	justify-content: center;
}

footer .footerup .f1 .redes a img {
	height: 35px;
	width: auto;
	margin-right: 20px;
}

footer .footerup .f1 p {
	font-size: 16px;
	margin-bottom: 15px;
	text-align: center;
}

footer .footerup .f1 a {
	font-size: 16px;
	color: #BDBDBD;
	text-decoration: none;
	display: flex;
	align-items: center;
}

footer .footerup .f2 {
	width: 30%;
	max-width: 600px;
	height: auto;
	font-size: 14px;
	color: white;
	display: flex;
	flex-direction: column;
	align-items: center;
}

footer .footerup .f2 > img {
	width: 80px;
	height: auto;
	margin-bottom: 35px;
}

footer .footerup .f2 p {
	margin-bottom: 25px;
}

footer .footerup .f2 form {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

footer .footerup .f2 form input[type=text], footer .footerup .f2 form input[type=email], footer .footerup .f2 form input[type=tel]  {
	width: 90%;
	height: 30px;
	border-radius: 10px;
	background: #024667;
	border: 1px solid #fff;
	margin-bottom: 15px;
	padding: 5px 10px;
	color: #fff;
	position: relative;
	font-family: 'Inter', sans-serif;
	
}

footer .footerup .f2 form input[type=text]:focus, footer .footerup .f2 form input[type=email]:focus, footer .footerup .f2 form input[type=tel]:focus {
  	font-size: 13px;
	font-weight: 300;
  	font-family: 'Inter', sans-serif;
}

footer .footerup .f2 form input[type=text]::placeholder, footer .footerup .f2 form input[type=email]::placeholder, footer .footerup .f2 form input[type=tel]::placeholder {
  	font-size: 13px;
	font-weight: 300;
  	color: #EDEDED;
  	font-family: 'Inter', sans-serif;
}

footer .footerup .f2 form input[type=submit] {
	width: 60%;
	min-width: 100px;
	border-radius: 10px;
	background: #967338;
	border: 1px solid #fff;
	margin-bottom: 25px;
	padding: 10px;
	color: #fff;
	position: relative;
	font-size: 12px;
	font-weight: 300;
	font-family: 'Inter', sans-serif;
	cursor: pointer;
}

footer .footerup .f2 form input[type=submit]:hover {
	background: #876731;
	scale: 105%;
	transition: 0.3s;
}

footer .footerup .f3 {
	width: 30%;
	max-width: 600px;
	height: auto;
	font-size: 16px;
	color: #BDBDBD;
	display: flex;
	flex-direction: column;
	align-items: center;
}

footer .footerup .f3 p {
	font-size: 16px;
	margin-bottom: 15px;
	text-align: center;
}

footer .footerup .f3 a {
	font-size: 16px;
	color: #BDBDBD;
	text-decoration: none;
	display: flex;
	align-items: center;
}

footer .footerup .f3 a img {
	width: 25px;
	height: auto;
	margin-bottom: 0px;
}

footer .footerdown {
	width: 100%;
	padding: 15px;
	background-color: #022536;
	color: white;
	font-size: 14px;
	text-align: center;
}

footer .footerdown a {
	color: white;
	text-decoration: none;
}

footer .footerdown a:hover {
	text-decoration: underline;
}

/* INICIAN ESTILOS DESARROLLADORES */

main .introdes {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 120px 30px 60px;
}

main .introdes h1 {
	color: #022536;
	text-align: center;
	margin-bottom: 25px;
}

main .introdes p {
	color: #022536;
	text-align: center;
	width: 50%;
}

main .desarrollos {
	width: 100%;
	display: flex;
	flex-direction: column;
}

main .desarrollos .izq {
	width: 100%;
	display: flex;
	justify-content: center;
}

main .desarrollos .izq .imagen {
	width: 50%;
	height: auto;
	background-position: center center;
	background-size: cover;
	max-width: 600px;
}

main .desarrollos .izq .info {
	width: 50%;
	display: flex;
	flex-direction: column;
	padding: 60px 45px;
	max-width: 600px;
	justify-content: flex-start;
}

main .desarrollos .izq .info h2 {
	color: white;
	line-height: 50px;
	margin-bottom: 25px;
}

main .desarrollos .izq .info h3 {
	color: white;
	font-size: 25px;
	line-height: 30px;
	margin-bottom: 25px;
}

main .desarrollos .izq .info h3 img {
	height: 25px;
	width: auto;
	margin-right: 5px;
}

main .desarrollos .izq .info p {
	font-size: 18px;
	color: white;
	margin-bottom: 25px;
	font-weight: 300;
}

main .desarrollos .izq .info a {
	font-size: 20px;
	color: white;
	font-weight: 400;
	text-align: center;
	padding: 10px 40px;
	border-radius: 10px;
	text-decoration: none;	
	background-color: #D85555;
	width: 250px;
}

main .desarrollos .der {
	width: 100%;
	display: flex;
	justify-content: center;
}

main .desarrollos .der .info {
	width: 50%;
	display: flex;
	flex-direction: column;
	padding: 60px 45px;
	max-width: 600px;
	justify-content: flex-start;
}

main .desarrollos .der .info h2 {
	color: #022536;
	line-height: 50px;
	margin-bottom: 25px;
}

main .desarrollos .der .info h3 {
	color: #022536;
	font-size: 25px;
	line-height: 30px;
	margin-bottom: 25px;
}

main .desarrollos .der .info h3 img {
	height: 25px;
	width: auto;
	margin-right: 5px;
}

main .desarrollos .der .info p {
	font-size: 18px;
	color: #022536;
	margin-bottom: 25px;
	font-weight: 300;
}

main .desarrollos .der .info a {
	font-size: 20px;
	color: white;
	font-weight: 400;
	text-align: center;
	padding: 10px 40px;
	border-radius: 10px;
	text-decoration: none;	
	background-color: #D85555;
	width: 250px;
}

main .desarrollos .der .imagen {
	width: 50%;
	height: auto;
	background-position: center center;
	background-size: cover;
	max-width: 600px;
}

.backtowers {
	background-color: #022536;
}

.backescondida {
	background-color: #D0D0D0;
}

.backarcana{
	background-color: #001B28;
}

.backvines{
	background-color: #D2C1A7;
}

.imgtowers {
	background-image: url("img/backtowers.webp");
}

.imgescondida {
	background-image: url("img/backescondida.webp");
}

.imgarcana {
	background-image: url("img/backarcana.webp");
}

.imgvines {
	background-image: url("img/backthevines.webp");
}

.imgtower2 {
	background-image: url("img/backtowers2.webp");
}

.imgescondida2 {
	background-image: url("img/backescondida2.webp");
}

.imgarcana2 {
	background-image: url("img/backarcana2.webp");
}

.imgvines2 {
	background-image: url("img/backvines2.webp");
}

/* INICIAN ESTILOS - DETALLE DESARROLLO */

main .desarrollo {
	width: 100%;
	display: flex;
	flex-direction: column;
	margin-top: 90px;
}

main .desarrollo .inicio {
	width: 100%;
	display: flex;
	justify-content: center;
}

main .desarrollo .inicio .imagen {
	width: 50%;
	height: auto;
	background-position: center center;
	background-size: cover;
	max-width: 700px;
}

main .desarrollo .inicio .info {
	width: 50%;
	display: flex;
	flex-direction: column;
	padding: 100px 45px 60px 45px;
	max-width: 700px;
	justify-content: flex-start;
}

main .desarrollo .inicio .info h1 {
	color: white;
	line-height: 50px;
	margin-bottom: 30px;
}

main .desarrollo .inicio .info h3 {
	color: white;
	font-size: 25px;
	line-height: 30px;
	margin-bottom: 30px;
}

main .desarrollo .inicio .info h3 img {
	height: 25px;
	width: auto;
	margin-right: 5px;
}

main .desarrollo .inicio .info p {
	font-size: 18px;
	color: white;
	margin-bottom: 30px;
	font-weight: 300;
}

main .desarrollo .inicio .info a {
	font-size: 20px;
	color: white;
	font-weight: 400;
	text-align: center;
	padding: 10px 40px;
	border-radius: 10px;
	text-decoration: none;	
	background-color: #D85555;
	width: 300px;
}

main .desarrollo .features {
	width: 100%;
	display: flex;
	justify-content: center;
}

main .desarrollo .features .info {
	width: 50%;
	display: flex;
	flex-direction: column;
	padding: 60px 45px;
	max-width: 700px;
	justify-content: flex-start;
}

main .desarrollo .features .info h2 {
	font-size: 35px;
	font-weight: 800;
	color: #022536;
	margin-bottom: 25px;
	line-height: 35px;
	padding-left: 30px;
	border-left: 10px solid #AB802D;
}

main .desarrollo .features .info ol {
	color: #5E5E5E;
	font-size: 18px;
	margin-left: 60px;
}

main .desarrollo .features .info ol li {
	line-height: 25px;
}

main .desarrollo .features .imagen {
	width: 50%;
	height: auto;
	background-position: center center;
	background-size: cover;
	max-width: 700px;
}

main .amenities {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 60px 30px;
	background-color: #024667;
	background-image: url("img/back_light_aqua.webp");
	background-size: cover;
}

main .amenities h2 {
	font-size: 35px;
	font-weight: 800;
	color: white;
	margin-bottom: 25px;
	line-height: 35px;
	padding-left: 30px;
	border-left: 10px solid #AB802D;
	margin-left: 5%;
	align-self: flex-start;
}

main .amenities .everyone {
	width: 90%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: space-between;
	margin-bottom: 30px;
}

main .amenities .everyone .amenity {
	padding: 30px 50px;
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 20px;
	color: #BABABA;
}

main .amenities .everyone .amenity img {
  width: 150px; /* Ajusta el ancho según necesites */
  height: 150px; /* El alto debe ser igual al ancho para un círculo perfecto */
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 3px solid #99B2B4;
}

main .amenities a {
	font-weight: 400;
	color: white;
	font-size: 20px;
	text-align: center;
	padding: 10px 40px;
	border-radius: 10px;
	text-decoration: none;	
	background-color: #AC812D;
}

main .amenities a img{
	height: 20px;
	width: auto;
	margin-right: 10px;
	margin-bottom: -5px;
}

main .reasons {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 70px 35px;
}

main .reasons .contreasons {
	width: 80%;
	padding: 0px 25px;
	border-left: 5px solid #AB802D;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin: 0px 0px 40px 0px;
}

main .reasons .contreasons h1 {
	color: #022536;
	margin-bottom: 25px;
}

main .reasons .contreasons h1 b{
	color: #D85555;
	font-weight: 900;
}

main .reasons .contreasons .columns {
	display: flex;
	justify-content: space-between;
}

main .reasons .contreasons .columns .column {
	width: 45%;
	margin-left: 25px;
}

main .reasons .contreasons .columns .column ol li{
	margin-bottom: 10px;
	line-height: 20px;
}

main .reasons a {
	font-size: 20px;
	color: white;
	font-weight: 400;
	text-align: center;
	padding: 10px 40px;
	border-radius: 10px;
	text-decoration: none;	
	background-color: #D85555;
	width: 300px;
}

main .location {
	width: 60%;
	border-radius: 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0;
	margin: 0px 0px 80px 0px;
}

main .location img {
	width: 50%;
	height: auto;
	object-fit: cover;
	border-radius: 30px;
}

main .location .infoloc {
	width: 40%;
	padding: 20px;
	display: flex;
	flex-direction: column;
	color: white;
}

main .location .infoloc h3 {
	font-size: 25px;
	font-weight: 700;
	line-height: 30px;
	margin-bottom: 20px;
}

main .location .infoloc p {
	font-size: 16px;
	font-weight: 300;
	line-height: 20px;
	margin-bottom: 20px;
}

main .location .infoloc a {
	font-size: 16px;
	color: #BDBDBD;
	text-decoration: none;
	display: flex;
	align-items: center;
}

main .location .infoloc a img {
	height: 16px;
	width: auto;
	margin-right: 5px;
}


/* PRIVACY */

main .privacy {
	width: 100%;
	max-width: 1280px;
	margin-top: 100px;
	padding: 35px;
}

main .privacy h1 {
	color: #333;
	font-size: 40px;
	margin-bottom: 35px;
}

main .privacy h2 {
	color: #333;
	font-size: 25px;
	margin-bottom: 10px;
}

main .privacy p {
	color: #333;
	font-size: 16px;
	margin-bottom: 20px;
}

main .privacy ul {
	color: #333;
	font-size: 16px;
	margin-bottom: 20px;
}

main .privacy a {
	text-decoration: none;
}



/* --- INICIAN MEDIA QUERIES --- */



@media screen and (max-width: 1440px) {

	main .introdes p {
	width: 75%;
}

}


@media screen and (max-width: 1200px) {

main .ambassadors {
	width: 100%;
	display: flex;
	padding: 50px 0px 0px 0px;
	margin: 0px;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
}

main .ambassadors .ambassador {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	align-self: flex-start;
	width: 100%;
}

main .ambassadors .ambassador .video {
	width: 40%;
}

main .ambassadors .ambassador .infoemb {
	width: 60%;
}


main .ambassadors .ambassador2 {
	align-self: flex-end;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	width: 70%;
	background-color: black;
	border-top-left-radius: 20px;
	border-bottom-left-radius: 20px;
	margin-top: 50px;
}

main .ambassadors .ambassador2 .a2left {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: 50%;
	padding: 40px;
}

main .ambassadors .ambassador2 .a2right {
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
	width: 50%;
}

main .ambassadors .ambassador2 .a2right img {
	width: 100%;
	max-width: 450px;
	height: auto;
}

}



@media screen and (max-width: 900px) {

.burgermenu {
	display: inline;
}

/* Estilos del Pop-up */
.popup {
    width: 80%;
}

h1 {
	font-size: 40px;
	line-height: 45px;
}

h2 {
	font-size: 35px;
	line-height: 40px;
}

header {
	justify-content: space-between;
	padding: 15px 25px;
	display: flex;
	align-items: flex-start;
}

header a img {
	width: 45px;
	height: auto;
}

nav {
	position: absolute;
	width: 200px;
	background: rgb(0,66,92);
	padding: 50px 20px 20px 20px;
	text-align: center;
	right: -200px;
	top: -15px;
	transition: transform 0.3s;
	transition-timing-function: ease-in;
}

.show {
	transition: transform 0.3s;
	transition-timing-function: ease-in;
	transform: translateX(-200px);
}

nav a {
	display: block;
	padding: 20px 0px;
	margin: 10px 0px;
	filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.0));
	border-bottom: 0px dotted #fff;
}

nav a:hover {
	color: #A8EEFC;
}

main .steps {
	padding: 75px 50px;
}

main .slide {
	height: 800px;
	padding: 30px;
}

main .slide h3 {
	font-size: 25px;
	line-height: 30px;
	margin-bottom: 30px;
}

main .slide .botones {
	display: flex;
	justify-content: space-around;
}

main .slide a {
	font-size: 18px;
	margin: 10px 10px;
}

main .ambassadors .ambassador2 {
	width: 85%;
}

main .whatis {
	background-size: 20% auto;
	background-position: center left;
	align-items: flex-end;
}

main .whatis .contenido1 {
	width: 80%;
	padding: 0px 30px;
}

main .whatis .contenido2 {
	padding: 0px 30px;
	width: 80%;
}

main .whatis .contenido2 .empresa {
	width: 35%;
}

main .whatis .contenido2 .empresa a {
	font-size: 15px;
	padding: 10px 30px;	
}

main .steps .izq {
	flex-direction: column;
	align-items: center;
}

.number {
	line-height: 25px;
	margin-bottom: 25px;
	align-self: center;
}

main .steps .izq .info {
	width: 80%;
	margin-bottom: 35px;
	margin-left: 0px;
}

main .steps .izq img {
	margin-left: 0px;
}

main .steps .der {
	width: 100%;
	flex-direction: column;
	align-items: center;
}

main .steps .der .info {
	width: 90%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-left: 0px;
}

main .steps .der .info .plataforma {
	width: 100%;
}

footer .footerup {
	flex-direction: column;
	align-items: flex-end;
	justify-content: space-around;
}

footer .footerup .f1 {
	width: 100%;
	align-items: flex-start;
	margin-bottom: 25px;
}

footer .footerup hr {
	display: none;
}

footer .footerup .f2 {
	width: 100%;
	margin-bottom: 25px;
}

footer .footerup .f2  .redes {
	width: 100%;
	padding: 15px 0px;
	display: flex;
}

footer .footerup .f2 .redes a img {
	height: 35px;
	width: auto;
	margin-right: 10px;
}

footer .footerup .f2 p {
	font-size: 16px;
	margin-bottom: 15px;
}

footer .footerup .f2 a {
	font-size: 16px;
	color: #BDBDBD;
	text-decoration: none;
	display: flex;
	align-items: center;
}

footer .footerup .f3 {
	width: 100%;
	max-width: 600px;
	height: auto;
	font-size: 16px;
	color: #BDBDBD;
}

footer .footerup .f3 a {
	margin-right: 35px;
	margin-top: 20px;
}

footer .footerup .f3 a img {
	width: 30%;
	height: auto;
	min-width: 100px;
}

footer .footerdown {
	width: 100%;
	padding: 15px;
	background-color: #022536;
	color: white;
	font-size: 14px;
	text-align: center;
}

footer .footerdown a {
	color: white;
	text-decoration: none;
}

/* INICIA RESPONSIVE - DESARROLLOS */

main .introdes p {
	width: 75%;
}

main .desarrollos .izq {
	flex-direction: column;
	justify-content: center;
}

main .desarrollos .izq .imagen {
	width: 100%;
	height: 400px;
	max-width: 900px;
}

main .desarrollos .izq .info {
	width: 100%;
}

main .desarrollos .der {
	flex-direction: column-reverse;
	justify-content: center;
}

main .desarrollos .der .info {
	width: 100%;
	max-width: 600px;
}

main .desarrollos .der .imagen {
	width: 100%;
	height: 400px;
	max-width: 900px;
}

/* INICIA RESPONSIVE - DETALLE DESARROLLOS */

main .desarrollo .inicio {
	flex-direction: column;
	justify-content: center;
}

main .desarrollo .inicio .imagen {
	width: 100%;
	height: 300px;
	max-width: 900px;
}

main .desarrollo .inicio .info {
	width: 100%;
	padding: 60px 45px 60px 45px;
}

main .desarrollo .features {
	flex-direction: column;
}

main .desarrollo .features .info {
	width: 100%;
}

main .desarrollo .features .imagen {
	width: 100%;
	height: 300px;
	max-width: 900px;
}

main .amenities .everyone {
	width: 100%;
	align-content: space-between;
}

main .amenities .everyone .amenity {
	padding: 15px 25px;
}

main .amenities .everyone .amenity img {
  width: 100px; /* Ajusta el ancho según necesites */
  height: 100px; /* El alto debe ser igual al ancho para un círculo perfecto */
}

main .reasons .contreasons {
	width: 100%;
}

main .reasons .contreasons .columns {
	flex-direction: column;
}

main .reasons .contreasons .columns .column {
	width: 100%;
}

main .location {
	width: 80%;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

main .location img {
	width: 100%;
}

main .location .infoloc {
	width: 100%;
	align-items: center;
	margin-bottom: 15px;
}

main .location .infoloc p {
	text-align: center;
}

}


@media screen and (max-width: 700px) {


main .ambassadors .ambassador {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	align-self: center;
	width: 100%;
}

main .ambassadors .ambassador .video {
	width: 100%;
	max-width: 500px;
	background-color: #024464;
	padding: 0px 0px 0px 25px;
	display: flex;
	justify-content: center;
	align-items: center;
}

main .ambassadors .ambassador .infoemb {
	width: 100%;
	margin-top: 50px;
}


main .ambassadors .ambassador2 {
	align-self: flex-end;
	display: flex;
	flex-direction: column-reverse;
	justify-content: center;
	align-items: center;
	width: 90%;
}

main .ambassadors .ambassador2 .a2left {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	padding: 40px;
}

main .ambassadors .ambassador2 .a2left h4 {
	text-align: center;
}

main .ambassadors .ambassador2 .a2left h2 {
	text-align: center;
}

main .ambassadors .ambassador2 .a2left a {
	margin: 10px 0px 0px 0px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: ease-in-out 0.3s;
}

main .ambassadors .ambassador2 .a2right {
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
	width: 100%;
}

main .ambassadors .ambassador2 .a2right img {
	width: 90%;
	max-width: 450px;
	height: auto;
}


}

@media screen and (max-width: 500px) {

main .slide .botones {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
}

main .whatis .contenido2 {
	display: flex;
	flex-direction: column;
	padding: 0px 30px;
	width: 80%;
}

main .whatis .contenido2 .empresa {
	width: 60%;
	margin-bottom: 40px;
}

}