/* styles.css base para index.html de Unaterra */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;800&display=swap');
@import url('https://fonts.cdnfonts.com/css/betterlett');

:root {
  --primary: #98c46c;
  --dark: #1c1c1c;
  --light: #f9f9f9;
  --white: #ffffff;
  --blue: #1f588f;
}

body {
	font-family: 'Montserrat', sans-serif;
	margin: 0;
	color: var(--dark);
	background: var(--white);
}

h1, h2, h3 {
	margin-bottom: 0.5em;
}

h2 .handwritten, .destacados, .subrayado {
	font-family: 'Betterlett', cursive;
	color: var(--primary);
	font-size: 50px;
	font-weight: 400;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1rem;
}

/* Header */
.header {
	background: white;
	position: sticky;
	top: 0;
	z-index: 1000;
	width: 100%;
	box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
}
.header__container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: nowrap;
	gap: 2rem;
	padding: 1rem 2rem;
}

.logo img {
	max-height: 30px;
	height: auto;
	width: auto;
}

.nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: nowrap;
	gap: 2rem;
	width: 100%;
}

.nav__list {
	display: flex;
	gap: .8rem;
	margin: 0;
	padding: 0;
	list-style: none;
	align-items: center;
}

.nav__list li {
	position: relative;
}

.nav__list a {
	color: #1c1c1c;
	text-decoration: none;
	font-weight: 500;
	padding: 0.5rem 1rem;
	position: relative;
	transition: color 0.3s ease;
}

.nav__list a:hover,
.nav__list a:focus {
	color: #1c1c1c;
}

.nav__list a::after {
	content: '';
	position: absolute;
	left: 1rem;
	bottom: 0;
	width: 0;
	height: 2px;
	background-color: #1c1c1c;
	transition: width 0.3s ease;
}

.nav__list a:hover::after {
	width: calc(100% - 2rem);
}

.esppeq {
	padding: 10px;
}
.espmed {
	padding: 20px;
}
.espgra {
	padding: 30px;
}

.dropdown__menu {
	display: none;
	position: absolute;
	background: var(--white);
	padding: 0.5rem 0;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	top: 100%;
	left: 0;
	min-width: 180px;
	list-style: none;
}
.dropdown:hover .dropdown__menu {
	display: block;
}
.dropdown__menu li {
	padding: 0.5rem 1rem;
}

.dropdown > a i {
	margin-left: 4px;
	font-size: 0.75rem;
	color: #1c1c1c;
}

.nav__icons {
	display: flex;
	gap: 1rem;
	align-items: center;
	white-space: nowrap;
}

.nav__icons a {
	color: #000;
	font-size: 1.1rem;
}

/* Oculta el botón hamburguesa en desktop */
.nav__toggle {
	display: none;
}

/* Estilos para redes en móvil dentro del menú */
.nav__social {
	display: none;
	justify-content: center;
	gap: 1.5rem;
	padding-top: 1rem;
}

/* RESPONSIVE: activar hamburguesa */
@media (max-width: 992px) {
  .nav {
    position: relative;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav__toggle {
    display: block;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--dark);
    cursor: pointer;
    margin-left: auto;
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    z-index: 1001;
  }

  .header__container {
    position: relative;
  }	
	
  .nav__list {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    width: 250px;
    display: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  .nav__list.show {
    display: flex;
  }

  .nav__icons {
    display: none; /* redes sociales y botón desktop ocultos */
  }

  .nav__social {
    display: flex;
    gap: 1rem;
    padding-top: 1rem;
    justify-content: center;
    width: 100%;
  }

  .dropdown__menu {
    display: none;
    position: static;
    box-shadow: none;
    padding-left: 1rem;
  }

  .dropdown:hover .dropdown__menu {
    display: none;
  }

  .dropdown.open .dropdown__menu {
    display: block;
  }
}

/* Hero */
.hero {
	background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../images/foto01.jpg') no-repeat center center/cover;
	padding: 8rem 2rem;
	color: white;
	text-align: center;
}

.hero__content h1 {
	font-size: 2.8rem;
	line-height: 1.2;
	font-weight: 800;
}
.hero__content span {
	display: block;
	font-weight: 400;
}
.hero__content p {
	font-size: 1.1rem;
	margin: 1rem 0;
}

@media (max-width: 992px) {
	.hero {
		padding: 2rem 2rem;
	}
	.hero__content h1 {
		font-size: 2.4rem;
		font-weight: 600;
	}
	.hero__content span {
		display: block;
		font-size: 2.2rem;
		font-weight: 400;
	}
}


/* Secciones */
.section--desarrollos {
	padding: 4rem 0;
	background-color: #f1f1f1;
}
.section--desarrollos h2 {
	font-size: 2rem;
	text-align: center;
}
.section--desarrollos p {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 2rem;
	line-height: 25px;
}

.cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
}
.card {
	background: var(--white);
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 5px rgba(0,0,0,0.05);
	text-align: center;
	padding-bottom: 1rem;
}
.card .imgdesa {
	width: 100%;
	display: block;
}
.card .logodesa {
	width: 150px;
	display: block;
	margin: 1rem auto;
}
.card .logodesa2 {
	width: 100px;
	display: block;
	margin: 1rem auto;
}
.card .logodesa3 {
	width: 180px;
	display: block;
	margin: 1rem auto;
	padding-bottom: 30px;
}

.card h3 {
	margin: 1rem 0 0.5rem;
}
.card ul {
	list-style: disc;
	padding-left: 3rem;
	text-align: left;
}
.card ul li {
	font-size: 0.95rem;
	margin: 0.2rem 0;
}


.section {
	padding: 4rem 0;
}
.section h2 {
	font-size: 2rem;
	text-align: center;
}
.section p {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 2rem;
}


.section--vision {
	padding: 4rem 0;
	background-color: #1b597b;
}
.section--vision h2 {
	font-size: 2rem;
	text-align: left;
	color: white;
}
.section--vision p {
	text-align: left;
	max-width: 700px;
	margin: 0 auto 2rem;
	color: white;
}

.section--infodes {
	padding: 4rem 0;
    background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)), url('../images/fondodesa.jpg') no-repeat center center/cover;
}
.section--infodes h2 {
	font-size: 1.5rem;
	text-align: left;
	color: #8cb864;
}
.section--infodes p {
	text-align: left;
	font-size: 16px;
	max-width: 700px;
	margin: 0 auto 2rem;
	color: white;
	line-height: 24px;
	font-weight: 600;
}


/* Visión */
.vision__content {
	display: flex;
	flex-wrap: wrap;
	gap: 5rem;
	align-items: center;
	justify-content: space-between;
}
.vision__text {
	flex: 1;
}
.vision__img {
	flex: 1;
	text-align: center;
}
.vision__img img {
	max-width: 100%;
	border-radius: 10px;
}

/* Invertir */

.section--invertir {
	padding: 2rem 0;
}
.section--invertir h2 {
	font-size: 2rem;
	text-align: left;
}
.section--invertir p {
	text-align: left;
	max-width: 700px;
	margin: 0 auto 2rem;
	line-height: 25px;
}

.invertir__content {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 2rem;
	justify-content: space-between;
}
.invertir__img, .invertir__text {
	flex: 1;
}
.invertir__img img {
	max-width: 100%;
	border-radius: 10px;
}


.section--info {
	padding: 3rem 0;
	background-color: #fff;
	text-align: center;
}

.section--info .info__grid {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	justify-content: center;
	margin-top: 2rem;
}

.info__item {
	border: 1px solid #75b54c;
	padding: 1.5rem 2rem;
	max-width: 280px;
	flex: 1 1 200px;
	border-radius: 4px;
}

.info__item h3 {
	font-size: 1rem;
	color: #444;
	margin-bottom: 0.5rem;
	font-weight: 600;
}

.info__item p {
	font-size: 1.5rem;
	color: #75b54c;
	font-weight: 700;
	margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
	.info__item {
		max-width: 100%;
	}
}

.info__content {
	display: flex;
	flex-wrap: wrap;
	align-items: left;
	justify-content: space-between;
	gap: 4rem;
}

.info__text {
	flex: 1;
	min-width: 300px;
	text-align: left;
}

.info__text h2 {
	font-size: 25px;
	text-align: left;
	line-height: 35px;
}

.info__text p {
	text-align: left;
	line-height: 22px;
}

.info__img {
	flex: 1;
	text-align: left;
}

.info__img img {
	max-width: 100%;
	border-radius: 20px;
}


.section--info2 {
  padding: 4rem 1rem;
  background-color: #fff;
  color: #4a4a4a;
}

.info__container2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.info__texto2 {
  flex: 1 1 280px;
  text-align: center;
}

.info__texto2 h2 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #1f1f1f;
}

.info__aparta2 {
	font-size: 1.3rem;
	font-weight: bold;
	color: #8cb864;
}

.info__aparta2 span {
	font-weight: bold;
}

.info__cajas2 {
	flex: 2 1 500px;
	display: grid;
	grid-template-columns: repeat(2, 1fr); /* Escritorio: 2 columnas */
	gap: 1rem;
}

@media (max-width: 768px) {
	.info__cajas2 {
		grid-template-columns: 1fr; /* Celular: 1 columna */
		gap: 1rem; /* Espacio entre cajas en móvil */
	}
}

.info__caja2 {
  border: 1px solid #c5d5b5;
  padding: 1.5rem;
  text-align: center;
  background: white;
}

.info__caja2 p {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.info__caja2 h3 {
  font-size: 1.6rem;
  font-weight: bold;
  color: #4a4a4a;
}



/* Hero específico para desarrollo */
.herodesarrollo1 {
	background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../images/desarrollo1-01.jpg') no-repeat center center/cover;
	color: white;
	text-align: center;
	padding: 2rem 2rem;
}
.herodesarrollo1 h1 {
	background-color: rgba(53, 88, 40, 0.6);
	position: relative;
	display: inline-block;
	padding: 1rem 2rem;
	border-radius: 8px;
	font-size: 2rem;
}
.herodesarrollo1 p {
	background-color: rgba(127, 175, 89, 0.6);
	position: relative;
	display: inline-block;
	padding: 0.75rem 1.5rem;
	border-radius: 8px;
	font-size: 1.50rem;
	font-weight: bold;
	margin-top: 5px;
}

/* Responsive ajustes */
@media (max-width: 768px) {
	.herodesarrollo1 h1 {
		font-size: 1.3rem;
	}
}

/* Hero específico para desarrollo */
.herodesarrollo2 {
	background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/desarrollo2-01.jpg') no-repeat center center/cover;
	color: white;
	text-align: center;
	padding: 2rem 2rem;
}
.herodesarrollo2 h1 {
	background-color: rgba(53, 88, 40, 0.6);
	position: relative;
	display: inline-block;
	padding: 1rem 2rem;
	border-radius: 8px;
	font-size: 2rem;
}
.herodesarrollo2 p {
	background-color: rgba(127, 175, 89, 0.6);
	position: relative;
	display: inline-block;
	padding: 0.75rem 1.5rem;
	border-radius: 8px;
	font-size: 1.50rem;
	font-weight: bold;
	margin-top: 5px;
}

/* Responsive ajustes */
@media (max-width: 768px) {
	.herodesarrollo2 h1 {
		font-size: 1.3rem;
	}
}

/* Hero específico para desarrollo */
.herodesarrollo3 {
	background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/desarrollo3-01.jpg') no-repeat center center/cover;
	color: white;
	text-align: center;
	padding: 2rem 2rem;
}
.herodesarrollo3 h1 {
	background-color: rgba(53, 88, 40, 0.6);
	position: relative;
	display: inline-block;
	padding: 1rem 2rem;
	border-radius: 8px;
	font-size: 2rem;
}
.herodesarrollo3 p {
	background-color: rgba(127, 175, 89, 0.6);
	position: relative;
	display: inline-block;
	padding: 0.75rem 1.5rem;
	border-radius: 8px;
	font-size: 1.50rem;
	font-weight: bold;
	margin-top: 5px;
}

/* Responsive ajustes */
@media (max-width: 768px) {
	.herodesarrollo3 h1 {
		font-size: 1.3rem;
	}
}


/* Hero específico para desarrollo */
.herodesarrollo4 {
	background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('../images/desarrollo4-01.jpg') no-repeat center center/cover;
	color: white;
	text-align: center;
	padding: 2rem 2rem;
}
.herodesarrollo4 h1 {
	background-color: rgba(3, 109, 143, 0.6);
	position: relative;
	display: inline-block;
	padding: 1rem 2rem;
	border-radius: 8px;
	font-size: 2rem;
}
.herodesarrollo4 p {
	background-color: rgba(138, 204, 229, 0.6);
	position: relative;
	display: inline-block;
	padding: 0.75rem 1.5rem;
	border-radius: 8px;
	font-size: 1.50rem;
	font-weight: bold;
	margin-top: 5px;
}

/* Responsive ajustes */
@media (max-width: 768px) {
	.herodesarrollo4 h1 {
		font-size: 1.3rem;
	}
}

/* Cajas de características */
.features {
	background: var(--light);
	padding: 3rem 1rem;
	text-align: center;
}
.features__text {
	max-width: 800px;
	margin: 0 auto 2rem;
	font-size: 1.1rem;
}
.feature-boxes {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 2rem;
}
.feature-box {
	background: white;
	padding: 2rem;
	border-radius: 10px;
	box-shadow: 0 1px 5px rgba(0,0,0,0.1);
	min-width: 200px;
}
.feature-box h3 {
	font-size: 1.8rem;
	color: var(--primary);
	margin: 0;
}
.feature-box p {
	margin: 0.5rem 0 0;
}

/* Sección con imagen y texto */
.vision2 {
	background: url('../images/bg-textura.jpg') no-repeat center center/cover;
	padding: 4rem 1rem;
	color: white;
}
.vision2__content {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
}
.vision2__text {
	flex: 1;
}
.vision2__text ul {
	padding-left: 1.2rem;
}
.vision2__img {
	flex: 1;
}
.vision2__img img {
	width: 100%;
	border-radius: 12px;
}

/* Ubicación */
.section--ubicacion {
	padding: 4rem 1rem;
	background: white;
	text-align: center;
}
.section--ubicacion3 {
	padding: 4rem 1rem;
	background: white;
	text-align: flex-start;
	align-content: flex-start;
}

.section--ubicacion h2 {
	font-size: 2rem;
	margin-bottom: 1rem;
}
.section--ubicacion__text {
	max-width: 800px;
	margin: 0 auto 2rem;
}
.ubicacion__listado {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 2rem;
	margin-bottom: 2rem;

}
.ubicacion__listado ul {
	list-style: none;
	padding-left: 0;
	text-align: left;
}
.ubicacion__mapa img {
	max-width: 100%;
	border-radius: 12px;
}

.ubicacion__contenido3 {
	display: flex;
	gap: 2rem;
	align-items: flex-start;
	justify-content: flex-start;
	text-align: left;
	flex-wrap: wrap; /* para que en móviles se apile */
	margin-top: 2rem;
}

.ubicacion__listado3 {
	flex: 1 1 350px;
	text-align: left;
}

.ubicacion__listado3 h2 {
	text-align: left;
}

.ubicacion__listado3 p {
	text-align: left;
}
.ubicacion__listado3 ul {
	list-style: none;
	padding-left: 0;
	text-align: left;
	line-height: 25px;	
}

.ubicacion__mapa3 {
	flex: 1 1 350px;
}

.ubicacion__mapa3 img {
	width: 100%;
	border-radius: 12px;
}


.section--ventajas {
	padding: 4rem 1rem;
	background-color: #f9f9f9;
	text-align: center;
}

.section--ventajas h2 {
	font-size: 2rem;
	margin-bottom: 1rem;
}

.section--ventajas__intro {
	max-width: 700px;
	margin: 0 auto 2rem;
	color: #555;
	font-size: 1.1rem;
	line-height: 1.6;
}

/* Tabla de 2 columnas */
.ventajas__tabla {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	text-align: left;
}

.ventajas__img {
	flex: 1 1 300px;
	max-width: 500px;
}

.ventajas__img img {
	width: 100%;
	border-radius: 10px;
}

.ventajas__texto p {
	flex: 1 1 300px;
	max-width: 600px;
	font-size: 1rem;
	line-height: 1.6;
	color: #333;
	text-align: left;
}



/* Amenidades */
.amenidades {
	background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)), url('../images/fondodesa.jpg') no-repeat center center/cover;
	color: white;
	padding: 4rem 1rem;
}
.amenidades h2 {
	text-align: center;
	font-size: 2rem;
	margin-bottom: 1.5rem;
}

.amenidades__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columnas fijas */
  gap: 2rem;
  max-width: 1000px;
  margin: 2rem auto 0;
}

@media (max-width: 768px) {
  .amenidades__grid {
    grid-template-columns: 1fr; /* solo una columna en móvil */
    padding: 0 1rem;
  }
}

.amenidades__grid ul li {
	display: flex;
	align-items: flex-start;
	font-size: 1rem;
	margin-bottom: 1rem;
	line-height: 1.4;
	color: white;
}

.amenidades__grid ul li i {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	text-align: center;
	margin-right: 0.8rem;
	font-size: 2.2rem;
	color: #8cb864;
	line-height: 0;
}

.amenidad {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 0.3rem;
}
.amenidades i {
	list-style: none;
	font-size: 2rem;
	color: #8cb864;
	padding: 20px;
}

/* Galería */
.galeria {
	padding: 4rem 1rem;
	background: #f8f8f8;
	text-align: center;
}
 .galeria__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
	max-width: 1200px;
	margin: 0 auto;
}
/*.galeria__grid img {
	width: 100%;
	border-radius: 10px;
	cursor: pointer;
	transition: transform 0.2s ease;
}
.galeria__grid img:hover {
	transform: scale(1.03);
}*/


.galeria__img {
  width: 100%;
  aspect-ratio: 1 / 1; /* fuerza que el alto sea igual al ancho */
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.galeria__img:hover {
  transform: scale(1.03);
}


.modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.9);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
}
.modal img {
	max-width: 90%;
	max-height: 80vh; 
	border-radius: 10px;
}
.modal .close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	font-size: 2rem;
	color: white;
	cursor: pointer;
}



/* CTA */
.cta__seccion {
  background: url('../images/bg-bici.jpg') no-repeat center center/cover;
  padding: 5rem 1rem;
  text-align: center;
  color: white;
}
.cta__seccion h2 {
  font-size: 2rem;
}
.cta__seccion span {
  font-family: 'Betterlett', cursive;
  font-size: 2rem;
  display: block;
  margin-top: 1rem;
}
.cta__seccion .btn {
  margin-top: 2rem;
}

/* Cifras finales */
.cifras {
  padding: 4rem 1rem;
  background: white;
  text-align: center;
}
.cifras__destacada {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.cifras__destacada a {
  color: var(--primary);
  font-weight: bold;
  text-decoration: none;
}
.cifras__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 2rem;
}
.cifra {
  border: 1px solid #ccc;
  border-radius: 12px;
  padding: 1.5rem;
}
.cifra h3 {
  margin: 0;
  font-size: 1.6rem;
  color: var(--dark);
}
.cifra p {
  margin: 0.5rem 0 0;
  color: #444;
}

/* Responsive ajustes */
@media (max-width: 768px) {
  .vision2__content {
    flex-direction: column;
  }
  .feature-boxes {
    flex-direction: column;
  }
  .cifras__grid {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 768px) {
  .galeria__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}




/* CTA final */
.section--cta {
	background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../images/fondo.jpg') no-repeat center center/cover;
	color: white;
	text-align: center;
	padding: 6rem 2rem;
	position: relative;
}
.cta__overlay {
	background: rgba(0,0,0,0.4);
	padding: 3rem;
	border-radius: 12px;
}

/* Footer */
.footer {
	background: #1c3c2d;
	color: white;
	padding: 2rem 0;
}
.footer__content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 4rem;
	padding-bottom: 2rem;
}
.footer__bottom {
	text-align: center;
	font-size: 0.85rem;
	border-top: 1px solid rgba(255,255,255,0.1);
	padding-top: 1rem;
}
.footer a {
	color: #a5ffcc;
	text-decoration: none;
}

/* Botones */
.btn {
	display: inline-block;
	padding: 10px 15px 10px 15px;
	border-radius: 20px;
	text-decoration: none;
	font-size: 18px;
	font-weight: 500;
	transition: background 0.3s;
}
.btn--primary {
	background: #98c46c;
	color: white;
	border-radius: 1rem;
	transition: background 0.3s ease;
}

.btn--primary:hover {
	background: #88b45a;
	color: white;
}

.btn--green {
	background: var(--primary);
	color: white;
}
.btn--white {
	background: white;
	color: var(--dark);
}
.btn--white:hover {
	background: #98c46c;
	color: var(--dark);
}
.btn--outline {
	background: transparent;
	color: #fff;
	border: 2px solid #fff;
}

/* WhatsApp float */
.whatsapp-float {
	position: fixed;
	bottom: 1.5rem;
	right: 1.5rem;
	background: #25d366;
	color: white;
	font-size: 1.8rem;
	width: 3.5rem;
	height: 3.5rem;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 999;
	box-shadow: 0 4px 8px rgba(0,0,0,0.2);
	text-decoration: none;
}

/* Responsive ajustes */
@media (max-width: 768px) {
	.nav__list {
		flex-direction: column;
		gap: 0.5rem;
	}
	.vision__content, .invertir__content {
		flex-direction: column;
	}
}
