:root {
  --primario: #21837e;
  --secundario: #8c7660;
  --acento: #f1c196;
  --fondo: #f6f7fb;
  --claro: #fff;
  --oscuro: #29312e;
  --menu-bg: #fff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background: var(--fondo);
  color: var(--oscuro);
  font-family: 'Open Sans', Arial, sans-serif;
}

/* Contenedor del header para sticky */
#header-include {
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Barra de navegación */
.navbar {
  width: 100vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 3%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.navbar .nav-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.27em;
  font-weight: 700;
  color: var(--primario);
  letter-spacing: 1px;
}

.navbar img {
  height: 46px;
  width: auto;
  border-radius: 11px;
  box-shadow: 0 2px 5px #11665d30;
  background: #fff;
}

.navbar nav {
  display: flex;
  gap: 10px;
}

.navbar nav a {
  color: var(--oscuro);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.06em;
  transition: color 0.18s;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  margin: 0 12px;
}

.navbar nav a:hover {
  color: var(--primario);
  border-bottom: 2px solid var(--primario);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  width: 36px;
  height: 36px;
  margin-left: 12px;
  position: relative;
}

.menu-toggle span {
  height: 4px;
  width: 28px;
  background: var(--primario);
  margin: 5px 0;
  border-radius: 2px;
  display: block;
  transition: all 0.3s;
}

@media (max-width: 700px) {
  .navbar {
    padding: 12px 3vw;
  }

  .navbar nav {
    position: absolute;
    right: 0;
    top: 60px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: flex-end;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    z-index: 100;
  }

  /* Estilos adicionales para debugging del menú móvil */
@media (max-width: 700px) {
  .navbar nav {
    position: absolute !important;
    right: 0 !important;
    top: 60px !important;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px) !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    padding: 0 !important;
    border-radius: 15px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.3s ease, padding 0.3s ease !important;
    z-index: 100 !important;
  }

  .navbar nav.active {
    max-height: 300px !important;
    padding: 20px !important;
    background: rgba(255, 255, 255, 0.98) !important;
  }

  .navbar nav a {
    display: block !important;
    margin: 12px 18px !important;
    border-bottom: 2px solid transparent !important;
    font-size: 1.07em !important;
    color: var(--oscuro) !important;
  }

  .menu-toggle {
    display: flex !important;
  }
}

  .navbar nav a {
    margin: 12px 18px;
    border-bottom: 2px solid transparent;
    font-size: 1.07em;
  }

  .menu-toggle {
    display: flex;
  }
}

.hero {
  background: url('../images/fotoOrigenesHlc-2.jpg') center/cover no-repeat;
  padding: 70px 3vw 50px 3vw;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 60px;
  margin-bottom: 0cap;
  min-height: 100vh;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.70);
  z-index: 1;
  pointer-events: none;
}

.hero .left,
.hero .right {
  position: relative;
  z-index: 2;
}

.hero .left {
  flex: 1;
  min-width: 300px;
  max-width: 410px;
  text-align: right;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero .left img {
  width: 210px;
  max-width: 92vw;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 12px 36px #21837e33;
  margin-bottom: 13px;
}

.hero .right {
  flex: 1.43;
  min-width: 310px;
  max-width: 550px;
  color: var(--primario);
  padding-top: 12px;
}

.hero h1 {
  font-family: 'Montserrat', arial;
  font-size: 2.25em;
  margin: 0 0 8px 0;
  font-weight: 800;
  color: var(--oscuro);
}

.hero p {
  font-size: 1.18em;
  color: var(--secundario);
  margin-bottom: 19px;
  margin-top: 0;
}

.cta-btn {
  background: var(--primario);
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 7px;
  font-weight: 700;
  font-size: 1.1em;
  margin-top: 18px;
  transition: background 0.19s;
  cursor: pointer;
  margin-left: 3px;
  box-shadow: 0 2px 13px #21837e23;
}

.cta-btn:hover {
  background: #166058;
}

/* Quitar subrayado de botones que son enlaces */
.cta-btn {
  text-decoration: none;
}

.main-video-section {
  width: 100%;
  display: flex;
  justify-content: center;
  background: transparent;
  padding: 0 0 40px 0;
}

.main-video-section .video-wrap {
  width: 100%;
  max-width: 640px;
  box-shadow: 0 7px 28px #21837e30;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}

.main-video-section iframe {
  width: 100%;
  height: 350px;
  border: none;
  display: block;
}

@media (max-width: 730px) {
  .hero {
    flex-direction: column;
    gap: 19px;
    min-height: 310px;
    padding-bottom: 29px;
  }

  .hero .left img {
    width: 120px;
  }

  .main-video-section iframe {
    height: 220px;
  }
}

@media (max-width: 570px) {
  .hero .left img {
    width: 99vw;
    max-width: 96vw;
  }

  .contact-section {
    padding: 18px 3vw;
  }

  .testimonial {
    min-width: 90vw;
    max-width: 99vw;
  }

  .service-card {
    max-width: 99vw;
  }

  .main-video-section .video-wrap {
    max-width: 99vw;
  }

  .main-video-section iframe {
    height: 44vw;
    min-height: 155px;
  }

  .main-video-section video {
    height: 44vw;
    min-height: 155px;
  }

}

section {
  padding: 54px 0 24px;
}

.section-title {
  font-family: 'Montserrat', Arial;
  font-size: 1.53em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 11px;
  letter-spacing: 1px;
  color: var(--primario);
}

.divider {
  display: block;
  width: 55px;
  border-top: 3px solid var(--acento);
  margin: 11px auto 33px auto;
}

.services-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  padding: 0 4vw;
}

.service-card {
  background: var(--claro);
  border-radius: 15px;
  box-shadow: 0 3px 13px #21837e14;
  border-top: 3px solid var(--primario);
  padding: 30px 26px;
  text-align: center;
  transition: box-shadow 0.22s;
  max-width: 350px;
  min-width: 270px;
  flex: 1;
  margin-bottom: 17px;
}

.service-icon {
  font-size: 2.2em;
  margin-bottom: 14px;
  color: var(--acento);
}

.service-title {
  font-family: 'Montserrat', Arial;
  font-weight: 700;
  font-size: 1.11em;
  color: var(--primario);
  margin-bottom: 6px;
}

.service-desc {
  font-size: 1em;
  color: #344;
}

.service-card:hover {
  box-shadow: 0 7px 27px #21837e34;
}

.testimonials-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
  margin-bottom: 17px;
  padding: 0 2vw;
}

.testimonial {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 9px #21837e18;
  border-left: 5px solid var(--acento);
  padding: 20px 18px;
  font-size: 1.07em;
  min-width: 230px;
  max-width: 350px;
  color: var(--secundario);
}

.testimonial .name {
  margin-top: 13px;
  font-weight: bold;
  color: var(--primario);
}

.contact-section {
  background: var(--primario);
  color: white;
  border-radius: 22px;
  max-width: 600px;
  margin: 30px auto 10px auto;
  padding: 37px 24px;
  box-shadow: 0 8px 36px #21837e33;
  text-align: center;
}

.contact-section h2 {
  margin: 0 0 17px 0;
}

form {
  display: grid;
  gap: 15px;
  margin: 15px 0 0 0;
}

input,
textarea {
  border: none;
  border-radius: 7px;
  padding: 13px;
  font-size: 1em;
  background: #e5faf2;
  width: 100%;
  box-shadow: 0 2px 9px #21837e0a;
  margin-bottom: 6px;
  color: #233;
}

input:focus,
textarea:focus {
  outline: 2px solid #166058;
}

textarea {
  resize: vertical;
  min-height: 60px;
  max-height: 180px;
}

.contact-section .submit-btn {
  background: #8c7660;
  color: white;
  font-weight: bold;
  font-size: 1.06em;
  border: none;
  border-radius: 8px;
  padding: 12px 0;
  cursor: pointer;
  margin-top: 6px;
  transition: background 0.14s;
}

.contact-section .submit-btn:hover {
  background: #b1917e;
}

footer {
  background: var(--oscuro);
  color: white;
  text-align: center;
  padding: 28px 2vw 13px 2vw;
  font-size: 1.13em;
  margin-top: 22px;
}

.footer-socials a {
  color: var(--primario);
  text-decoration: none;
  font-weight: bold;
  margin: 0 17px;
  font-size: 1.2em;
  transition: color 0.16s;
}

.footer-socials a:hover {
  color: #fff;
}

@media (max-width: 1100px) {
  .services-wrap {
    flex-direction: column;
    gap: 13px;
    align-items: center;
  }
}

@media (max-width: 820px) {
  .navbar {
    padding: 12px 2vw;
  }
}

/* --- Estilos para el Banner de Evento --- */
.promo-banner {
  background: var(--secundario);
  /* Color de fondo contrastante */
  color: var(--claro);
  padding: 40px 3vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  text-align: center;
  margin-bottom: 50px;
}

.promo-banner .promo-text {
  max-width: 480px;
  text-align: left;
}

.promo-banner h2 {
  font-family: 'Montserrat', arial;
  font-size: 2em;
  font-weight: 800;
  margin: 0 0 8px 0;
  color: var(--acento);
}

.promo-banner p {
  font-size: 1.15em;
  margin-bottom: 25px;
}

.promo-banner .cta-promo {
  background: var(--acento);
  color: var(--oscuro);
  border: none;
  padding: 12px 30px;
  border-radius: 7px;
  font-weight: 700;
  font-size: 1.05em;
  transition: background 0.19s;
  cursor: pointer;
  box-shadow: 0 2px 13px #00000021;
  text-decoration: none;
  display: inline-block;
}

.promo-banner .cta-promo:hover {
  background: #f6e0c6;
}

.promo-banner img {
  max-width: 90vw;
  width: 280px;
  border-radius: 12px;
  box-shadow: 0 10px 25px #00000030;
}

@media (max-width: 730px) {
  .promo-banner {
    flex-direction: column;
  }

  .promo-banner .promo-text {
    text-align: center;
    max-width: 100%;
  }
}

.main-video-section video {
  width: 100%;
  height: 350px;
  /* o el alto que prefieras */
  object-fit: cover;
  /* mantiene proporción sin bordes negros */
  display: block;
  background-color: #000;
  /* opcional, mejora estética antes de cargar */
}

/* Estilos específicos para página Plan 10 Días */
.plan-hero {
  background: linear-gradient(135deg, var(--primario), var(--secundario));
  color: white;
  padding: 80px 3vw 60px 3vw;
  text-align: center;
  position: relative;
}

.plan-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/assets/images/10dias.jpg') center/cover no-repeat;
  opacity: 0.2;
  z-index: 0;
}

.plan-hero .content {
  position: relative;
  z-index: 1;
}

/* Nuevo hero moderno con imagen a la derecha */
.plan-hero .hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3vw;
}

.plan-hero .hero-left {
  flex: 1;
  max-width: 600px;
  text-align: left;
}

.plan-hero .hero-right {
  flex: 1;
  max-width: 500px;
  text-align: right;
}

.plan-hero .hero-right img {
  width: 100%;
  max-width: 450px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.plan-hero .hero-right img:hover {
  transform: scale(1.05);
}

.plan-hero h1 {
  font-family: 'Montserrat', Arial;
  font-size: 2.5em;
  margin: 0 0 20px 0;
  font-weight: 800;
  color: white;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.plan-hero p {
  font-size: 1.3em;
  margin-bottom: 30px;
  line-height: 1.6;
  color: rgba(255,255,255,0.95);
}

.plan-hero .cta-btn {
  background: var(--acento);
  color: var(--oscuro);
  border: none;
  padding: 18px 50px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.2em;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  text-decoration: none;
  display: inline-block;
}

.plan-hero .cta-btn:hover {
  background: #f6e0c6;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

/* Responsive para móvil */
@media (max-width: 768px) {
  .plan-hero .hero-content {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  
  .plan-hero .hero-left,
  .plan-hero .hero-right {
    max-width: 100%;
    text-align: center;
  }
  
  .plan-hero h1 {
    font-size: 2em;
  }
  
  .plan-hero p {
    font-size: 1.1em;
  }
  
  .plan-hero .cta-btn {
    font-size: 1.1em;
    padding: 15px 40px;
  }
}

.plan-hero h1 {
  font-family: 'Montserrat', Arial;
  font-size: 2.5em;
  margin: 0 0 20px 0;
  font-weight: 800;
}

.plan-hero p {
  font-size: 1.3em;
  max-width: 600px;
  margin: 0 auto 30px auto;
  line-height: 1.6;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 60px 3vw;
  background: white;
}

.benefit-card {
  text-align: center;
  padding: 30px 20px;
  border-radius: 15px;
  background: var(--fondo);
  box-shadow: 0 3px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-card .icon {
  font-size: 3em;
  margin-bottom: 20px;
  color: var(--primario);
}

.benefit-card h3 {
  font-family: 'Montserrat', Arial;
  font-size: 1.3em;
  color: var(--primario);
  margin-bottom: 15px;
}

.benefit-card p {
  color: var(--secundario);
  line-height: 1.6;
}

.schedule-section {
  background: var(--fondo);
  padding: 60px 3vw;
}

.schedule-timeline {
  max-width: 800px;
  margin: 0 auto;
}

.day-item {
  background: white;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  border-left: 5px solid var(--primario);
}

.day-item h3 {
  color: var(--primario);
  font-family: 'Montserrat', Arial;
  margin-bottom: 10px;
}

.day-item ul {
  margin: 0;
  padding-left: 20px;
}

.day-item li {
  margin-bottom: 8px;
  color: var(--secundario);
}

.pricing-section {
  background: white;
  padding: 60px 3vw;
  text-align: center;
}

.pricing-card {
  max-width: 500px;
  margin: 0 auto;
  background: var(--primario);
  color: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.pricing-card h3 {
  font-family: 'Montserrat', Arial;
  font-size: 2em;
  margin-bottom: 20px;
}

.price {
  font-size: 3em;
  font-weight: bold;
  margin-bottom: 10px;
}

.price span {
  font-size: 0.4em;
  font-weight: normal;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.cta-section {
  background: var(--secundario);
  padding: 60px 3vw;
  text-align: center;
  color: white;
}

.cta-section h2 {
  font-family: 'Montserrat', Arial;
  font-size: 2em;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-large {
  background: var(--acento);
  color: var(--oscuro);
  border: none;
  padding: 20px 50px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.2em;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  text-decoration: none;
  display: inline-block;
}

.cta-large:hover {
  background: #f6e0c6;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
  .plan-hero h1 {
    font-size: 2em;
  }
  
  .plan-hero p {
    font-size: 1.1em;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    padding: 40px 3vw;
  }
  
  .schedule-section,
  .pricing-section,
  .cta-section {
    padding: 40px 3vw;
  }
  
  .pricing-card {
    padding: 30px 20px;
  }
  
  .price {
    font-size: 2.5em;
  }
}
