* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	font-family: "Open Sans", Arial, Sans-serif;
	font-size: 16px;
}

.contenedor {
	width: 90%;
	max-width: 1000px;
	margin: auto;
	overflow: hidden;
}

/* ----- ----- HEADER ----- ----- */

header {
	width: 100%;
	background: url('../img/fondoprincipal.jpg'), #08042b;
	background-size: cover;
	background-attachment: fixed;
	background-position: center 0;
}

header .contenedor {
	position: relative;
	height: 700px;
}

header .planes {
	width: 100%;
	text-align: right;
}

header .planes a {
	color: #fff;
	font-size: 20px;
	font-weight: 300;
	display: inline-block;
	margin: 40px 20px;
	text-decoration: none;
	position: relative;
}

header .planes a:hover {
	text-decoration: underline;
}

header .textos {
	width: 100%;
	color: #fff;
	position: absolute;
	top: 50%;
	margin-top: -52px;
}

header .textos .nombre {
	font-size: 50px;
	font-weight: 600;
}

header .textos .nombre span {
	font-weight: 300;
}

header .textos h3 {
	font-weight: 300;
	font-size: 25px;
	font-style: italic;
}

/* ----- ----- MAIN ----- ----- */
.main {
	background: white;
	background-repeat: repeat;
}

.main .acerca-de .contenedor {
	overflow: visible;
	position: relative;
}

.main .acerca-de .foto {
	width: 60%;
	position: absolute;
	left: 0;
	top: -50px;
	z-index: 0;
	-webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.35);
	box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.35);
}

.main .acerca-de .foto img {
	width: 100%;
	vertical-align: top;
}

.main .acerca-de article {
	background: #fff;
	padding: 40px;
	width: 50%;
	position: relative;
	float: right;
	/*top: 30px;*/
	top: 500px;
	/*Con Parallax*/
	z-index: 1;
	-webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.35);
	box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.35);
}

.main .acerca-de article h3 {
	font-size: 50px;
	font-weight: 300;
	margin-bottom: 40px;
}

.main .acerca-de article p {
	line-height: 28px;
	margin-bottom: 15px;

}

.main .planes {
	padding-top: 570px;
	margin-bottom: 50px;
}

.main .planes .titulo, .main .galeria .titulo, .main .informacion .titulo {
	font-size: 40px;
	font-weight: 300;
	text-align: center;
	margin-bottom: 40px;
}

.main .planes .contenedor-planes {
	border: 1px solid #000;
	background: transparent;
	padding: 10px;
	overflow: hidden;
}

.main .planes article {
	width: 100%;
	float: left;
	padding: 20px;
}

.main .planes article .categoria {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 40px;
	text-align: center;
}

.main .planes article .plan {
	overflow: hidden;
	margin: 30px;
	padding: 50px;
	border: 4px outset #110606;
}

.main .planes article .nombre {
	font-size: 20px;
	margin-bottom: 15px;
	float: left;
}

.main .planes article .precio {
	float: right;
	font-size: 20px;
	margin-bottom: 15px;
}

.main .planes article .descripcion {
	font-size: 16px;
	color: #676767;
	clear: both;
}

.main .planes .contenedor-planes2 {
	border: 1px solid #000;
	background: transparent;
	padding: 10px;
	overflow: hidden;
}

.main .galeria {
	overflow: hidden;
}

.main .galeria .foto {
	width: 25%;
	float: left;
	position: relative;
	display: flex;
    justify-content: center;
    align-items: center;
}
.texto{
	position: absolute;
	font-size: 30px;
	color: #ffffff;
	overflow: hidden;
}

.main .galeria .foto img {
	vertical-align: top;
	width: 100%;
	opacity: .7;
}

.main .galeria .foto img:hover {
	opacity: 1;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.main .ubicacion {
	background: #fff;
	padding: 10%;
}

.main .ubicacion .titulo {
	text-align: center;
	font-size: 40px;
	line-height: 40px;
	font-weight: 300;
	margin-bottom: 40px;
}

.main .ubicacion .direccion {
	width: 50%;
	float: left;
	text-align: left;
}

.main .ubicacion .horarios {
	width: 50%;
	float: right;
	text-align: right;
}

.main .ubicacion .direccion .calle {
	margin-bottom: 15px;
}

.main .ubicacion .horarios {
	overflow: hidden;
}

.main .ubicacion .horarios h4 {
	text-align: center;
	margin-bottom: 20px;
}

.main .ubicacion .horarios .entre-semana,
.main .ubicacion .horarios .fin-semana {
	width: 50%;
	float: left;
	text-align: center;
}

.main .mapa {
	width: 100%;
	overflow: hidden;
}

.main .mapa iframe {
	width: 100%;
	max-height: 600px;
}

/* ----- ----- FOOTER ----- ----- */
footer {
    background-color: #282828; /* Color oscuro para el fondo */
    color: #fff; /* Color de texto blanco */
    padding: 30px 0; /* Espaciado superior e inferior */
    text-align: center;
    font-size: 14px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto; /* Centra el contenido */
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Permite que se ajusten los elementos si es necesario */
}

.copyright p {
    margin: 0;
}

.social-media {
    margin-top: 10px;
}

.social-icon {
    margin: 0 15px;
    display: inline-block;
    font-size: 25px;
    color: #fff;
    transition: all 0.3s ease;
    text-decoration: none; /* Elimina el subrayado */
}

.social-icon:hover {
    color: #1DA1F2; /* Color cuando se pasa el mouse (azul para Facebook y TikTok) */
    transform: scale(1.2); /* Efecto de aumento al pasar el mouse */
}

.social-icon:active {
    transform: scale(1); /* Elimina el efecto de escala cuando el icono es presionado */
}

.social-icon i {
    display: block; /* Asegura que el icono ocupe toda el área del enlace */
    text-align: center;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .social-media {
        margin-top: 20px;
    }
}
/* --------------------NOTA----------------------- */
.nota {
	margin: 30px;
	padding: 20px;
	border: 4px dotted #110606;
}

.nota h2 {
	text-align: center;
	margin-bottom: 10px;
}

/* ------CONTACTO ------ */
.contacto {
	padding: 60px 0;
}

.contacto .titulo {
	font-size: 34px;
	line-height: 34px;
	margin-bottom: 60px;
	font-weight: 300;
	color: #3895ea;
	text-align: center;
}

.contacto .formulario {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.contacto .formulario input[type="text"],
.contacto .formulario input[type="email"],
.contacto .formulario textarea {
	border: 2px solid #cecece;
	border-radius: 5px;
	padding: 15px 20px;
	font-size: 20px;
	color: #a4a4a4;
}

.contacto .formulario input[type="text"],
.contacto .formulario input[type="email"] {
	width: 49%;
	margin-bottom: 15px;
}

.contacto .formulario textarea {
	width: 100%;
	height: 100px;
	min-width: 100%;
	margin-bottom: 15px;
	min-height: 100px;
	max-height: 300px;
}

.contacto .formulario .boton {
	margin: auto;
	background: #3895ea;
	color: #fff;
	border: none;
	border-radius: 3px;
	padding: 15px 40px;
}

.contacto .formulario .boton:hover {
	background: #387bea;
	cursor: pointer;
}

/* ----- ----- MEDIA QUERIES ----- ----- */
@media screen and (max-width: 800px) {
	header .contenedor {
		position: static;
		height: auto;
	}

	header .textos {
		position: static;
		margin: 100px 0;
	}

	header .planes {
		text-align: center;
	}

	header .planes a {
		margin: 10px 20px;
	}

	header .textos .nombre {
		font-size: 30px;
	}

	header .textos h3 {
		font-size: 18px;
	}

	.main .acerca-de .foto {
		position: relative;
		width: 100%;
	}

	.main .acerca-de article {
		position: relative;
		width: 100%;
		top: -50px;
		transform: translate(0px, 0);
	}

	.main .planes {
		padding-top: 300px;
	}

	.main .planes article {
		width: 100%;
	}

	.main .galeria .foto {
		width: 50%;
	}

	.main .mapa {
		width: 80%;
		margin: auto;
	}
}

@media screen and (max-width: 400px) {
	.main .acerca-de article h3 {
		font-size: 34px;
		margin-bottom: 10px;
	}

	.main .planes article .nombre,
	.main .planes article .precio {
		font-size: 16px;
		line-height: 16px;
	}

	.main .ubicacion .direccion,
	.main .ubicacion .horarios {
		width: 100%;
		text-align: center;
	}

	.main .ubicacion .direccion {
		margin-bottom: 20px;
	}

	.main .ubicacion .horarios .entre-semana,
	.main .ubicacion .horarios .fin-semana {
		width: 100%;
		margin-bottom: 10px;
	}
}
.section {
	display: flex;
	align-items: center;
	margin: 5%;
	padding: 5%;
}

.section:nth-child(even) {
	flex-direction: row-reverse;
}

.text {
	width: 50%;
	padding: 20px;
}

.image {
	width: 50%;
}

.image img {
	max-width: 100%;
	height: auto;
}
section.planes {
  background: #ffffff;
  padding: 60px 20px;
  font-family: "Segoe UI", sans-serif;
}

section.planes .titulo {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
  color: #1f2937;
  font-weight: bold;
}

section.planes .contenedor-planes {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

section.planes .card-plan,
section.planes .card-beneficios {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

section.planes .card-plan:hover,
section.planes .card-beneficios:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

section.planes .card-plan .categoria,
section.planes .card-beneficios .categoria {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: #3b82f6;
  font-weight: 600;
  margin-bottom: 10px;
}

section.planes .card-plan .nombre,
section.planes .card-beneficios .nombre {
  font-size: 1.5rem;
  color: #111827;
  margin-bottom: 10px;
}

section.planes .card-plan .precio,
section.planes .card-beneficios .precio {
  font-size: 1.8rem;
  color: #10b981;
  margin-bottom: 20px;
}

section.planes .beneficios {
  list-style: none;
  padding-left: 0;
  color: #4b5563;
}

section.planes .beneficios li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

section.planes .beneficios li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

/* Animación fade-in */

section.planes .fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

section.planes .fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

section.informacion {
  background: #ffffff;
  padding: 60px 20px;
  font-family: "Segoe UI", sans-serif;
}

section.informacion .titulo {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 50px;
  color: #1f2937;
  font-weight: bold;
}

section.informacion .info-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
  gap: 40px;
  flex-wrap: wrap;
}

section.informacion .info-section.reverse {
  flex-direction: row-reverse;
}

section.informacion .info-text {
  flex: 1 1 450px;
  min-width: 300px;
}

section.informacion .info-text h2 {
  font-size: 1.75rem;
  color: #111827;
  margin-bottom: 15px;
}

section.informacion .info-text p {
  font-size: 1.05rem;
  color: #4b5563;
  line-height: 1.6;
}

section.informacion .info-img {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

section.informacion .info-img img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* Animación fade-in */
section.informacion .fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

section.informacion .fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  section.informacion .info-section {
    flex-direction: column !important;
    text-align: center;
  }

  section.informacion .info-img {
    margin-top: 20px;
  }
}
.galeria {
  background-color: #ffffff;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.galeria__titulo {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 50px;
  color: #1e293b;
  font-weight: 700;
  letter-spacing: 1px;
}

.galeria__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.galeria__foto {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #f1f5f9;
}

.galeria__foto:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.08);
}

.galeria__foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(40%) brightness(0.95);
  transition: filter 0.4s ease;
}

.galeria__foto:hover img {
  filter: grayscale(0%) brightness(1);
}

.galeria__texto {
  position: absolute;
  bottom: 0;
  background: rgba(255, 255, 255, 0.85);
  color: #1f2937;
  text-align: center;
  width: 100%;
  padding: 14px;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-top: 1px solid #e2e8f0;
  backdrop-filter: blur(6px);
}

/* Animación de aparición */
.galeria__foto.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.galeria__foto.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
h3 {
	font-weight: bold !important;
}