/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-y: scroll;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-servicios {
  padding: 30px 50px;
  background-color: #f9f9fb;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  padding: 15px 0;
  z-index: 1000;
  transition: background 0.3s ease;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 60px;
}

.logo-image {
  height: 140px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  margin-top: -20px;
  margin-bottom: -20px;
}

.black-logo-image {
  height: auto;
  width: 300px;
  margin-top: -110px;
  margin-left: -40px;
  margin-right: -40px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 35px;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: opacity 0.3s;
}

.nav-menu a:hover {
  opacity: 0.8;
}

.nav-menu a.active {
  opacity: 1;
  font-weight: 600;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(91, 191, 179, 0.95);
  backdrop-filter: blur(10px);
  min-width: 200px;
  padding: 10px 0;
  list-style: none;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  margin-top: 10px;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
  background-color: rgba(255, 255, 255, 0.15);
  opacity: 1;
}

.dropdown-menu a.active {
  background-color: rgba(255, 255, 255, 0.2);
  font-weight: 600;
}

.language-selector {
  color: white;
  font-size: 13px;
  cursor: pointer;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}

.language-selector::after {
  content: "▾";
  font-size: 10px;
  font-weight: 300;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 3px;
  background-color: white;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.navbar-light .mobile-menu-toggle span {
  background-color: #333;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(10.5px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-10.5px) rotate(-45deg);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
}

.hero-title {
  font-size: 52px;
  font-weight: 600;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.hero-subtitle {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}

.hero-description {
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 35px;
  line-height: 1.8;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 40px;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
}

.btn-primary {
  background-color: #5bbfb3;
  color: white;
}

.btn-primary:hover {
  background-color: #4aaa9f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(91, 191, 179, 0.4);
}

.btn-secondary {
  background-color: #5bbfb3;
  color: white;
}

.btn-secondary:hover {
  background-color: #4aaa9f;
}

.btn-dark {
  background-color: #555;
  color: white;
}

.btn-dark:hover {
  background-color: #333;
}

/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #5bbfb3;
  color: white;
  padding: 14px 22px;
  border-radius: 50px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(91, 191, 179, 0.4);
  z-index: 99999;
  transition: bottom 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  min-width: 210px;
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}

.whatsapp-btn svg {
  order: 2;
  flex-shrink: 0;
}

.whatsapp-btn:hover {
  background-color: #4aaa9f;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(91, 191, 179, 0.5);
}

/* About Section */
.about {
  padding: 100px 0;
  background-color: #f8f8f8;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 80px;
}

.about-text {
  flex: 1;
}

.about-name {
  font-size: 32px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.about-title {
  font-size: 20px;
  font-weight: 400;
  color: #5bbfb3;
  margin-bottom: 25px;
  line-height: 1.6;
}

.about-description {
  font-size: 15px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.about-photo {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about-photo-img {
  width: 120%;
  height: 120%;
  object-fit: cover;
  display: block;
  margin: -10%;
}

/* Services Section */
.services {
  padding: 100px 0;
  background-color: white;
  text-align: center;
}

.section-title {
  font-size: 38px;
  font-weight: 600;
  color: #5bbfb3;
  margin-bottom: 20px;
}

.services-carousel {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-bottom: 40px;
  overflow: hidden;
}

.service-card {
  background-color: #f8f8f8;
  border-radius: 8px;
  overflow: hidden;
  max-width: 900px;
  width: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: none;
  flex-direction: row;
  align-items: stretch;
}

.service-card.active {
  display: flex;
}

.service-image {
  width: 45%;
  min-height: 400px;
  flex-shrink: 0;
  overflow: hidden;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-details {
  width: 55%;
  padding: 50px 40px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-name {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
}

.service-description {
  font-size: 16px;
  color: #666;
  margin-bottom: 25px;
  line-height: 1.8;
}

.service-duration {
  font-size: 15px;
  color: #999;
  margin-bottom: 12px;
  display: block;
}

.service-price {
  font-size: 22px;
  font-weight: 700;
  color: #333;
  display: block;
}

/* Carousel Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 30px 0;
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 8px;
  background-color: #5bbfb3;
  opacity: 0.4;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot:hover {
  opacity: 0.7;
}

.dot.active {
  background-color: #5bbfb3;
  opacity: 1;
  transform: scale(1.15);
}

/* Gift Card Section */
.gift-card {
  padding: 100px 0;
  background-color: #5bbfb3;
  text-align: center;
}

.gift-card-content {
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.gift-card-image {
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: 650px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background-color: #f8f8f8;
  text-align: center;
}

.testimonials-carousel {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.testimonial-card {
  background-color: white;
  border-radius: 8px;
  padding: 35px;
  max-width: 320px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: left;
  position: relative;
}

.quote-icon {
  font-size: 60px;
  color: #5bbfb3;
  line-height: 1;
  margin-bottom: 15px;
  font-family: Georgia, serif;
}

.testimonial-text {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-author {
  font-size: 13px;
  color: #333;
  line-height: 1.6;
}

/* Map Section */
.map-section {
  padding: 0;
}

.map-container {
  width: 100%;
  height: 450px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background-color: #e8f5f3;
  text-align: center;
}

.contact-info {
  margin-bottom: 40px;
}

.contact-item {
  font-size: 15px;
  color: #333;
  margin-bottom: 8px;
}

.contact-item strong {
  font-weight: 600;
}

/* Footer */
.footer {
  background-color: #5bbfb3;
  color: white;
  padding: 50px 0 30px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-logo {
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 160px;
}

.footer-logo-image {
  height: 240px;
  width: auto;
  margin-top: -40px;
  margin-bottom: -40px;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: all 0.3s;
}

.social-icon:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

.footer-info {
  text-align: right;
}

.footer-copyright {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 5px;
}

@media (max-width: 968px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: rgba(91, 191, 179, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 80px 30px 30px;
    gap: 0;
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
  }

  .navbar-light .nav-menu {
    background-color: rgba(255, 255, 255, 0.98);
  }

  .nav-menu.active {
    right: 0;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  }

  .nav-menu li {
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .navbar-light .nav-menu li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .nav-menu a {
    display: block;
    font-size: 15px;
    padding: 5px 0;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background-color: rgba(255, 255, 255, 0.15);
    margin-top: 10px;
    padding: 15px 20px;
    border-radius: 8px;
    display: none;
  }

  .navbar-light .dropdown-menu {
    background-color: rgba(91, 191, 179, 0.1);
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .dropdown-menu li {
    padding: 8px 0;
    border: none;
  }

  .language-selector {
    display: none;
  }

  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .service-card {
    flex-direction: column;
    max-width: 500px;
  }

  .service-image {
    width: 100%;
    min-height: 300px;
  }

  .service-details {
    width: 100%;
    text-align: left;
    padding: 30px;
  }

  .service-details .section-title {
    text-align: center;
  }

  .testimonial-card {
    text-align: center;
  }

  .hero-title {
    font-size: 38px;
  }

  .hero-subtitle {
    font-size: 22px;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .footer-right {
    align-items: center;
  }

  .footer-info {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .about-photo {
    width: 280px;
    height: 280px;
  }

  .gift-card-image {
    max-height: 350px;
  }

  .whatsapp-btn {
    padding: 10px 16px;
    font-size: 12px;
    bottom: 20px;
    right: 20px;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Selection Color */
::selection {
  background-color: #5bbfb3;
  color: white;
}

/* Reservas Section */
.reservas-section {
  padding: 150px 0 100px;
  background-color: #f8f8f8;
  min-height: 60vh;
}

.reservas-title {
  text-align: center;
  font-size: 48px;
  font-weight: 600;
  color: #5bbfb3;
  margin-bottom: 50px;
}

.reservas-form {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  align-items: flex-end;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin-bottom: 8px;
}

.form-select {
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  color: #666;
  background-color: white;
  cursor: pointer;
  transition: border-color 0.3s ease;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
}

.form-input {
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  color: #666;
  background-color: white;
  cursor: pointer;
  transition: border-color 0.3s ease;
  appearance: none;
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
}

.form-input:focus {
  outline: none;
  border-color: #5bbfb3;
}

.form-input::placeholder {
  color: #999;
}

.phone-input-group {
  display: flex;
  gap: 10px;
}

.phone-code {
  width: 110px;
  flex-shrink: 0;
  text-align: center;
  font-weight: 500;
}

.phone-number {
  flex: 1;
}

.form-row-submit {
  justify-content: center;
}

.form-select:focus {
  outline: none;
  border-color: #5bbfb3;
}

.search-btn {
  width: 50px;
  height: 50px;
  background-color: #5bbfb3;
  border: none;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.search-btn:hover {
  background-color: #4aaa9f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(91, 191, 179, 0.4);
}

/* Appointment Details Section */
.appointment-details {
  display: none;
  /* Hidden by default */
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 60px auto 0;
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.appointment-details.visible {
  display: grid;
}

.appointment-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.next-appointment {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e8e8e8;
}

.appointment-date,
.appointment-location {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #333;
}

.appointment-date span {
  font-weight: 600;
}

.appointment-location span {
  color: #666;
}

.therapist-info {
  padding-bottom: 20px;
  border-bottom: 1px solid #e8e8e8;
}

.therapist-info h3 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}

.therapist-name {
  font-size: 15px;
  font-weight: 600;
  color: #5bbfb3;
  margin-bottom: 6px;
}

.therapist-schedule {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
}

.therapist-price {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.payment-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #666;
  cursor: pointer;
}

.payment-option input[type="radio"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #5bbfb3;
}

.available-times h3 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.time-slots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 15px;
}

.time-slot {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: white;
  font-size: 14px;
  font-weight: 500;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
}

.time-slot:hover {
  border-color: #5bbfb3;
  color: #5bbfb3;
}

.time-slot.active {
  background-color: #5bbfb3;
  border-color: #5bbfb3;
  color: white;
}

.available-count {
  font-size: 13px;
  color: #999;
  text-align: center;
}

/* Calendar Section */
.calendar-section {
  display: flex;
  flex-direction: column;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.calendar-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.calendar-nav {
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.calendar-nav:hover {
  color: #5bbfb3;
}

.calendar {
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 20px;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  margin-bottom: 15px;
}

.calendar-weekdays div {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: #999;
  padding: 8px 0;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #666;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.calendar-day:not(.disabled):not(.empty):hover {
  background-color: #f0f0f0;
}

.calendar-day.available {
  color: #333;
  font-weight: 500;
}

.calendar-day.available::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background-color: #5bbfb3;
  border-radius: 50%;
}

.calendar-day.selected {
  background-color: #5bbfb3;
  color: white;
}

.calendar-day.disabled {
  color: #ccc;
  cursor: not-allowed;
}

.calendar-day.empty {
  cursor: default;
}

.reservation-action {
  display: none;
  /* Hidden by default */
  max-width: 1200px;
  margin: 30px auto 0;
  text-align: center;
}

.reservation-action.visible {
  display: block;
}

.btn-reserve {
  background-color: #5bbfb3;
  color: white;
  padding: 16px 60px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.btn-reserve:hover {
  background-color: #4aaa9f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(91, 191, 179, 0.4);
}

@media (max-width: 768px) {
  .reservas-section {
    padding: 120px 0 80px;
  }

  .reservas-title {
    font-size: 36px;
    margin-bottom: 30px;
  }

  .reservas-form {
    padding: 30px 20px;
  }

  .form-row {
    flex-direction: column;
    gap: 15px;
  }

  .search-btn {
    width: 100%;
  }

  .appointment-details {
    grid-template-columns: 1fr;
    padding: 30px 20px;
    gap: 30px;
  }

  .appointment-details.visible {
    display: grid;
  }

  .time-slots {
    grid-template-columns: repeat(3, 1fr);
  }

  .calendar-section {
    order: -1;
  }
}

/* Confirmation Modal */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 10000;
  justify-content: center;
  align-items: center;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background: white;
  border-radius: 12px;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.modal-title {
  font-size: 22px;
  font-weight: 600;
  color: #333;
  margin-bottom: 30px;
  line-height: 1.4;
}

.modal-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.modal-btn {
  padding: 14px 40px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  min-width: 140px;
}

.modal-btn-cancel {
  background-color: white;
  color: #666;
  border: 2px solid #ddd;
}

.modal-btn-cancel:hover {
  background-color: #f5f5f5;
  border-color: #999;
  color: #333;
}

.modal-btn-confirm {
  background-color: #5bbfb3;
  color: white;
}

.modal-btn-confirm:hover {
  background-color: #4aaa9f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(91, 191, 179, 0.4);
}

@media (max-width: 768px) {
  .reservas-section {
    padding: 120px 0 80px;
  }

  .reservas-title {
    font-size: 36px;
    margin-bottom: 30px;
  }

  .reservas-form {
    padding: 30px 20px;
  }

  .form-row {
    flex-direction: column;
    gap: 15px;
  }

  .form-group {
    width: 100%;
  }

  .form-group label {
    width: 100%;
    text-align: left;
  }

  .form-select {
    width: 100%;
  }

  .form-input {
    width: 100%;
  }

  .phone-input-group {
    width: 100%;
  }

  .phone-code {
    width: 110px;
  }

  .search-btn {
    width: 100%;
    height: 50px;
  }

  .appointment-details {
    grid-template-columns: 1fr;
    padding: 30px 20px;
    gap: 30px;
  }

  .appointment-details.visible {
    display: grid;
  }

  .time-slots {
    grid-template-columns: repeat(3, 1fr);
  }

  .calendar-section {
    order: -1;
  }
}

/* About Page */
.navbar-opaque {
  background: rgba(91, 191, 179, 0.95);
  backdrop-filter: blur(10px);
}

.navbar-light {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.navbar-light .nav-menu a {
  color: #333;
}

.navbar-light .nav-menu a:hover {
  color: #5bbfb3;
  opacity: 1;
}

.navbar-light .nav-menu a.active {
  color: #5bbfb3;
}

.navbar-light .language-selector {
  color: #333;
}

.navbar-light .dropdown-menu {
  background-color: rgba(255, 255, 255, 0.98);
}

.navbar-light .dropdown-menu a {
  color: #333;
}

.navbar-light .dropdown-menu a:hover {
  background-color: rgba(91, 191, 179, 0.1);
  color: #5bbfb3;
  opacity: 1;
}

.navbar-light .dropdown-menu a.active {
  background-color: rgba(91, 191, 179, 0.15);
  color: #5bbfb3;
  font-weight: 600;
}

.about-page {
  padding: 120px 0 0;
  background-color: white;
}

.about-main-title {
  text-align: center;
  font-size: 48px;
  font-weight: 600;
  color: #5bbfb3;
  margin-bottom: 60px;
}

.about-intro-section {
  display: flex;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.about-intro-image {
  flex-shrink: 0;
}

.about-intro-photo {
  width: 350px;
  height: 450px;
  border-radius: 20px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.about-intro-text {
  flex: 1;
}

.about-text {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-text:last-of-type {
  margin-bottom: 30px;
}

.about-enfoque-section {
  display: flex;
  gap: 60px;
  align-items: center;
  background-color: #f8f8f8;
  padding: 80px 60px;
  margin-bottom: 0;
  max-width: 100%;
}

.about-enfoque-text {
  flex: 1;
  max-width: 600px;
}

.about-enfoque-title {
  font-size: 38px;
  font-weight: 600;
  color: #5bbfb3;
  margin-bottom: 30px;
}

.about-enfoque-image {
  flex-shrink: 0;
}

.about-enfoque-photo {
  width: 450px;
  height: 350px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.services-about {
  background-color: white;
  padding: 80px 0;
}

.services-about-title {
  text-align: center;
  font-size: 38px;
  font-weight: 600;
  color: #5bbfb3;
  margin-bottom: 40px;
}

.services-about .service-details {
  padding: 40px;
}

.services-about .service-details .section-title {
  display: none;
}

@media (max-width: 968px) {
  .about-page {
    padding: 100px 0 0;
  }

  .about-main-title {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .about-intro-section {
    flex-direction: column;
    gap: 30px;
    padding: 0 20px;
  }

  .about-intro-photo {
    width: 100%;
    max-width: 350px;
    height: auto;
    aspect-ratio: 3/4;
  }

  .about-intro-text {
    text-align: center;
  }

  .about-text {
    font-size: 14px;
  }

  .about-enfoque-section {
    flex-direction: column-reverse;
    padding: 60px 20px;
    gap: 30px;
  }

  .about-enfoque-title {
    font-size: 30px;
    text-align: center;
  }

  .about-enfoque-text {
    text-align: center;
  }

  .about-enfoque-photo {
    width: 100%;
    max-width: 450px;
    height: auto;
  }

  .services-about {
    padding: 60px 0;
  }

  .services-about-title {
    font-size: 30px;
  }
}

/* Tienda Page */
.tienda-hero {
  background: linear-gradient(rgba(76, 112, 94, 0.7), rgba(76, 112, 94, 0.7)),
    url("multimedia/enfoque.jpg");
  background-size: cover;
  background-position: center;
  padding: 150px 0 80px;
  text-align: center;
  color: white;
  min-height: 100vh;
}

.tienda-hero-title {
  font-size: 52px;
  font-weight: 600;
  margin-bottom: 20px;
}

.tienda-hero-subtitle {
  font-size: 18px;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto 60px;
}

/* Productos Section */
.productos-section {
  padding: 80px 0;
  background-color: #f8f8f8;
}

.productos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.producto-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.producto-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.producto-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.producto-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #d4d4d4 0%, #a8a8a8 100%);
}

.producto-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.producto-info {
  padding: 25px;
  text-align: center;
}

.producto-name {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}

.producto-description {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
  min-height: 60px;
}

.producto-duration {
  font-size: 14px;
  color: #999;
  margin-bottom: 8px;
}

.producto-price {
  font-size: 22px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.producto-info .btn {
  width: 100%;
}

/* Método Section */
.metodo-section {
  padding: 80px 0;
  background-color: white;
}

.metodo-title {
  text-align: center;
  font-size: 42px;
  font-weight: 600;
  color: #5bbfb3;
  margin-bottom: 60px;
}

.metodo-content {
  display: flex;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.metodo-image {
  flex-shrink: 0;
}

.metodo-photo {
  width: 300px;
  height: 380px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  background: linear-gradient(135deg, #5bbfb3 0%, #95d5cc 100%);
  padding: 3px;
}

.metodo-text {
  flex: 1;
}

.metodo-subtitle {
  font-size: 28px;
  font-weight: 600;
  color: #5bbfb3;
  margin-bottom: 25px;
}

.metodo-description {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Módulos Section */
.modulos-section {
  padding: 80px 0;
  background-color: #f8f8f8;
  text-align: center;
}

.modulos-title {
  font-size: 42px;
  font-weight: 600;
  color: #5bbfb3;
  margin-bottom: 50px;
}

.modulos-carousel {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.modulo-card {
  display: none;
  max-width: 900px;
  width: 100%;
}

.modulo-card.active {
  display: block;
}

.modulo-content {
  display: flex;
  gap: 40px;
  align-items: center;
  background: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.modulo-image {
  flex-shrink: 0;
  width: 400px;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
}

.modulo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modulo-info {
  flex: 1;
  text-align: left;
}

.modulo-number {
  font-size: 14px;
  font-weight: 600;
  color: #5bbfb3;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.modulo-name {
  font-size: 28px;
  font-weight: 600;
  color: #333;
  margin-bottom: 30px;
  line-height: 1.3;
}

@media (max-width: 968px) {
  .tienda-hero {
    padding: 120px 0 80px;
  }

  .tienda-hero-title {
    font-size: 38px;
  }

  .tienda-hero-subtitle {
    font-size: 16px;
    padding: 0 20px;
    margin-bottom: 40px;
  }

  .productos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0 20px;
  }

  .metodo-content {
    flex-direction: column;
    padding: 0 20px;
    gap: 30px;
  }

  .metodo-photo {
    width: 100%;
    max-width: 350px;
    height: auto;
    aspect-ratio: 3/4;
  }

  .metodo-text {
    text-align: center;
  }

  .metodo-title {
    font-size: 34px;
  }

  .metodo-subtitle {
    font-size: 24px;
  }

  .modulos-title {
    font-size: 34px;
  }

  .modulo-content {
    flex-direction: column;
    padding: 30px 20px;
    gap: 25px;
  }

  .modulo-image {
    width: 100%;
    max-width: 400px;
    height: auto;
  }

  .modulo-info {
    text-align: center;
  }

  .modulo-name {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .productos-grid {
    grid-template-columns: 1fr;
  }

  .tienda-hero-title {
    font-size: 32px;
  }

  .metodo-title {
    font-size: 28px;
  }

  .modulos-title {
    font-size: 28px;
  }
}

/* Servicios Page */
.servicios-page {
  padding: 120px 0 80px;
  background-color: white;
  text-align: center;
}

.servicios-page-title {
  font-size: 48px;
  font-weight: 600;
  color: #5bbfb3;
  margin-bottom: 20px;
}

.servicios-page-subtitle {
  font-size: 22px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.5;
}

.servicios-page-description {
  font-size: 15px;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.8;
}

.btn-chat {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 60px;
}

.servicios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.servicio-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.servicio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.servicio-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.servicio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.servicio-info {
  padding: 25px;
  text-align: center;
}

.servicio-name {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
  min-height: 44px;
}

.servicio-description {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
  min-height: 60px;
}

.servicio-duration {
  font-size: 14px;
  color: #999;
  margin-bottom: 8px;
  display: block;
}

.servicio-price {
  font-size: 22px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  display: block;
}

.servicio-info .btn {
  width: 100%;
}

@media (max-width: 968px) {
  .servicios-page {
    padding: 100px 20px 60px;
  }

  .servicios-page-title {
    font-size: 36px;
  }

  .servicios-page-subtitle {
    font-size: 18px;
  }

  .servicios-page-description {
    font-size: 14px;
  }

  .servicios-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .servicios-page-title {
    font-size: 32px;
  }

  .servicios-page-subtitle {
    font-size: 16px;
  }

  .servicios-grid {
    grid-template-columns: 1fr;
  }
}

/* Reservas Mobile Responsive */
@media (max-width: 768px) {
  .reservas-section {
    padding: 100px 0 60px;
  }

  .reservas-title {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .reservas-form {
    padding: 25px;
    margin: 0 20px;
  }

  .form-row {
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
  }

  .form-group {
    width: 100%;
  }

  .search-btn {
    width: 100%;
    margin-top: 10px;
  }
}

/* Capacitaciones Custom Styles */
.capacitacion-img {
  object-fit: contain !important;
  object-position: center !important;
  background-color: #ffffff;
  padding: 5px; /* Optional spacing */
}



/ *   R e s e r v a s   M o b i l e   R e s p o n s i v e   * /     