html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  background-color: black;
}

body {
  background-color: transparent;
  color: black;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.fondo {
  background-image: url('/static/images/home/fondo.jpg');
  background-size: 131%;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

header {
  display: flex;
  align-items: center;
  padding: 40px 25px 20px;
  background-color: transparent;
  position: relative;
  z-index: 1100;
  flex-wrap: wrap;
}

.header-content {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.logo {
  flex: 0.8;
  display: flex;
  justify-content: flex-start;
}

.logo img {
  height: 50px;
  margin-left: 50px;
}

/* 🔹 Menú de escritorio */
.navbar {
  flex: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-right: 60px;
}

.nav-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.nav-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding: 0;
  margin: 0;
  list-style: none;
  justify-content: center
}

.nav-row li a {
  color: white;
  text-decoration: none;
  font-size: 15px;
  padding: 5px 8px;
  white-space: nowrap;
}

.nav-row li a:hover {
  color: #f2fc6e;
}

.main-menu {
  border-bottom: 2px solid  #f2fc6e;
  padding-bottom: 3px;
}

/* 🔽 Menú hamburguesa (oculto en escritorio) */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  align-items: center;
  justify-content: center;
  z-index: 1200;
}

.menu-toggle .bar {
  width: 30px;
  height: 4px;
  background-color: white;
  border-radius: 5px;
  transition: 0.3s;
}

/* 🔹 Contenedor del menú móvil */
.mobile-menu-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  display: none;  /* 🔹 Oculto por defecto */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  overflow-y: auto;
}

/* 🔹 Cuando el menú está activo */
.mobile-menu-container.active {
  display: flex;
}

.body-no-scroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

/* 🔹 Botón de cerrar (X) */
.close-menu {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 30px;
  background: none;
  border: none;
  cursor: pointer;
  color: black;
  display: none;
}

.mobile-menu-container.active .close-menu {
  display: block;
}

/* 🔹 Estilos de los enlaces en el menú móvil */
.mobile-nav-links {
  list-style: none;
  text-align: center;
  padding: 0;
}

.mobile-nav-links li {
  margin: 20px 0;
}

.mobile-nav-links a {
  text-decoration: none;
  color: white;
  font-size: 24px;
  font-weight: bold;
}

.mobile-nav-links a:hover {
  color: #f2fc6e;
}

.social-icon {
  display: inline-block;
  margin: 0 10px;
  font-size: 1.8em;
  color: #ffffff;
  transition: color 0.3s ease;
  margin-right: 20px;
}

.social-icon:hover {
  color: #000000;
}

.social-icon.facebook:hover {
  color: #3b5998;
}

.social-icon.instagram:hover {
  color: #E4405F;
}

.titulo-seccion {
  text-align: center;
  padding: 360px 20px 40px;
}

.titulo-seccion {
  text-align: center;
  padding: 260px 30px 40px;
}

.titulo-icono {
  display: block;
  margin: 0 auto 20px auto; 
  width: 80px;  
  height: auto;
}

.titulo-seccion h1 {
  font-size: 54px;
  color: white;
  font-weight: bold;
  margin: 0 auto;
  position: relative;
  display: inline-block;
}

.titulo-seccion h1::after {
  content: "";
  display: block;
  margin: 40px auto 390px;;
  width: 101%;           
  height: 1px;         
  background-color: white;
  margin-left: 0;      
  margin-right: 15px;
}

.sorprenderas-section {
  position: relative;
  z-index: 10; 
  background-color: black;
  color: white;
  padding: 110px 40px;
  opacity: 0;
  transform: translateY(100px);
  transition: transform 1s ease-out, opacity 1s ease-out;
  margin-top: -100px; 
}

.sorprenderas-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.sorprenderas-titulo {
  font-size: 50px;
  margin-bottom: 50px;
  font-weight: bold;
  text-align: left;
  margin-left: 80px;

}

.sorprenderas-contenido {
  display: flex;
  align-items: flex-start; 
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  text-align: left;
}

.sorprenderas-imagen img {
  max-width: 110%;
  height: auto;
  border-radius: 12px;
  width: 600px; 
}

.sorprenderas-texto {
  max-width: 300px;
  flex: 1;
  margin: 0; 
}

.sorprenderas-texto::before {
  content: "";
  display: block;
  width: 100%;              
  height: 1.5px;              
  background-color: white;   
  margin-bottom: 20px;       
}

.sorprenderas-texto h3 {
  font-size: 23px;
  margin-bottom: 15px;
}

.sorprenderas-texto p {
  font-size: 18px;
  line-height: 1.6;
}

.experiencias-section {
  position: relative;
  background-image: url('/static/images/home/estatua.jpg');
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  color: white;
  padding: 223px 40px;
  min-height: 500px; 
  display: flex;
  align-items: center;
}

.experiencias-textos {
  max-width: 300px;
  text-align: left;
  background-color: transparent;
  padding: 50px;
  border-radius: 10px;
  margin-top: 100px;
}

.experiencias-textos h3 {
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 120px;
}

.experiencias-textos p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 60px;
}

.experiencias-textos blockquote {
  font-style: italic;
  font-size: 18px;
  margin: 0;
  text-align: center; 
  padding-left: 40px; 
}

.scroll-text {
  transform: translateY(0);
  transition: transform 2.2s ease-out, opacity 2.2s ease-out;
}

.scroll-text.scrolled-down {
  transform: translateY(-180px);
}

.rompe-section {
  position: relative;
  background-image: url('/static/images/home/person.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: scroll; 
  color: white;
  padding: 151px 40px;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 1;
  opacity: 0;
  transform: translateY(150px);
  transition: transform 1.0s ease-out, opacity 1.0s ease-out;
}
.rompe-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.rompe-textos {
  max-width: 500px;
  text-align: left;
  background-color: transparent;
  padding: 70px;
  border-radius: 10px;
  margin-top: 70px;
}

.rompe-textos h3 {
  font-size: 55px;
  font-weight: bold;
  margin-bottom: 40px;
}

.rompe-textos p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.rompe-boton {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 25px;
  background-color: white;
  color: black;
  font-weight: bold;
  border: none;
  border-radius: 25px;
  text-decoration: none;
  font-size: 20px;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-left: 200px;
}

.rompe-boton:hover {
  background-color: #f2fc6e;
  color: black;
}

.scroll-texto {
  transform: translateY(0);
  transition: transform 2.2s ease-out, opacity 2.2s ease-out;
}

.scroll-texto.scrolled-down {
  transform: translateY(-40px);
}

.muesart-invita {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 100px 40px;
  background-color: black;
  color: white;
  gap: 40px;
  flex-wrap: wrap;
}

.muesart-columna {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.imagenes-izquierda img,
.imagenes-derecha img {
  width: 350px;
  height: auto;
  margin: 10px 0;
  border-radius: 10px;
  object-fit: cover;
}

.texto-centro {
  max-width: 300px;
  text-align: left;
  margin-top: -680px;
}

.texto-centro h3 {
  font-size: 25px;
  margin-bottom: 30px;
  font-weight: bold;
}

.texto-centro p:first-of-type::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: white;
  margin-bottom: 20px;
}

.texto-centro p {
  font-size: 19px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer {
  background-color: #000;
  color: white;
  padding: 30px 20px;
  text-align: center;
  font-size: 18px;
}

.footer-links {
  margin-bottom: 10px;
}

.footer-link {
  color: white;
  text-decoration: none;
  font-weight: bold;
  margin-right: 20px;
}

.footer-link:hover {
  text-decoration: underline;
}

.footer-social a {
  color: white;
  margin: 0 10px;
  font-size: 25px;
  transition: color 0.3s ease;
}

.fa-x-twitter:hover {
  color: #000000;
}

.fa-facebook-f:hover {
  color: #3b5998;
}

.fa-instagram:hover {
  color: #E4405F;
}

.footer-copy {
  margin-top: 20px;
  font-size: 18px;
  opacity: 0.8;
}

@media (max-width: 1186px) {
  .fondo {
    background-size: 180%;
    background-position: center top;
  }

  .logo img {
    height: 40px;
    margin-left: 20px;
  }

  .nav-row li a {
    font-size: 12px;
    padding: 4px 6px;
  }

  .social-icon {
    font-size: 1.2em;
    margin: 5px;
  }

  .titulo-seccion {
    padding: 200px 20px 30px;
  }

  .titulo-icono {
    width: 80px;
  }

  .titulo-seccion h1 {
    font-size: 45px;
  }

  .titulo-seccion h1::after {
    width: 105%;
    margin: 30px auto 350px;
  }

  .sorprenderas-section {
    padding: 90px 30px;
  }

  .sorprenderas-titulo {
    font-size: 42px;
    margin-left: 40px;
  }

  .sorprenderas-contenido {
    gap: 40px;
  }

  .sorprenderas-imagen img {
    width: 500px;
    max-width: 100%;
  }

  .sorprenderas-texto {
    max-width: 280px;
  }

  .sorprenderas-texto h3 {
    font-size: 21px;
  }

  .sorprenderas-texto p {
    font-size: 17px;
  }

  .experiencias-section {
    padding: 180px 30px;
    min-height: 450px;
  }

  .experiencias-textos {
    max-width: 260px;
    padding: 40px;
    margin-top: 80px;
  }

  .experiencias-textos h3 {
    font-size: 42px;
    margin-bottom: 90px;
  }

  .experiencias-textos p {
    font-size: 16px;
    margin-bottom: 50px;
  }

  .experiencias-textos blockquote {
    font-size: 16px;
    padding-left: 30px;
  }

  .rompe-section {
    padding: 120px 30px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .rompe-textos {
    max-width: 90%;
    padding: 40px 30px;
    margin-top: 40px;
    text-align: center;
  }

  .rompe-textos h3 {
    font-size: 44px;
  }

  .rompe-textos p {
    font-size: 18px;
  }

  .rompe-boton {
    margin-left: 0;
    margin-top: 30px;
  }

  .muesart-invita {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 100px 40px;
    background-color: black;
    color: white;
    gap: 40px;
    flex-wrap: wrap;
  }

  .muesart-columna {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .imagenes-izquierda img,
  .imagenes-derecha img {
    width: 350px;
    height: auto;
    margin: 10px 0;
    border-radius: 10px;
    object-fit: cover;
  }

  .texto-centro {
    max-width: 300px;
    text-align: left;
    margin-top: -680px;
  }

  .texto-centro h3 {
    font-size: 25px;
    margin-bottom: 30px;
    font-weight: bold;
  }

  .texto-centro p:first-of-type::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: white;
    margin-bottom: 20px;
  }

  .texto-centro p {
    font-size: 19px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .footer {
    font-size: 14px;
    padding: 25px 20px;
  }

  .footer-social a {
    font-size: 18px;
    margin: 0 8px;
  }

  .footer-link {
    font-size: 14px;
    margin-right: 10px;
  }
}

@media (max-width: 767px) {
  .fondo {
    background-size: 400%;
    background-position: center top;
  }

  header {
    background-color: white;
  }
  /* 🔹 Ocultamos el menú de escritorio */
  .navbar {
    display: none;
  }

  /* 🔹 Ocultamos íconos sociales */
  .social-icons {
    display: none;
  }

  /* 🔹 MOSTRAMOS EL BOTÓN DE HAMBURGUESA */
  .menu-toggle {
    display: flex;
    margin-right: 15px;
  }

  .menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: black;
    border-radius: 5px;
    transition: 0.3s;
  }

  .logo {
    flex: 1;
    justify-content: flex-start;
  }

  .logo img {
    height: 40px;
    margin-left: 20px;
  }

  .header-content {
    justify-content: space-between;
  }

  .experiencias-section {
    padding: 190px 40px 140px; /* Aumentamos espacio inferior */
  }


  .titulo-seccion {
    padding: 180px 15px 30px;
  }

  .titulo-icono {
    width: 50px;
  }

  .titulo-seccion h1 {
    font-size: 32px;
  }

  .titulo-seccion h1::after {
    width: 110%;
    margin: 25px auto 260px;
  }

  .sorprenderas-section {
    padding: 80px 20px;
    margin-top: -60px;
  }

  .sorprenderas-titulo {
    font-size: 36px;
    margin-left: 0;
    text-align: center;
  }

  .sorprenderas-contenido {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
  }

  .sorprenderas-imagen img {
    width: 90%;
    max-width: 350px;
  }

  .sorprenderas-texto {
    max-width: 90%;
  }

  .sorprenderas-texto::before {
    width: 60%;
    margin: 0 auto 20px auto;
  }

  .sorprenderas-texto h3 {
    font-size: 20px;
  }

  .sorprenderas-texto p {
    font-size: 16px;
  }

  .experiencias-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 140px 20px;
    min-height: 450px;
  }

  .experiencias-textos {
    max-width: 90%;
    padding: 30px 20px;
    margin-top: 60px;
  }

  .experiencias-textos h3 {
    font-size: 36px;
    margin-bottom: 60px;
  }

  .experiencias-textos p {
    font-size: 15px;
    margin-bottom: 40px;
  }

  .experiencias-textos blockquote {
    font-size: 15px;
    padding-left: 0;
  }

  .rompe-section {
    padding: 100px 20px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-position: center top;
    text-align: center;
  }

  .rompe-textos {
    max-width: 100%;
    padding: 30px 20px;
    margin-top: 30px;
    text-align: center;
  }

  .rompe-textos h3 {
    font-size: 36px;
  }

  .rompe-textos p {
    font-size: 16px;
    margin-bottom: 18px;
  }

  .rompe-boton {
    font-size: 18px;
    padding: 10px 20px;
    margin-left: 0;
    margin-top: 25px;
  }

  .muesart-invita {
    padding: 60px 20px;
  }

  .imagenes-izquierda img,
  .imagenes-derecha img {
    width: 100%;
    max-width: 280px;
  }

  .texto-centro {
    margin-top: 0;
    max-width: 100%;
    text-align: center;
    padding: 0 10px;
  }

  .texto-centro h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .texto-centro p {
    font-size: 16px;
  }

  .footer {
    padding: 20px 15px;
    font-size: 13px;
  }

  .footer-links,
  .footer-social,
  .footer-copy {
    margin-bottom: 10px;
    display: block;
  }

  .footer-link {
    display: block;
    margin: 5px 0;
    font-size: 13px;
  }

  .footer-social a {
    font-size: 18px;
    margin: 0 6px;
  }

  .footer-copy {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .logo img {
    height: 30px;
    margin-left: 10px;
  }

  .titulo-seccion {
    padding: 300px 10px 20px;
  }

  .titulo-seccion h1 {
    font-size: 24px;
  }

  .titulo-seccion h1::after {
    margin: 20px auto 200px;
  }

  .sorprenderas-titulo {
    font-size: 28px;
  }

  .sorprenderas-texto h3 {
    font-size: 18px;
  }

  .sorprenderas-texto p {
    font-size: 14px;
  }

  .experiencias-textos h3 {
    font-size: 28px;
  }

  .experiencias-textos p,
  .experiencias-textos blockquote {
    font-size: 14px;
  }

  .rompe-textos h3 {
    font-size: 30px;
  }

  .rompe-textos p {
    font-size: 14px;
  }

  .rompe-boton {
    font-size: 16px;
    padding: 8px 16px;
  }

  .muesart-invita {
    flex-direction: column;
    align-items: center;
  }

  .muesart-columna {
    width: 100%;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .imagenes-izquierda {
    order: 1;
  }

  .texto-centro {
    order: 2;
    text-align: center;
    padding: 0 15px;
    margin: 40px 0;
  }

  .imagenes-derecha {
    order: 3;
  }

  .imagenes-izquierda img,
  .imagenes-derecha img {
    max-width: 130px;
    width: 100%;
    height: auto;
    margin: 8px;
  }

  .texto-centro h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .texto-centro p {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .texto-centro p:first-of-type::before {
    width: 60%;
    margin: 0 auto 15px auto;
  }

  .footer {
    font-size: 12px;
  }

  .footer-link {
    font-size: 12px;
  }

  .footer-social a {
    font-size: 16px;
  }

  .footer-copy {
    font-size: 11px;
  }
}