/* ===== RESET ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Poppins', sans-serif;
  color: #fff;
  background-color: #0b1f2a;
  scroll-behavior: smooth;
}
html {
  scroll-behavior: smooth;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 4rem;
  z-index: 1000;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  background: rgba(10, 134, 132, 0.12);
  backdrop-filter: blur(25px) saturate(180%);
  box-shadow: 0 8px 32px rgba(10, 134, 132, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  flex-shrink: 0;
  min-width: 150px;
}

.logo img {
  height: 35px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.logo span span {
  color: #0a8684;
}

.navbar nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.navbar ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.navbar a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.navbar a:hover {
  color: #0a8684;
}

.btn-contacto {
  background: #0a8684;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
  flex-shrink: 0;
  min-width: 150px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(10, 134, 132, 0.3);
}

#btnContacto:hover {
  background: #08706e;
  color: #fff;
}

.menu-toggle {
  display: none;
  font-size: 1.6rem;
  background: none;
  border: none;
  color: white;
}

/* ===== HERO ===== */
.hero {
  height: 100vh;
  background: url('../img/Fondo.webp') no-repeat center center/cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 45, 75, 0.3);
}

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

.hero h1 {
  font-size: 4.2rem;
  font-weight: 800;
  line-height: 1.2;
}

.hero h1 span {
  color: #0a8684;
  font-style: italic;
}

.hero p {
  margin: 1.5rem 0;
  font-size: 1.1rem;
  color: #ffffff;
  line-height: 1.8;
}

.hero p br + span {
  color: #e0f2f1;
  font-weight: 600;
}

.btn-primary {
  background: #0a8684;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: #08706e;
}

.fade-up {
  opacity: 0;
  transform: translateY(15px);
  animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== SECCIÓN DE ESTADÍSTICAS ===== */
.stats-section {
  background-color: #1a1a1a;
  padding: 5rem 2rem;
  text-align: center;
}

.stats-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 4rem;
  font-weight: 800;
  color: #0a8684;
  margin: 0;
  line-height: 1;
}

.stat-number::after {
  content: '+';
}

.stat-label {
  font-size: 1rem;
  color: #fff;
  margin-top: 0.5rem;
  font-weight: 400;
}

.stats-description {
  max-width: 800px;
  margin: 0 auto;
  color: #ccc;
  font-size: 1rem;
  line-height: 1.6;
}

/* ===== SECCIÓN SOBRE NOSOTROS ===== */
.about-section {
  background: linear-gradient(180deg, #0d7b7a 0%, #0a8684 100%);
  padding: 5rem 2rem;
  color: #fff;
}

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

.about-header {
  text-align: center;
  margin-bottom: 4rem;
}

.about-subtitle {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 1rem;
}

.about-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-description {
  font-size: 1.1rem;
  color: #e0f2f1;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.about-image {
  width: 100%;
}

.about-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 15px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.about-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-card {
  background: rgba(13, 123, 122, 0.5);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.card-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon svg {
  color: #fff;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

.card-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #e0f2f1;
  margin: 0;
}

/* ===== SECCIÓN DE BENEFICIOS ===== */
.benefits-section {
  background-color: #1a1a1a;
  padding: 5rem 2rem;
  color: #fff;
}

.benefits-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.benefits-subtitle {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: #0a8684;
  margin-bottom: 1rem;
}

.benefits-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 4rem;
  line-height: 1.2;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.benefit-card {
  background: linear-gradient(135deg, rgba(13, 59, 58, 0.8) 0%, rgba(10, 25, 25, 0.9) 100%);
  border: 1px solid rgba(10, 134, 132, 0.3);
  border-radius: 15px;
  padding: 2.5rem;
  text-align: left;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-color: rgba(10, 134, 132, 0.6);
  background: linear-gradient(135deg, rgba(22, 99, 97, 0.8) 0%, rgba(10, 25, 25, 0.9) 100%);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background: rgba(10, 134, 132, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.benefit-icon:hover {
  background: #0d7b7a;
}

.benefit-icon svg {
  color: #0a8684;
  transition: color 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  background: #0a8684;
  transform: scale(1.1);
}

.benefit-card:hover .benefit-icon svg {
  color: #fff;
}

.benefit-number {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 5rem;
  font-weight: 900;
  color: rgba(10, 134, 132, 0.1);
  line-height: 1;
}

.benefit-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.benefit-title::before {
  content: attr(data-number);
  color: #0a8684;
  font-size: 1.4rem;
  font-weight: 700;
  margin-right: 0.5rem;
}

.benefit-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #b0b0b0;
  margin: 0;
}

/* ===== SECCIÓN DE EQUIPO ===== */
.team-section {
  background: linear-gradient(180deg, #0d7b7a 0%, #0a8684 100%);
  padding: 5rem 2rem;
  color: #fff;
}

.team-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.team-subtitle {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 1rem;
}

.team-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 4rem;
  line-height: 1.2;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.team-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
}

.team-image {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
  border-radius: 20px;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.1);
}

.team-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 60%, transparent 100%);
  padding: 2rem 1.5rem 1.5rem;
  text-align: left;
}

.team-name {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: #fff;
}

.team-role {
  font-size: 0.9rem;
  color: #b0b0b0;
  margin: 0;
}

.team-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 134, 132, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 20px;
}

.team-card:hover .team-hover-overlay {
  opacity: 1;
}

.view-profile {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.8rem 1.5rem;
  border: 2px solid #fff;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.view-profile:hover {
  background: #fff;
  color: #0a8684;
}

@media (min-width: 769px) {
  .programs-scroll-indicators,
  .programs-scroll-hint,
  .pricing-scroll-hint,
  .pricing-scroll-indicators,
  .team-scroll-indicators,
  .scroll-hint,
  .team-scroll-hint,
  .footer-whatsapp-cta {
    display: none;
  }
}

/* ===== MODAL ===== */
.trainer-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  overflow-y: auto;
  animation: fadeIn 0.3s ease;
}

.trainer-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-content {
  background: #fff;
  border-radius: 20px;
  max-width: 800px;
  width: 100%;
  position: relative;
  animation: slideUp 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}

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

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: #0a8684;
  transform: rotate(90deg);
}

.modal-header {
  background: linear-gradient(135deg, #0d7b7a 0%, #0a8684 100%);
  padding: 3rem 2.5rem 2rem;
  display: flex;
  gap: 2rem;
  align-items: center;
  border-radius: 20px 20px 0 0;
  color: #fff;
}

.modal-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid rgba(255, 255, 255, 0.3);
}

.modal-info h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.modal-role {
  font-size: 1.1rem;
  color: #e0f2f1;
  margin-bottom: 1rem;
}

.modal-experience {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.modal-experience span {
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 20px;
}

.modal-body {
  padding: 2.5rem;
  color: #333;
}

.modal-desktop-content {
  display: block;
}

.modal-mobile-content {
  display: none;
}

.modal-section {
  margin-bottom: 2.5rem;
}

.modal-section h3 {
  font-size: 1.4rem;
  color: #0a8684;
  margin-bottom: 1rem;
  font-weight: 700;
}

.modal-section p {
  line-height: 1.8;
  color: #555;
  margin-bottom: 1rem;
}

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

.modal-section ul li {
  padding: 0.5rem 0;
  color: #555;
  position: relative;
  padding-left: 1.5rem;
}

.modal-section ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0a8684;
  font-weight: bold;
}

.specialty-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.specialty-tags span {
  background: #e0f2f1;
  color: #0a8684;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.testimonial {
  background: #f5f5f5;
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  border-left: 4px solid #0a8684;
}

.testimonial p {
  font-style: italic;
  color: #333;
  margin-bottom: 0.5rem;
}

.testimonial span {
  color: #0a8684;
  font-weight: 600;
  font-size: 0.9rem;
}

.modal-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  padding-top: 1rem;
}

.btn-modal-primary {
  background: #0a8684;
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-modal-primary:hover {
  background: #08706e;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(10, 134, 132, 0.3);
}

.btn-modal-secondary {
  background: transparent;
  color: #0a8684;
  padding: 0.9rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid #0a8684;
  transition: all 0.3s ease;
}

.btn-modal-secondary:hover {
  background: #0a8684;
  color: #fff;
}

/* ===== SECCIÓN DE PRECIOS ===== */

/* PLAN GOLD PREMIUM  */
.pricing-card.gold {
  position: relative;
  background: linear-gradient(135deg, 
    rgba(255, 217, 0, 0.075) 0%, 
    rgba(13, 59, 58, 0.9) 50%,
    rgba(10, 25, 25, 0.95) 100%);
}

/* Borde animado */
.pricing-card.gold::before {
  content: '';
  position: absolute;
  inset: -2px;

  background-size: 300% 300%;
  animation: borderGlow 4s ease infinite;
  border-radius: 17px; /* +2px del inset */
  z-index: 0; /* cambiado de -1 */
  opacity: 0.8;
  pointer-events: none; /* evita interferir con hover */
}

@keyframes borderGlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Glow en hover */
.pricing-card.gold:hover {
    transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(10, 134, 132, 0.3);
}

/* Badge premium */
.premium-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #000;
  padding: 0.4rem 1.2rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 800;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}



.pricing-section {
  background-color: #1a1a1a;
  padding: 5rem 2rem;
  color: #fff;
}

.pricing-container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.pricing-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.pricing-subtitle {
  font-size: 1.1rem;
  color: #b0b0b0;
  margin-bottom: 2rem;
}

/* Pricing Tabs */
.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid #1f1f1f;
  padding-bottom: 0;
}

.pricing-tab-btn {
  background: transparent;
  border: none;
  color: #888;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 1rem 2rem;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  letter-spacing: 0.5px;
}

.pricing-tab-btn:hover {
  color: #14b8a6;
}

.pricing-tab-btn.active {
  color: #14b8a6;
  border-bottom-color: #14b8a6;
}

/* Tab Content */
.pricing-tab-content {
  display: none;
  animation: fadeIn 0.4s ease-in;
}

.pricing-tab-content.active {
  display: block;
}

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

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  background: #252525;
  border: 1px solid #333;
  border-radius: 15px;
  padding: 2rem 1.5rem;
  text-align: left;
  transition: transform 0.3s ease, border-color 0.3s ease;
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto auto 1fr;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: #0a8684;
  background: linear-gradient(135deg, #252525 0%, #2a2a2a 100%);
  box-shadow: 0 10px 40px rgba(10, 134, 132, 0.2);
}

.pricing-card.popular {
  border: 2px solid #0a8684;
  background: linear-gradient(135deg, rgba(13, 59, 58, 0.3) 0%, rgba(10, 25, 25, 0.4) 100%);
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(10, 134, 132, 0.4);
  position: relative;
  z-index: 2;
}

.pricing-card.popular:hover {
  transform: scale(1.08);
  box-shadow: 0 25px 70px rgba(10, 134, 132, 0.6);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #0a8684;
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(10, 134, 132, 0.5);
}

.plan-header {
  height: 90px;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.plan-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fff;
}

.plan-description {
  font-size: 0.85rem;
  color: #888;
  line-height: 1.5;
}

.plan-price {
  height: 60px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}

.price {
  font-size: 2.5rem;
  font-weight: 600;
  color: #fff;
  transition: transform 0.3s ease;
}

.pricing-card:hover .price {
  transform: scale(1.05);
  color: #0a8684;
}

.period {
  font-size: 1rem;
  color: #888;
  margin-left: 0.3rem;
}

.btn-new {
  display: inline-block;
  width: 100%;
  padding: 0.8rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background: #0a8684;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  margin-bottom: 1.5rem;
}

.btn-plan-popular {
  background: #0a8684;
}

.btn-plan-popular:hover {
  background: #08706e;
}

.btn-planes {
  display: inline-block;
  width: 100%;
  padding: 0.8rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background: #333;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  margin-bottom: 1.5rem;
}

.btn-planes:hover {
  background: #444;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(51, 51, 51, 0.4);
}

.plan-features {
  border-top: 1px solid #333;
  padding-top: 1.5rem;
}

.features-title {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 1rem;
  font-weight: 600;
}

.plan-features ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.plan-features ul li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.85rem;
  color: #b0b0b0;
}

.plan-features ul li svg {
  color: #0a8684;
  flex-shrink: 0;
}

.pricing-card.popular .plan-features ul li svg {
  color: #0a8684;
}

/* ===== SECCIÓN DE PROGRAMAS ===== */
.programs-section {
  background: linear-gradient(180deg, #0d7b7a 0%, #0a8684 100%);
  padding: 5rem 2rem;
  color: #fff;
}

.programs-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.programs-subtitle {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 1rem;
}

.programs-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 4rem;
  line-height: 1.2;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.program-card {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
 /* -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;*/
}

.program-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.program-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.program-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.program-card:hover .program-image img {
  transform: scale(1.1);
}

.program-content {
  padding: 2rem 1.5rem;
  text-align: left;
}

.program-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: #fff;
}

.program-description {
  font-size: 0.95rem;
  color: #e0f2f1;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.program-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: gap 0.3s ease;
}

.program-link:hover {
  gap: 1rem;
}

.program-link svg {
  transition: transform 0.3s ease;
}

.program-link:hover svg {
  transform: translateX(5px);
}

.btn-all-programs {
  display: inline-block;
  background: #fff;
  color: #0a8684;
  padding: 0.9rem 2.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.btn-all-programs:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* ===== SECCIÓN DE CONTACTO ===== */
.contact-section {
  background: linear-gradient(135deg, #020e0d 0%, #0a8684 100%);
  padding: 5rem 2rem;
  color: #fff;
}

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

.contact-header {
  text-align: center;
  margin-bottom: 4rem;
}

.contact-subtitle {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 1rem;
}

.contact-title {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  max-width: 800px;
  margin: 0 auto;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.contact-info {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.info-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.info-description {
  color: #e0f2f1;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.detail-item {
  display: flex;
  gap: 1rem;
  align-items: start;
}

.detail-icon {
  width: 45px;
  height: 45px;
  min-width: 45px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.detail-icon svg {
  color: #fff;
}

.detail-label {
  font-size: 0.85rem;
  color: #b0e0dd;
  margin-bottom: 0.3rem;
}

.detail-value {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.detail-value:hover {
  color: #e0f2f1;
}

.contact-forms {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.form-tabs {
  display: flex;
  background: #f5f5f5;
  border-bottom: 1px solid #e0e0e0;
}

.tab-btn {
  flex: 1;
  padding: 1.2rem 1.5rem;
  background: transparent;
  border: none;
  color: #666;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-bottom: 3px solid transparent;
}

.tab-btn svg {
  width: 20px;
  height: 20px;
}

.tab-btn.active {
  background: #fff;
  color: #0a8684;
  border-bottom-color: #0a8684;
}

.tab-btn:hover {
  background: #fff;
}

.form-content {
  display: none;
  padding: 2.5rem;
}

.form-content.active {
  display: block;
}

.form-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5rem;
}

.form-description {
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.9rem 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: 'Poppins', sans-serif;
  transition: border-color 0.3s ease;
  background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0a8684;
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.5rem;
}

.btn-submit {
  background: #0a8684;
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-submit:hover {
  background: #08706e;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(10, 134, 132, 0.3);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-whatsapp:hover {
  background: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

/* ===== FOOTER ===== */
.footer {
  background: #1a1a1a;
  color: #b0b0b0;
  padding: 4rem 2rem 2rem;
}

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

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo img {
  height: 40px;
  width: auto;
}

.footer-description {
  color: #888;
  line-height: 1.7;
  font-size: 0.95rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

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

.footer-social a:hover {
  background: #0a8684;
  color: #fff;
  transform: translateY(-3px);
}

.footer-heading {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  color: #888;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #0a8684;
}

.footer-contact {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact li {
  display: flex;
  align-items: start;
  gap: 0.8rem;
  color: #888;
  font-size: 0.95rem;
}

.footer-contact a {
  display: flex;
  align-items: start;
  gap: 0.8rem;
  color: #888;
  font-size: 0.95rem;
  text-decoration: none;
}

.footer-contact svg {
  color: #0a8684;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  color: #666;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #0a8684;
}

/* ===== SECCIÓN DE GALERÍA ===== */
.gallery-section {
  background: #1a1a1a;
  padding: 0;
  color: #fff;
}

.gallery-container {
  max-width: 100%;
  margin: 0 auto;
}

.gallery-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 134, 132, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.hero-video-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 2rem;
}

.gallery-subtitle {
  font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #fff;
    margin-bottom: 0.8rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.gallery-title {
    font-size: 2.5rem;           /* Grande pero controlado */
    font-weight: 900;            /* Muy bold */
    line-height: 1;            /* Compacto */
    letter-spacing: -1px;        /* Letras juntas */
    margin-bottom: 1rem;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.9);  /* Sombra fuerte */
    max-width: 320px;            /* Limita ancho para controlar breaks */
    margin-left: auto;
    margin-right: auto;
}

.gallery-description {
    font-size: 0.88rem;
    font-weight: 400;
    line-height: 1.5;
    color: #e0f2f1;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.btn-gallery-hero {
  display: inline-block;
  background: #fff;
  color: #0a8684;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.btn-gallery-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  background: #0a8684;
  color: #fff;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 3rem 2rem 2rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.8rem 2rem;
  background: #252525;
  border: 2px solid #333;
  border-radius: 50px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.filter-btn:hover {
  border-color: #0a8684;
  color: #0a8684;
}

.filter-btn.active {
  background: #0a8684;
  border-color: #0a8684;
  color: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  aspect-ratio: 1;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
  z-index: 10;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(10, 134, 132, 0.9) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-icon {
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-icon {
  transform: scale(1.2);
}

.gallery-icon svg {
  color: #fff;
}

.gallery-icon.video-icon {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.gallery-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: #fff;
}

.gallery-info p {
  font-size: 0.9rem;
  color: #e0f2f1;
}

.gallery-cta {
  text-align: center;
  padding: 3rem 2rem 5rem;
}

.btn-gallery-instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: linear-gradient(135deg, #833AB4, #FD1D1D, #F77737);
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(131, 58, 180, 0.4);
}

.btn-gallery-instagram:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(131, 58, 180, 0.6);
}

.gallery-item {
  animation: fadeIn 0.5s ease;
}

.gallery-item.hidden {
  display: none;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ===== SEPARADOR DECORATIVO ===== */
.separator-section {
  background: #1a1a1a;
  padding: 4rem 2rem;
  position: relative;
}

.separator-line {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(10, 134, 132, 0.2) 20%,
    rgba(10, 134, 132, 0.6) 50%,
    rgba(10, 134, 132, 0.2) 80%,
    transparent 100%
  );
}

.separator-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: #1a1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid rgba(10, 134, 132, 0.4);
  transition: all 0.4s ease;
  box-shadow: 0 0 20px rgba(10, 134, 132, 0.3);
}

.separator-icon:hover {
  transform: translate(-50%, -50%) scale(1.1) rotate(5deg);
  border-color: #0a8684;
  box-shadow: 0 0 30px rgba(10, 134, 132, 0.6);
}

.separator-icon svg {
  color: #0a8684;
  transition: all 0.3s ease;
}

.separator-icon:hover svg {
  color: #fff;
  transform: scale(1.1);
}

/* ===== OVERLAY (solo móvil) ===== */
.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.menu-overlay.active {
  display: block;
  opacity: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .plan-header {
    height: auto;
  }
  
  .plan-price {
    height: auto;
  }
}

@media (max-width: 968px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-image img {
    height: 350px;
  }

  .about-title {
    font-size: 2.2rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .benefits-title {
    font-size: 2.2rem;
  }

  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .programs-title {
    font-size: 2.2rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {

/* FOOTER - Optimizado para conversión */
  .footer {
    padding: 2.5rem 1.5rem 2rem;
  }

  .footer-container {
    max-width: 100%;
  }

  /* Una sola columna en móvil */
  .footer-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;  /* Cambia de 2rem a 1.5rem */
    margin-bottom: 1.5rem;  /* Cambia de 2rem a 1.5rem */
  }

/* Logo y descripción */
  .footer-column:first-child {
    text-align: center;
    gap: 1rem;
  }

  .footer-logo {
    display: flex;
    justify-content: center;
  }

  .footer-logo img {
    height: 35px;
  }

  .footer-description {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #888;
    /* Descripción más corta */
    max-width: 280px;
    margin: 0 auto;
  }

  /* CTA DE WHATSAPP - MUY IMPORTANTE */
  .footer-whatsapp-cta {
    background: #0a8684;
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-align: center;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin: 1.5rem auto;
    max-width: 280px;
    text-decoration: none;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(10, 134, 132, 0.4); 
    transition: all 0.3s ease;
  }

  .footer-whatsapp-cta:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  }

  /* Redes sociales MÁS GRANDES y centradas */
  .footer-social {
    justify-content: center;
    gap: 1.2rem;
    margin-top: 1rem;
  }

  .footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.08);
  }

  .footer-social a svg {
    width: 22px;
    height: 22px;
  }

  /* Sección de programas - COMPACTA */
  .footer-column:nth-child(2) {
    text-align: center;
  }

  .footer-heading {
    font-size: 1rem;
    margin-bottom: 0.1rem;
    text-align: center;
  }

  .footer-links {
    align-items: center;
     gap: 0.5rem;
  }

  .footer-links a {
    font-size: 0.88rem;
    padding: 0.4rem 0;
  }

  /* Ocultar algunos links para compactar */
  .footer-links li:nth-child(n+4) {
    display: none; /* Oculta Plan Estándar, Plan Gold si tienes 5+ items */
  }

  /* Sección de contacto - COMPACTA */
  .footer-column:nth-child(3) {
    text-align: center;
  }

  .footer-contact {
    align-items: center;
    gap: 0.7rem;
  }

  .footer-contact li,
  .footer-contact a {
    font-size: 0.88rem;
    justify-content: center;
    color: #b0b0b0;
  }

  .footer-contact svg {
    width: 18px;
    height: 18px;
    color: #0a8684;
  }

  /* Footer bottom */
  .footer-bottom {
    padding-top: 1.5rem;
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
  }

  .footer-bottom p {
    font-size: 0.85rem;
  }

  .footer-legal {
    gap: 1.5rem;
    justify-content: center;
  }

  .footer-legal a {
    font-size: 0.85rem;
  }


  /* ===== HINT DE AYUDA CON FLECHAS ===== */
  .pricing-scroll-hint {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.2rem;     /* Más cerca de los dots */
    margin-bottom: 0;       /* Agregamos esto */
    font-weight: 500;
    animation: fadeInOut 2.5s ease-in-out infinite;
  }

  .hint-arrow-left,
  .hint-arrow-right {
    font-size: 1.2rem;
    font-weight: bold;
    color: #0a8684;
  }

  .hint-arrow-left {
    animation: slideLeft 1.5s ease-in-out infinite;
  }

  .hint-arrow-right {
    animation: slideRight 1.5s ease-in-out infinite;
  }

  @keyframes fadeInOut {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
  }

  @keyframes slideLeft {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-5px); }
  }

  @keyframes slideRight {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
  }

  /* Ocultar hint después del primer scroll */
  .pricing-scroll-hint.hidden {
    display: none !important;
  }
  .pricing-scroll-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0rem;     /* Más cerca de las cards */      
    padding-bottom: 0;     /* Quitamos padding bottom */
  }

  .pricing-scroll-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .pricing-scroll-dot.active {
    background: #0a8684;
    width: 24px;
    border-radius: 4px;
  }
  .pricing-section {
     padding: 3rem 0 1.5rem;
    position: relative;
  }

  .pricing-container {
    padding: 0 1.5rem;
    position: relative;
  }

  .pricing-title {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    line-height: 1.2;
  }

  .pricing-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  /* Pricing Tabs Mobile */
  .pricing-tabs {
    margin-bottom: 2rem;
    gap: 0.5rem;
  }

  .pricing-tab-btn {
    font-size: 0.95rem;
    padding: 0.8rem 1.2rem;
  }

  /* HORIZONTAL SCROLL */
  .pricing-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 1rem;
    padding: 1rem 0 0.5rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0 -1.5rem;
    padding-left: 0.7rem;
    padding-right: 0;
  }

  .pricing-grid::-webkit-scrollbar {
    display: none;
  }

  /* Gradiente derecha */
  .pricing-grid::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 100%;
    background: linear-gradient(to left, #1a1a1a 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.3s ease;
  }

  .pricing-grid.at-end::after {
    opacity: 0;
  }

  /* Cards normales */
  .pricing-card {
    min-width: 280px;
    max-width: 280px;
    scroll-snap-align: center;
    flex-shrink: 0;
    padding: 1.3rem 1rem;
    transform: scale(1) !important;
  }

  /* Card POPULAR destacada (más grande) */
  .pricing-card.popular {
    min-width: 320px;
    max-width: 320px;
    border: 2px solid #0a8684;
    box-shadow: 0 15px 50px rgba(10, 134, 132, 0.4);
  }

  .pricing-card.popular:hover {
    transform: scale(1) !important;
  }

  .pricing-card:first-child {
    margin-left: 0.5rem;
  }

  .pricing-card:last-child {
    margin-right: 1.5rem;
  }

  /* Ajustes internos */
  .plan-header {
    height: auto;
    margin-bottom: 0.8rem;
  }

  .plan-name {
    font-size: 1.2rem;  /* Un poco más pequeño */
  margin-bottom: 0.3rem;
  }

  .plan-description {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .plan-price {
    height: auto;
    margin-bottom: 0.8rem;
  }

  .price {
    font-size: 2rem;
  }

  .popular-badge {
    font-size: 0.7rem;
    padding: 0.35rem 1rem;
    top: -10px;
  }

  .plan-features {
    padding-top: 0.8rem;  /* Reducimos espacio */
  }

  .features-title {
   font-size: 0.75rem;
  margin-bottom: 0.5rem;  /* Menos espacio */
  }

  .plan-features ul {
     gap: 0.4rem;  /* Items más juntos */
  }

  .plan-features ul li {
    font-size: 0.8rem;
  }

  .plan-features ul li svg {
    width: 16px;
    height: 16px;
  }

  .btn-new,
  .btn-planes {
  padding: 0.7rem;      /* Más compacto */
  font-size: 0.88rem;
  margin-bottom: 0.8rem;  /* Menos espacio */
  }
  .navbar {
    padding: 1rem;
  }
  
  .navbar nav {
    position: static;
    transform: none;
  }
  
  .navbar ul {
    display: none;
    flex-direction: column;
    background: rgba(11, 31, 42, 0.95);
    position: absolute;
    top: 60px;
    right: 0;
    width: 180px;
    padding: 1rem;
    border-radius: 8px;
  }
  
  .navbar ul.active {
    display: flex;
  }
  
  .menu-toggle {
    display: block;
  }

  .hero h1 {
    font-size: 2.2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }

  .stats-container {
    gap: 3rem;
  }
  
  .stat-number {
    font-size: 3rem;
  }
  
  .stats-section {
    padding: 3rem 1.5rem;
  }

  .about-section {
    padding: 3rem 1.5rem;
  }

  .about-header {
    margin-bottom: 2rem;
  }
  
  .about-title {
    font-size: 1.6rem;
    line-height: 1.2;
  }

  .about-description {
    display: none;
  }

  .about-content {
    gap: 2rem;
  }

  .about-image img {
    height: 240px;
  }

  .about-card {
    padding: 1.5rem;
  }
  
  .card-title {
    font-size: 1.2rem;
  }

  .card-text {
    font-size: 0.88rem;
    line-height: 1.5;
  }

  /* BENEFICIOS - Horizontal scroll */
  .benefits-section {
    padding: 3rem 0 4rem;
    position: relative;
  }

  .benefits-container {
    padding: 0 1.5rem;
    position: relative;
  }

  .benefits-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }

  .benefits-subtitle {
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
  }

  .benefits-grid-wrapper {
    position: relative;
    margin: 0 -1.5rem;
  }

  .benefits-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 1.2rem;
    padding: 1rem 1.5rem 1.5rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .benefits-grid::-webkit-scrollbar {
    display: none;
  }

  .benefits-grid::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 100%;
    background: linear-gradient(to left, #1a1a1a 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.3s ease;
  }

  .benefits-grid.at-end::after {
    opacity: 0;
  }

  .benefit-card {
    min-width: 280px;
    max-width: 280px;
    padding: 1.8rem;
    scroll-snap-align: center;
    flex-shrink: 0;
    opacity: 0.6;  /* Opacidad reducida */
    transform: scale(0.95);  /* Ligeramente más pequeña */
    transition: all 0.3s ease;
  }
  .benefit-card.active {
    opacity: 1;  /* Opacidad completa */
    transform: scale(1);  /* Tamaño normal */
    border-color: rgba(10, 134, 132, 0.8);  /* Borde más visible */
    box-shadow: 0 3px 20px rgba(10, 134, 132, 0.5);  /* Sombra fuerte */
    background: linear-gradient(135deg, rgba(22, 99, 97, 0.9) 0%, rgba(10, 25, 25, 0.95) 100%);
  }

  .benefit-card.active .benefit-icon {
    background: #0a8684;  /* Icono destacado */
    transform: scale(1.1);
  }

  .benefit-card.active .benefit-icon svg {
    color: #fff;
  }

  .benefit-card:first-child {
    margin-left: 0.5rem;
  }

  .benefit-card:last-child {
    margin-right: 0.5rem;
  }

  .benefit-number {
    font-size: 3.5rem;
    top: 1.5rem;
    right: 1.5rem;
  }

  .benefit-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 1rem;
  }

  .benefit-icon svg {
    width: 24px;
    height: 24px;
  }

  .benefit-title {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
  }

  .benefit-text {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .scroll-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding-bottom: 0.5rem;
  }

  .scroll-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .scroll-dot.active {
    background: #0a8684;
    width: 24px;
    border-radius: 4px;
  }

  .scroll-hint {
    display: block; /* Forzar para probar */
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.8rem;
    animation: fadeInOut 2s ease-in-out infinite;
  }

  .scroll-hint.hidden {
    display: none;
  }

  /* EQUIPO - Horizontal scroll */
  .team-section {
    padding: 3rem 0 4rem;
    position: relative;
  }

  .team-container {
    padding: 0 1.5rem;
    position: relative;
  }

  .team-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }

  .team-subtitle {
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
  }

  .team-grid-wrapper {
    position: relative;
    margin: 0 -1.5rem;
  }

  .team-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 1.2rem;
    padding: 1rem 1.5rem 1.5rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-bottom: 0;
  }

  .team-grid::-webkit-scrollbar {
    display: none;
  }

  .team-grid::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 100%;
    background: linear-gradient(to left, #0a8684 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.3s ease;
  }

  .team-grid.at-end::after {
    opacity: 0;
  }

  .team-card {
    min-width: 280px;
    max-width: 280px;
    scroll-snap-align: center;
    flex-shrink: 0;
  }

  .team-card:first-child {
    margin-left: 0.5rem;
  }

  .team-card:last-child {
    margin-right: 0.5rem;
  }

  .team-image {
    height: 380px;
  }

  .team-scroll-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding-bottom: 0.5rem;
  }

  .team-scroll-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .team-scroll-dot.active {
    background: #fff;
    width: 24px;
    border-radius: 4px;
  }

  .team-scroll-hint {
    display: flex  !important;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 1rem;
    font-weight: 500;
    animation: fadeInOut 2.5s ease-in-out infinite;
  }

  .hint-arrow-left,
  .hint-arrow-right {
    font-size: 1.3rem;
    font-weight: bold;
    color: #fff;
  }

  .hint-arrow-left {
    animation: slideLeft 1.5s ease-in-out infinite;
  }

  .hint-arrow-right {
    animation: slideRight 1.5s ease-in-out infinite;
  }

  @keyframes slideLeft {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-5px); }
  }

  @keyframes slideRight {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
  }

  .team-scroll-hint.hidden {
    display: none;
  }

  /* MODALES */
  .modal-desktop-content {
    display: none;
  }
  
  .modal-mobile-content {
    display: block;
  }
  
  .modal-content {
    margin: 0;
    max-height: 100vh;
    border-radius: 20px 20px 0 0;
  }

  .modal-header {
    flex-direction: row;
    text-align: left;
    padding: 1.5rem;
    gap: 1rem;
    align-items: center;
  }

  .modal-photo {
    width: 80px;
    height: 80px;
    border: 3px solid rgba(255, 255, 255, 0.3);
  }

  .modal-info h2 {
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
  }

  .modal-role {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
  }

  .modal-experience {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }

  .modal-experience span {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
  }

  .modal-body {
    padding: 1.5rem;
  }

  .modal-mobile-content .modal-section:first-child {
    margin-bottom: 1.5rem;
  }

  .modal-mobile-content .modal-section:first-child h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
  }

  .modal-mobile-content .modal-section:first-child p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
  }

  .collapsible-section {
    background: #f8f8f8;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid #e0e0e0;
  }

  .collapsible-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.2rem;
    cursor: pointer;
    user-select: none;
    transition: background 0.2s ease;
  }

  .collapsible-header:active {
    background: #f0f0f0;
  }

  .collapsible-header h3 {
    font-size: 1.1rem;
    color: #0a8684;
    margin: 0;
    font-weight: 700;
  }

  .collapsible-icon {
    color: #0a8684;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    font-weight: bold;
  }

  .collapsible-header.active .collapsible-icon {
    transform: rotate(180deg);
  }

  .collapsible-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .collapsible-content.active {
    max-height: 1000px;
  }

  .collapsible-body {
    padding: 0 1.2rem 1.2rem;
  }

  .collapsible-body ul {
    padding-left: 0;
  }

  .collapsible-body ul li {
    font-size: 0.88rem;
    padding: 0.4rem 0;
    line-height: 1.5;
  }

  .collapsible-body ul li:before {
    font-size: 0.9rem;
  }

  .collapsible-body .specialty-tags {
    gap: 0.6rem;
  }

  .collapsible-body .specialty-tags span {
    font-size: 0.82rem;
    padding: 0.4rem 0.8rem;
  }

  .collapsible-body .testimonial {
    padding: 1rem;
    margin-bottom: 0.8rem;
    border-radius: 8px;
  }

  .collapsible-body .testimonial p {
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
  }

  .collapsible-body .testimonial span {
    font-size: 0.82rem;
  }

  .modal-actions {
    padding: 1rem 0 0;
    position: sticky;
    bottom: 0;
    background: #fff;
    border-top: 1px solid #e0e0e0;
    margin: 0 -1.5rem;
    padding: 1rem 1.5rem;
  }

  .btn-modal-secondary {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
  }

  .btn-modal-primary,
  .btn-modal-secondary {
    width: 100%;
    text-align: center;
  }

  /* PRECIOS */
  .pricing-section {
    padding: 3rem 1.5rem;
  }

  .pricing-title {
    font-size: 2rem;
  }

  .pricing-subtitle {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pricing-card {
    padding: 2rem;
  }
  
  .plan-header {
    height: auto;
  }
  
  .plan-price {
    height: auto;
  }

  /* PROGRAMAS */
  .programs-section {
    padding: 3rem 1.5rem;
    position: relative;
  }
 .programs-container {
    padding: 0 1.5rem;
    
  }
  .programs-title {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }
 .programs-subtitle {
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
  }

  .programs-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
 .programs-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 1rem;
    padding: 0.8rem 0 0.5rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0 -1.5rem;
    padding-left: 1.5rem;
    padding-right: 0;
    margin-bottom: 0;
  }
  .programs-grid::-webkit-scrollbar {
    display: none;
  }
  /* Gradiente derecha */
  .programs-grid::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 100%;
    background: linear-gradient(to left, #0a8684 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.3s ease;
  }
.program-card.active {
    opacity: 1;
      transform: translateY(-10px);
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3);
    filter: blur(0) brightness(1.1);        /* Nítida y brillante */
    
    position: relative;
    z-index: 10;
    
  }
.program-card.active .program-image {
    overflow: hidden;
  }
  /* Imagen de la card activa */
  .program-card.active .program-image img {
     transform: scale(1.08);                 /* Zoom en imagen */
     filter: brightness(1.15) saturate(1.2); /* Más brillante y saturada */
  }

  /* Título de la card activa */
  .program-card.active .program-title {
    color: #fff;
    text-shadow: 0 3px 15px rgba(10, 134, 132, 0.8);
    transform: translateY(-2px);
    transition: all 0.3s ease;
  }

  /* Link de la card activa */
  .program-card.active .program-link {
    color: #fff;
    font-weight: 700;
  }
  .program-card.active .program-description {
     color: #fff;
    font-weight: 700;
    gap: 0.8rem;
  }
  .program-card.active .program-link svg {
    transform: translateX(3px);
  }
  .programs-grid.at-end::after {
    opacity: 0;
  }
  .program-card {
    min-width: 280px;
    max-width: 280px;
    scroll-snap-align: center;
    flex-shrink: 0;
    opacity: 0.5;                           /* Muy opacas */
    transform: scale(0.88);                 /* Bastante pequeñas */
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);  /* Transición elástica */
    filter: blur(1px) brightness(0.7);      /* Borrosas y oscuras */
  }

  .program-card:first-child {
    margin-left: 0.5rem;
  }

  .program-card:last-child {
    margin-right: 1.5rem;
  }

  .program-image {
    height: 180px;
  }

  .program-content {
    padding: 1.3rem 1rem;
  }

  .program-title {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
  }

  .program-description {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }

  .program-link {
    font-size: 0.9rem;
  }

  /* ===== INDICADORES (DOTS) ===== */
  .programs-scroll-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.8rem;
    padding-bottom: 0;
  }

  .programs-scroll-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .programs-scroll-dot.active {
    background: #fff;
    width: 24px;
    border-radius: 4px;
  }

  /* ===== HINT ===== */
  .programs-scroll-hint {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0.6rem;
    margin-bottom: 0;
    font-weight: 500;
    animation: fadeInOut 2.5s ease-in-out infinite;
  }

  .programs-scroll-hint.hidden {
    display: none !important;
  }

  .program-image {
    height: 200px;
  }

  .program-content {
    padding: 1.5rem;
  }

  /* CONTACTO */
  .contact-section {
    padding: 3rem 1.5rem;
  }

  .contact-title {
    font-size: 2rem;
  }
  /**/
  .contact-subtitle {
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
  }
/* INVERTIR ORDEN: Formulario primero, Info después */
  .contact-content {
    display: flex;
    flex-direction: column-reverse;
    gap: 2rem;
  }

  /* ===== FORMULARIO (arriba en móvil) ===== */
  .contact-forms {
    border-radius: 15px;
    overflow: hidden;
  }

  .form-content {
    padding: 1.5rem;
  }

  .form-title {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
  }

  .form-description {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
  }

  .contact-form {
    gap: 0.9rem;
  }

  .form-group {
    gap: 0.3rem;
  }

  .form-group label {
    font-size: 0.85rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.75rem;
    font-size: 0.9rem;
  }

  .form-group textarea {
    min-height: 100px;
  }

  /* TABS más touch-friendly */
  .form-tabs {
    background: #f5f5f5;
  }

  .tab-btn {
    padding: 1rem 1.2rem;
    font-size: 0.9rem;
    gap: 0.4rem;
  }

  .tab-btn svg {
    width: 20px;
    height: 20px;
  }

  .tab-btn.active {
    border-bottom: 3px solid #0a8684;
  }

  /* Botones */
  .btn-submit,
  .btn-whatsapp {
    padding: 0.9rem 1.2rem;
    font-size: 0.95rem;
  }

  .form-actions {
    gap: 0.8rem;
    margin-top: 0.5rem;
  }

  /* ===== INFO DE CONTACTO (abajo en móvil) ===== */
  .contact-info {
    padding: 1.5rem;
    border-radius: 15px;
  }

  .info-title {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
  }

  .info-description {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }

  .contact-details {
    gap: 1rem;
  }

  .detail-item {
    gap: 0.8rem;
  }

  .detail-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }

  .detail-icon svg {
    width: 20px;
    height: 20px;
  }

  .detail-label {
    font-size: 0.8rem;
  }

  .detail-value {
    font-size: 0.9rem;
  }

  /* Row en formulario */
  .form-row {
    grid-template-columns: 1fr;
  }
  .form-tabs {
    flex-direction: column;
  }

  .tab-btn {
    border-bottom: none;
    border-left: 3px solid transparent;
  }

  .tab-btn.active {
    border-left-color: #0a8684;
    border-bottom: none;
  }

  /* FOOTER */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* GALERÍA */
  .gallery-hero {
    height: 60vh;
    min-height: 400px;
  }

  .gallery-title {
    font-size: 2.5rem;
  }

  .gallery-description {
    font-size: 1rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1rem;
  }

  .gallery-filters {
    gap: 0.5rem;
    padding: 2rem 1rem 1.5rem;
  }

  .filter-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }

  .separator-section {
    padding: 3rem 1.5rem;
  }

  .separator-icon {
    width: 60px;
    height: 60px;
  }

  .separator-icon svg {
    width: 32px;
    height: 32px;
  }

  /* MENÚ MÓVIL */
  .btn-contacto {
    display: none;
  }
  
  .navbar {
    padding: 0.8rem 1rem;
  }
  
  .logo img {
    height: 28px;
  }
  
  .menu-toggle {
    display: block;
    position: relative;
    z-index: 1001;
    font-size: 1.8rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.3rem;
  }
  
  .close-icon {
    font-size: 2rem;
  }
  
  .navbar nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 999;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }
  
  .navbar ul {
    display: flex;
    flex-direction: column;
    background: rgba(11, 31, 42, 0.98);
    backdrop-filter: blur(20px);
    width: 100%;
    height: 100vh;
    padding: 6rem 2rem 2rem;
    gap: 0;
    justify-content: flex-start;
    align-items: center;
    overflow-y: auto;
  }
  
  .navbar nav.active {
    transform: translateX(0);
  }
  
  .navbar ul li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .navbar ul li:last-child {
    border-bottom: none;
  }
  
  .navbar ul a.menu-link {
    display: block;
    padding: 1.2rem 1rem;
    font-size: 1.1rem;
    color: #fff;
    transition: all 0.3s ease;
  }
  
  .navbar ul a.menu-link:hover {
    background: rgba(10, 134, 132, 0.2);
    color: #0a8684;
  }
  
  .menu-cta-item {
    margin-top: 2rem;
    border: none !important;
  }
  
  .menu-cta {
    display: block;
    background: #0a8684;
    color: #fff;
    padding: 1.2rem 2.5rem;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(10, 134, 132, 0.4);
    transition: all 0.3s ease;
  }
  
  .menu-cta:hover {
    background: #08706e;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(10, 134, 132, 0.6);
  }
}

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

@media (max-width: 380px) {
  .logo img {
    height: 24px;
  }
  
  .navbar ul a.menu-link {
    font-size: 1rem;
  }
  
  .menu-cta {
    font-size: 1.1rem;
  }
}

@media (max-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}