/* RESET Y BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #F5F6F3;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* HEADER PRINCIPAL */
.main-header {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.background-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5) blur(3px);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}

.cuadro-blanco {
  background: rgba(255, 255, 255, 0.85);
  padding: 40px;
  border-radius: 20px;
  display: inline-block;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cuadro-blanco h1 {
  font-size: 4rem;
  font-weight: 700;
  color: #2b7a78;
}

.cuadro-blanco p {
  font-size: 1.3rem;
  margin-top: 20px;
  color: #444;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 40px; /* un poco más de espacio */
  background-color: rgba(247, 245, 245, 0.95);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  height: 95px; /* 🔼 subido a 95px */
}

/* LOGO más grande sin deformar */
.logo {
  height: 78px; /* 🔼 subido a 78px */
  width: auto;
}

/* MENÚ */
.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  margin-left: 0;
}

.nav-links li a {
  color: #2b7a78;
  text-decoration: none;
  font-size: 1rem;
  position: relative;
  transition: color 0.3s ease;
}

/* Línea animada al hacer hover */
.nav-links li a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #2b7a78;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-links li a:hover::after {
  transform: scaleX(1);
}

/* ICONO HAMBURGUESA */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #2b7a78;
}

/* RESPONSIVE */
@media screen and (max-width: 768px) {
  html {
    font-size: 13px;
    scroll-padding-top: 80px;
  }

  header {
    padding-top: 60px;
  }

  header nav {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 12px 20px;
  }

  #menu-toggle {
    display: block;
    position: absolute;
    right: 45px;
    top: 32px;
    z-index: 1001;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: center;
    background-color: white;
    position: absolute;
    top: 60px;
    right: 10px;
    width: 85%;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    text-align: center;
  }

  .nav-links.active {
    display: flex;
  }

  .titulo-seccion {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  section {
    padding: 60px 16px;
  }

  .info-contacto {
    flex-direction: column;
    gap: 20px;
  }

  .extra-servicio {
    padding: 30px 20px;
  }

  .fondo-extras {
    background-attachment: scroll;
  }

  .logo {
    height: 55px;
  }
}

/* SECTION */
.section {
  padding: 100px 20px;
  text-align: center;
  background: linear-gradient(to bottom, #f9f9f9, #fff);
}

.section h2 {
  font-size: 2.5rem;
  color: #2b7a78;
  margin-bottom: 20px;
}

.section p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

/* === QUIÉNES SOMOS - DISEÑO VISUAL CON IMAGEN A LA DERECHA === */
#quienes-somos {
  padding: 100px 40px;
  background: linear-gradient(to right, #e0f7f5, #ffffff);
}

.quienes-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

#quienes-somos .contenido {
  flex: 1 1 500px;
  text-align: left;
  max-width: 600px;
}

#quienes-somos h2 {
  font-size: 2.8rem;
  color: #2b7a78;
  margin-bottom: 20px;
}

#quienes-somos p {
  font-size: 1.2rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 16px;
}

.imagen-quienes {
  flex: 1 1 400px;
  max-width: 450px;
}

.imagen-quienes img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
} 

/* PLAZA BLANDA */
#plaza-blanda {
  position: relative;
  background-image: url('Imagenes/plaza\ blanda.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 78%; /* centra en las niñas */
  background-attachment: fixed;   /* efecto parallax en desktop */
  min-height: 120vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}


/* Fallback para mobile (iOS desactiva fixed) */
@media (max-width: 1024px) {
  #plaza-blanda {
    background-attachment: scroll;
    background-position: center 70%;
    min-height: 110vh;
  }
}

#plaza-blanda .contenido {
  position: relative;
  z-index: 2;
  background: white;
  padding: 50px;
  max-width: 800px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  text-align: left;
}

/* Botón en Plaza Blanda */
#plaza-blanda .btn-ver-mas {
  display: block;
  margin: 40px auto 0;
  background-color: #2b7a78;
  color: white;
  padding: 12px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease-in-out;
  text-align: center;
  width: fit-content;
}

#plaza-blanda .btn-ver-mas:hover {
  background-color: #205e5d;
  transform: scale(1.05);
}

/* Separación del bloque extra */
#plaza-blanda .bloque-extra {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 2px dashed #ccc;
}


/* SERVICIOS */
.propuestas-header {
  padding: 100px 20px;
  background: url('fondo-servicios.jpg') no-repeat center center fixed;
  background-size: cover;
  text-align: center;
  position: relative;
}

.propuestas-header::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.85);
  z-index: 0;
}

.propuestas-header > * {
  position: relative;
  z-index: 2;
}

.propuestas-header h2 {
  font-size: 2.8rem;
  margin-bottom: 40px;
  color: #2b7a78;
  border-bottom: 4px solid #2b7a78;
  display: inline-block;
  padding-bottom: 10px;
}

/* CATEGORÍAS */
.categorias {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.categoria {
  background: #f8f8f8;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  min-width: 200px;
}

.categoria h3 {
  color: #2b7a78;
  margin-bottom: 10px;
}

.etiqueta {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 8px;
  font-size: 0.8rem;
  color: white;
  margin-top: 10px;
}

.red { background-color: #e63946; }
.purple { background-color: #9b59b6; }
.green { background-color: #2ecc71; }

/* ESTADÍSTICAS */
.estadisticas {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.stat {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  width: 200px;
  text-align: center;
}

.stat i {
  font-size: 2rem;
  color: #2b7a78;
  margin-bottom: 10px;
}

.stat p {
  font-size: 1rem;
  color: #333;
}

/* PROPUESTAS EN FORMATO VERTICAL HEADER */
#propuestas {
  padding: 20px 20px;
  background: linear-gradient(to bottom, #f5fdfa 0%, #ffffff 100%);
}

#propuestas h2 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 60px;
  color: #2b7a78;
  position: relative;
}

#propuestas h2::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background-color: #2b7a78;
  margin: 12px auto 0;
  border-radius: 4px;
}

.propuesta-header {
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding: 80px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.propuesta-header:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.propuesta-contenido {
  background: rgba(255, 255, 255, 0.97);
  padding: 40px 30px;
  border-radius: 12px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
  backdrop-filter: blur(2px);
  transition: transform 0.4s ease;
}

.propuesta-header:hover .propuesta-contenido {
  transform: scale(1.02);
}

.propuesta-header h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #2b7a78;
}

.propuesta-header p {
  font-size: 1.1rem;
  color: #555;
  margin: 0 auto;
}

.btn-ver-mas {
  display: inline-block;
  background-color: #2b7a78;
  color: white;
  padding: 10px 20px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  margin-top: 20px;
}

.btn-ver-mas:hover {
  background-color: #205e5d;
  transform: scale(1.05);
}

.propuesta-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.30;
  z-index: 0;
}

.propuesta-1::before {
  background-image: url('Imagenes/ia.jpg');
}
.propuesta-2::before {
  background-image: url('Imagenes/talleres_de_pintura.jpg');
}
.propuesta-3::before {
  background-image: url('Imagenes/slime.jpg');
}
.propuesta-4::before {
  background-image: url('Imagenes/Minuto_para_ganar.jpg');
}
.propuesta-5::before {
  background-image: url('Imagenes/foto-animacion-2.jpg');
}
.propuesta-6::before {
  background-image: url('Imagenes/logo-dj.jpg');
}

/* SECCIÓN EXTRAS */
.seccion-extras {
  position: relative;
  padding: 100px 20px;
  overflow: hidden;
  z-index: 1;
  color: #333;
}

.fondo-extras {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150%;
  background-image: url("Imagenes/extras.jpg"); /* o el nombre real */
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: -5;
}

@keyframes moverFondo {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(0);
  }
}

.contenido-extras {
  position: relative;
  z-index: 2;
  text-align: center;
}

.seccion-extras h2 {
  font-size: 2.6rem;
  color: #2b7a78;
  margin-bottom: 60px;
  position: relative;
}

.seccion-extras h2::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background-color: #2b7a78;
  margin: 12px auto 0;
  border-radius: 4px;
}

.extra-servicio {
  background: rgba(255, 255, 255, 0.95);
  padding: 50px 30px;
  margin: 0 auto 40px auto;
  max-width: 900px;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.extra-servicio:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.extra-servicio h3 {
  font-size: 1.8rem;
  color: #2b7a78;
  margin-bottom: 15px;
}

.extra-servicio p {
  font-size: 1.1rem;
  color: #444;
  max-width: 700px;
  margin: 0 auto;
}



/* CONTACTO */
section.contacto {
  background: #eaece5;
}

.contacto p {
  font-size: 1.2rem;
  color: #333;
  line-height: 1.8;
}

/* FOOTER */
.footer {
  background-color: #dde4da;
  padding: 30px;
  text-align: center;
  color: #444;
  font-size: 1rem;
}

/* AOS INTENSIFICADO */
[data-aos] {
  transition-property: transform, opacity;
  transition-duration: 1.4s !important;
  transition-timing-function: ease-in-out;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  body {
    font-size: 0.9rem;
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .carrusel-propuestas {
    flex-direction: column;
    overflow-x: hidden;
  }

  .slide-propuesta {
    min-width: 100%;
  }

  .categorias,
  .estadisticas {
    flex-direction: column;
    align-items: center;
  }

  .cuadro-blanco h1 {
    font-size: 2.5rem;
  }

  .cuadro-blanco p {
    font-size: 1rem;
  }

}

/* === MENÚ HAMBURGUESA FUNCIONAL === */
@media (max-width: 768px) {
  .nav-links.active {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 95px; /* Altura del navbar */
    left: 0;
    width: 100%;
    background-color: #ffffff;
    z-index: 999;
    padding: 20px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }

  .nav-links.active li {
    margin: 10px 0;
  }

  .menu-toggle {
    display: block;
  }

}

/* === ANIMACIONES DE ENTRADA Y SALIDA DEL MENÚ === */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-10px);
  }
}

.nav-links.animate-in {
  animation: slideDown 0.3s ease forwards;
}

.nav-links.animate-out {
  animation: slideUp 0.3s ease forwards;
}

@media (max-width: 768px) {
  #plaza-blanda {
    background-position: center center !important;
    background-size: cover !important;
    min-height: 100vh !important;
  }

  #plaza-blanda .contenido {
    padding: 40px 20px;
  }
}

/* ANIMACIÓN DE ENTRADA */
.fade-in-start {
  opacity: 0;
  animation: fadeInAnim 1.5s ease forwards;
}

@keyframes fadeInAnim {
  to {
    opacity: 1;
  }
}


/* PLAZA-BLANDA HTML */
.subpagina-header {
  background-size: cover;
  background-position: center;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}

.subpagina-header .overlay {
  background: rgba(0, 0, 0, 0.5);
  padding: 3rem;
  border-radius: 1rem;
  color: white;
}

.subpagina-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.volver-btn {
  display: inline-block;
  margin-top: 1rem;
  background: white;
  color: #2b7a78;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.volver-btn:hover {
  background: #2b7a78;
  color: white;
}

/* PLAZA BLANDA HEADER PERSONALIZADO */
.plaza-header {
  background-image: url('Imagenes/plaza\ blanda.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.plaza-header::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.plaza-header .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.descripcion-individual {
  background-color: #f5f6f3;
  padding: 5rem 2rem;
  border-top: 1px solid #ddd;
}

.descripcion-individual .contenido {
  max-width: 900px;
  margin: auto;
  font-size: 1.15rem;
  line-height: 1.8;
  color: #2e2e2e;
}

.descripcion-individual h2.seccion-titulo {
  font-size: 2rem;
  color: #2b7a78;
  margin-bottom: 2rem;
  text-align: center;
}

.volver-btn {
  display: inline-block;
  margin-top: 3rem;
  padding: 0.8rem 1.8rem;
  background-color: #2b7a78;
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.volver-btn:hover {
  background-color: #205e5d;
}

/* Bloque visual para alquiler */
.alquiler-bloque {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #e8ece6, #ffffff);
  text-align: center;
}

.alquiler-contenido .cuadro-blanco {
  background: #fff;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  display: inline-block;
  max-width: 700px;
}

.alquiler-contenido h3 {
  color: #2b7a78;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.alquiler-contenido p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
}

/*PLAZA BLANDA HTML*/
.plaza-header {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  position: relative;
  background-image: url('Imagenes/plaza blanda.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
}

.plaza-header::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.plaza-header .hero-content {
  z-index: 2;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.plaza-header .cuadro-blanco {
  background: rgba(255, 255, 255, 0.95);
  padding: 2rem 3rem;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  display: inline-block;
  margin: 0 auto;
}

/* CONTENIDO PLAZA */
.section {
  background-color: #f5f6f3;
  padding: 4rem 2rem;
  text-align: left;
}

.section .contenido {
  max-width: 800px;
  margin: 0 auto;
}

.section h2 {
  font-size: 2rem;
  color: #2b7a78;
  margin-bottom: 1.5rem;
  text-align: center;
}

.section ul {
  list-style: none;
  padding-left: 0;
}

.section li {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.bloque-extra {
  background: #e8ece6;
  border-left: 6px solid #2b7a78;
  padding: 1.5rem;
  border-radius: 10px;
  margin-top: 2rem;
  font-size: 1rem;
}

/* BOTÓN VOLVER */
.btn-ver-mas {
  display: inline-block;
  margin-top: 2.5rem;
  padding: 0.8rem 1.6rem;
  background-color: #2b7a78;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s ease;
  text-align: center;
}

.btn-ver-mas:hover {
  background-color: #205e5d;
}

/* BLOQUE DE ALQUILER */
.alquiler-bloque {
  background-color: #f5f6f3;
  padding: 4rem 2rem;
  text-align: center;
}

.alquiler-contenido .cuadro-blanco {
  background: rgba(255, 255, 255, 0.95);
  padding: 2rem 3rem;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  display: inline-block;
  max-width: 700px;
  margin: 0 auto;
}

/* PROPUESTA INDIVIDUAL (como Plaza Blanda) */
.propuesta-header-individual {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
}

.propuesta-header-individual::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.propuesta-header-individual .hero-content {
  z-index: 2;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.propuesta-header-individual .cuadro-blanco {
  background: rgba(255, 255, 255, 0.95);
  padding: 2rem 3rem;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  display: inline-block;
  margin: 0 auto;
}



/* UNIFICAR ESTRUCTURA DE TEXTO EN TODO EL SITIO */
.section .contenido {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  text-align: justify;
  line-height: 1.8;
  font-size: 1.05rem;
}

.section .contenido p,
.section .contenido li {
  margin-bottom: 1.5rem;
}

.section h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #2b7a78;
  font-size: 2rem;
}

.bloque-extra {
  background: #ffffffc5;
  border-left: 6px solid #2b7a78;
  padding: 1.5rem;
  border-radius: 10px;
  margin-top: 2.5rem;
  font-size: 1rem;
}

/* SOLO PARA PÁGINAS INDIVIDUALES: Recuadro difuminado en descripción */
.pagina-individual .section .contenido {
  background: linear-gradient(to bottom right, #f0f5f3, #e2ece6);
  padding: 3rem 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* FONDO DIFUMINADO CLARO VERDE → BLANCO EN PÁGINAS INDIVIDUALES */
.pagina-individual .section {
  background: linear-gradient(to bottom, #e1efe8 0%, #ffffff 100%);
}

/* CONTACTO */
.contacto {
  background: #F5F6F3;
  padding: 5rem 2rem;
  text-align: center;
}

.contenedor-contacto {
  max-width: 800px;
  margin: 0 auto;
}

.titulo-seccion {
  font-size: 2.5rem;
  color: #2b7a78;
  margin-bottom: 0.5rem;
}

.subtitulo-contacto {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 2.5rem;
}

.info-contacto {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.contacto-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.1rem;
}

.contacto-item i {
  color: #2b7a78;
  font-size: 1.2rem;
}

.contacto-item a {
  color: #2b7a78;
  text-decoration: none;
  font-weight: 600;
}

.contacto-item a:hover {
  text-decoration: underline;
}

.mensaje-contacto {
  font-size: 1rem;
  color: #333;
  margin-top: 1.5rem;
}

/* Responsive */
@media (min-width: 600px) {
  .info-contacto {
    flex-direction: row;
  }
}

/* EFECTO FADE-IN AL CARGAR LA PÁGINA */
.fade-in {
  opacity: 0;
  animation: fadeInBody 1.2s ease forwards;
}

@keyframes fadeInBody {
  to {
    opacity: 1;
  }
}

.fondo-extras {
  will-change: background-position;
}

#quienes-somos {
  max-width: 100%;
  overflow-x: hidden;
}

.anti-scroll-x {
  overflow-x: hidden;
  position: relative; /* necesario para que se respete */
}

.precio-recuadro {
  background-color: #e8ece6;
  color: #2b7a78;
  font-weight: 600;
  display: inline-block;
  padding: 10px 18px;
  border-radius: 12px;
  margin-top: 15px;
  font-size: 1rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.precio-recuadro.plaza {
  background-color: #f0f5f3; /* más suave que el gris general */
  font-size: 1.1rem;
  min-height: 50px;
}

.precio-recuadro + p {
  margin-top: 10px;
}

h3 {
  text-align: left;
  word-spacing: normal;
}

.alquiler-bloque h3 {
  text-align: center;
}

/* TÍTULO DESTACADO EN PROPUESTAS */
.contenido h2 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: #2b7a78;
}

/* CENTRAR TEXTO DENTRO DE CADA CATEGORÍA */
.categoria h3,
.categoria p,
.categoria .subtitulo-servicio,
.categoria .etiqueta {
  text-align: center;
  margin: 0 auto;
}

/* --- PARCHE ANTI-SCROLLES INTERNOS + AJUSTES VISUALES --- */

/* Solo scroll global */
html, body {
  height: auto !important;
  overflow-y: auto !important;
  overflow-x: hidden !important; /* mata scroll horizontal */
}

/* Contenedores con scroll forzado → visibles */
[class*="scroll"], [class*="Scroller"], [class*="carrusel"], 
.contenedor-scroll, .scroll-area, .propuesta-header-individual,
.pagina-individual, .header-individual, .propuestas-header,
.fondo-servicios, .carrusel-track, .carrusel-wrapper {
  overflow: visible !important;
  max-height: none !important;
  height: auto !important;
  -webkit-overflow-scrolling: auto !important;
}

/* AOS: evitar scroll horizontal por transform */
[data-aos="fade-left"], [data-aos="fade-right"] {
  transform: none !important; /* o cambiar a fade-up en HTML */
}

/* Evitar bloqueos de scroll por clases especiales */
body.menu-abierto, body.no-scroll, body.fixed {
  position: static !important;
  overflow: auto !important;
  width: auto !important;
}

/* --- BOOSTER DEL SECTOR SUPERIOR (imágenes/video) --- */

/* 0) Altura real del menú (ajustá si tu header mide distinto) */
:root { --alto-header: 80px; }
@media (max-width: 768px){
  :root { --alto-header: 64px; }
}

/* 1) Que el bloque de arriba ocupe casi toda la pantalla */
.portada,
.hero,
.banner,
.propuesta-header-individual,
.propuestas-header {
  min-height: calc(100dvh - var(--alto-header)) !important; /* alto casi full */
  /* si querés un poco menos, probá: min-height: calc(90dvh - var(--alto-header)) */
  display: grid;
  align-items: center;
  position: relative;
}

/* 2) Si es fondo por CSS, que no se “achique” */
.portada,
.hero,
.banner,
.propuesta-header-individual,
.propuestas-header,
.fondo-servicios {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

/* 3) Si arriba tenés <img> o <video>, que llenen el alto */
.portada img, .portada video,
.hero img, .hero video,
.banner img, .banner video,
.propuesta-header-individual img, .propuesta-header-individual video {
  width: 100%;
  height: 100%;
  object-fit: cover;      /* llena sin deformar */
  display: block;
}

/* 4) Que el contenido overlay no limite la altura por max-widths globales */
.portada .inner, .hero .inner, .banner .inner,
.propuesta-header-individual .inner, .propuestas-header .inner {
  max-width: min(1200px, 92vw);
  margin: 0 auto;
  padding: clamp(12px, 3vw, 32px);
}

/* 5) Si algo los estaba “achicando” (márgenes/padding arriba) */
.portada, .hero, .banner,
.propuesta-header-individual, .propuestas-header {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* 6) En mobile, mantenelos grandes pero cómodos */
@media (max-width: 768px){
  .portada,
  .hero,
  .banner,
  .propuesta-header-individual,
  .propuestas-header {
    min-height: calc(88dvh - var(--alto-header)) !important;
  }
}

/* --- FAB WhatsApp --- */
.wa-fab{
  position: fixed;
  right: clamp(14px, 2vw, 24px);
  bottom: 70px;
  width: 72px; height: 72px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 20px rgba(0,0,0,.2);
  z-index: 2000;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
  isolation: isolate; /* evita que overlays lo tapen */

  }
@media (max-width: 768px) {
  .wa-fab {
    bottom: 80px; /* más arriba aún en móvil por posibles barras */
  }

}
.wa-fab:hover{ transform: translateY(-2px); box-shadow: 0 14px 28px rgba(0,0,0,.25); }
.wa-icon{ width: 34px; height: 34px; display:block; }

/* Tooltip */
.wa-tooltip{
  position: absolute;
  right: 70px; bottom: 50%;
  transform: translateY(50%);
  background: #111;
  color:#fff;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 8px;
  opacity: 0; pointer-events: none;
  white-space: nowrap;
  transition: opacity .2s ease;
  box-shadow: 0 6px 16px rgba(0,0,0,.18);
}
.wa-fab:hover .wa-tooltip{ opacity: 1; }

/* Pulso suave para llamar la atención */
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,.45); }
  50% { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
}
.wa-fab{ animation: wa-pulse 2.2s infinite; }

/* Tamaño en mobile */
@media (max-width: 768px){
  .wa-fab{ width: 64px; height: 64px; }
  .wa-icon{ width: 30px; height: 30px; }
  .wa-tooltip{ display:none; } /* evitamos cubrir contenido en cel */
}

/* Si tenés algún banner o chat que tape el FAB, podés subirlo más: */
/* .wa-fab{ bottom: 88px; } */

/* Header alto tipo franja */
.plaza-header-band{
  position: relative;
  height: 560px; /* subí/bajá si querés más/menos alto */
  display: grid; place-items: center;
  overflow: hidden;
  isolation: isolate;
}

/* 4 columnas pegadas, sin separación (collage) */
.mini-columns{
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: 100%; height: 100%;
}

/* Base columnas */
.mini-col{
  position: relative;
  overflow: hidden;
  border: 0; border-radius: 0; box-shadow: none;
}

.mini-col.foto::before,          /* capa de relleno (difuminada, cover) */
.mini-col.foto::after {          /* imagen nítida (contain, completa) */
  content: "";
  position: absolute; inset: 0;
  background-repeat: no-repeat;
  will-change: transform;
}
.mini-col.foto::before{
  background-image: var(--bg);
  background-position: var(--pos, center);
  background-size: cover;            /* rellena sin bandas */
  filter: blur(12px);
  transform: scale(1.08);            /* estiro un toque para tapar bordes del blur */
  z-index: 0;
}
.mini-col.foto::after{
  background-image: var(--bg);
  background-position: var(--pos, center);
  background-size: contain;          /* muestra la imagen completa */
  transform: translateY(var(--ty, 0px)); /* parallax suave */
  z-index: 1;
}

/* VIDEO: cubrir sin bandas (leve recorte es OK para evitar franjas) */
.mini-col.video video{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Cartel centrado encima */
.cartel-centro{
  position: absolute; inset: 0;
  display: grid; place-items: center;
  z-index: 3; pointer-events: none;
}
.cartel-centro .cuadro-blanco{ pointer-events: auto; }

/* Mobile */
@media (max-width:1024px){
  .plaza-header-band{ height: 420px; }
}
