/* Color Variables */
:root {
  --primary-color: #21658f;    /* Deep blue */
  --secondary-color: #6bb4d1;  /* Light blue */
  --accent-color: #6bb4d1;     /* Light blue */
  --tertiary-color: #c0a279;   /* Warm gold */
  --tertiary-light: #f5f2ed;   /* Light warm gold */
  --light-bg: #F5F5F5;         /* White smoke */
  --dark-bg: #21658f;          /* Deep blue */
  --text-color: #2C3E50;       /* Dark blue-gray */
  --light-text: #F5F5F5;       /* White smoke */
  --gradient-overlay: linear-gradient(rgba(33, 101, 143, 0.5), rgba(107, 180, 209, 0.5));
  --border-color: rgba(107, 180, 209, 0.2);
  --card-bg: #FFFFFF;
  --hover-color: #6bb4d1;
}

/* Global */
html {
  scroll-behavior: smooth;
}

body { 
  font-family: 'Barlow Semi Condensed', sans-serif; 
  line-height: 1.8;
  color: var(--text-color);
  background-color: var(--light-bg);
}

h1, h2, .section-title { 
  font-family: 'Belleza', serif;
  letter-spacing: 0.1em; 
  text-transform: uppercase; 
  margin-top: 2rem;
  color: var(--primary-color);
}

h2, .section-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}

h2:after, .section-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: var(--tertiary-color);
  opacity: 0.5;
}

.lead { 
  font-size: 1.4rem;
  font-weight: 300;
  font-family: 'Barlow Semi Condensed', sans-serif;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.text-spaced { 
  letter-spacing: .2em; 
}

.bg-tertiary{
  background-color: var(--tertiary-light);
}

/* Top Contact Bar */
.top-bar {
  background: var(--primary-color);
  color: var(--light-text);
  padding: 0.5rem 0;
  font-size: 0.9rem;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1001;
}

.top-bar a {
  color: var(--light-text);
  text-decoration: none;
  transition: all 0.3s ease;
  margin-right: 1.5rem;
}

.top-bar a:hover {
  color: var(--accent-color);
}

.top-bar .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* Language Selector */
.language-selector {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-right: auto;
  padding-left: 1rem;
}

.language-selector a {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.2s;
  padding: 0.2rem;
}

.language-selector a:hover {
  opacity: 0.8;
}

.language-selector a.active {
  opacity: 1;
}

.flag-icon {
  width: 22px;
  height: 15px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.language-selector .separator {
  color: var(--light-text);
  font-size: 1rem;
  margin: 0 0.2rem;
  opacity: 0.7;
  margin-right: 1.5rem;
}

.contact-info {
  display: flex;
  align-items: center;
}

/* Header */
header {
  background: #fff !important;
  position: sticky;
  width: 100%;
  top: 32px;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  padding: 1rem 0;
}

header .logo { 
  max-height: 40px;
  transition: all 0.3s ease;
}

/* Navigation */
.navbar {
  background: #fff !important;
}

.navbar-nav .nav-link {
  color: var(--text-color);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
  font-family: 'Barlow Semi Condensed', sans-serif;
}

.navbar-nav .nav-link:hover {
  color: var(--accent-color);
}

.navbar-toggler {
  border: none;
  padding: 0;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: none;
  position: relative;
  width: 24px;
  height: 2px;
  background-color: var(--text-color);
  display: inline-block;
  vertical-align: middle;
  transition: all 0.3s ease;
}

.navbar-toggler-icon:before,
.navbar-toggler-icon:after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: var(--text-color);
  transition: all 0.3s ease;
}

.navbar-toggler-icon:before {
  top: -8px;
}

.navbar-toggler-icon:after {
  bottom: -8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background-color: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
  bottom: 0;
}

/* Animations */
[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}

/* WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px rgba(0,0,0,0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #128C7E;
  color: white;
  transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .navbar-collapse {
    background: var(--card-bg);
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-top: 1rem;
  }
  
  .hero {
    height: 80vh;
    padding-top: 140px; /* Ajusta el padding para compensar topbar+header */
  }
  
  .section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  header {
    top: 48px; /* Aumenta el top para dejar espacio al topbar en móvil */
  }
}

@media (max-width: 768px) {
  .top-bar .container {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .language-selector {
    padding-left: 0.5rem;
    gap: 0.1rem;
  }
  .flag-icon {
    width: 20px;
    height: 14px;
  }
  .language-selector .separator {
    margin: 0 0.15rem;
  }
  
  .contact-info {
    flex-direction: column;
    align-items: flex-end;
  }
  
  .contact-info a {
    margin-right: 0;
    margin-bottom: 0.25rem;
  }
}

/* Section specific styles */
.section p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.section .container {
  padding-left: 2rem;
  padding-right: 2rem;
}

@media (max-width: 767px) {
  .section .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* Alyra Feature Section */
.alyra-feature-section {
  width: 100%;
  background: #fff;
  padding: 0;
  margin: 0;
}

.feature-row {
  display: flex;
  min-height: 520px;
  width: 100%;
}

.feature-image {
  flex: 1 1 50%;
  background: url('../img/bg-aqua-alyra.png') center center/cover no-repeat;
  min-height: 400px;
}

.feature-content {
  flex: 1 1 50%;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 4rem 3rem 4rem 3rem;
  position: relative;
}

.feature-header {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 2.5rem;
}

.feature-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.feature-title {
  font-family: 'Belleza', serif;
  color: #7bb7d6;
  font-size: 2.6rem;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-align: right;
  margin-bottom: 2.5rem;
  font-weight: normal;
}

.feature-desc {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: 1.15rem;
  color: var(--text-color);
  max-width: 480px;
  margin-left: auto;
  margin-right: 0;
  text-align: left;
  position: relative;
  line-height: 1.7;
}

.feature-bar {
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--tertiary-color);
  vertical-align: middle;
  margin-right: 10px;
  margin-bottom: 4px;
}

.feature-holistic {
  color: var(--tertiary-color);
  font-weight: 600;
}

.feature-expert {
  color: #4a8b8b;
  font-weight: 600;
}

@media (max-width: 991px) {
  .feature-row {
    flex-direction: column;
    min-height: unset;
  }
  .feature-image, .feature-content {
    flex: 1 1 100%;
    min-height: 220px;
    padding: 2.5rem 1.5rem;
  }
  .feature-content {
    align-items: flex-start;
    padding: 2.5rem 1.5rem;
  }
  .feature-title {
    font-size: 2rem;
    text-align: left;
  }
  .feature-header {
    justify-content: flex-start;
  }
  .feature-desc {
    font-size: 1rem;
    max-width: 100%;
    margin-left: 0;
  }
}

/* Ayuno Feature Section */
.ayuno-feature-section {
  width: 100%;
  background: #fff;
  padding: 0;
  margin: 0;
}

.ayuno-row {
  display: flex;
  min-height: 520px;
  width: 100%;
}

.ayuno-content {
  flex: 1 1 50%;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 4rem 3rem 4rem 3rem;
  position: relative;
}

.ayuno-logo {
  width: 90px;
  margin-bottom: 2.5rem;
  margin-left: 0;
}

.ayuno-title {
  font-family: 'Belleza', serif;
  color: #7bb7d6;
  font-size: 2.4rem;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-align: left;
  margin-bottom: 2.5rem;
  font-weight: normal;
}

.ayuno-desc {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: 1.15rem;
  color: var(--text-color);
  max-width: 520px;
  text-align: left;
  position: relative;
  line-height: 1.7;
}

.ayuno-bar {
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--tertiary-color);
  vertical-align: middle;
  margin-right: 10px;
  margin-bottom: 4px;
}

.ayuno-highlight-blue {
  color: #3498db;
  font-weight: 600;
}

.ayuno-highlight-brown {
  color: var(--tertiary-color);
  font-weight: 600;
}

.ayuno-image-bg {
  flex: 1 1 50%;
  background: url('../img/alyra-bg-3.png') center center/cover no-repeat;
  min-height: 400px;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.ayuno-icon-cafe {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin: 2rem 2.5rem 0 0;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}

@media (max-width: 991px) {
  .ayuno-row {
    flex-direction: column-reverse;
    min-height: unset;
  }
  .ayuno-image-bg, .ayuno-content {
    flex: 1 1 100%;
    min-height: 220px;
    padding: 2.5rem 1.5rem;
  }
  .ayuno-content {
    align-items: flex-start;
    padding: 2.5rem 1.5rem;
  }
  .ayuno-title {
    font-size: 2rem;
    text-align: left;
  }
  .ayuno-logo {
    width: 60px;
    margin-bottom: 1.5rem;
  }
  .ayuno-desc {
    font-size: 1rem;
    max-width: 100%;
  }
  .ayuno-icon-cafe {
    width: 36px;
    height: 36px;
    margin: 1rem 1.5rem 0 0;
  }
}

/* Modelo Terapéutico Integral Feature Section */
.modelo-feature-section {
  width: 100%;
  padding: 0;
  margin: 0;
}

.modelo-row {
  display: flex;
  min-height: 520px;
  width: 100%;
}

.modelo-content {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 4rem 3rem 4rem 3rem;
  position: relative;
}

.modelo-logo {
  width: 60px;
  margin-bottom: 2.5rem;
  margin-left: 0;
}

.modelo-title {
  font-family: 'Belleza', serif;
  color: #7bb7d6;
  font-size: 2.4rem;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-align: left;
  margin-bottom: 2.5rem;
  font-weight: normal;
}

.modelo-desc {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: 1.15rem;
  color: var(--text-color);
  max-width: 520px;
  text-align: left;
  position: relative;
  line-height: 1.7;
}

.modelo-image-img {
  flex: 1 1 50%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 2rem 2rem 2rem;
}

.modelo-ciclo-img {
  max-width: 100%;
  max-height: 480px;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}

@media (max-width: 991px) {
  .modelo-row {
    flex-direction: column-reverse;
    min-height: unset;
  }
  .modelo-image-img, .modelo-content {
    flex: 1 1 100%;
    min-height: 220px;
    padding: 2.5rem 1.5rem;
  }
  .modelo-content {
    align-items: flex-start;
    padding: 2.5rem 1.5rem;
  }
  .modelo-title {
    font-size: 2rem;
    text-align: left;
  }
  .modelo-logo {
    width: 40px;
    margin-bottom: 1.5rem;
  }
  .modelo-desc {
    font-size: 1rem;
    max-width: 100%;
  }
  .modelo-ciclo-img {
    max-width: 100%;
    max-height: 260px;
  }
}

/* Cronograma General Table */
.cronograma-table {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
  background: var(--card-bg);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.cronograma-table th {
  background: #236080;
  color: #fff;
  text-align: center;
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 18px 8px;
  border: none;
}

.cronograma-table .cronograma-subhead th {
  background: #757575;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  padding: 10px 8px;
}

.cronograma-table td {
  text-align: center;
  vertical-align: middle;
  padding: 16px 8px;
  border: none;
  background: #f8f9fa;
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: 1.05rem;
  color: #444;
}

.cronograma-table .bg-blue {
  background: #7bb7d6 !important;
  color: #fff !important;
  font-weight: 500;
}

.cronograma-table .icon-col {
  background: #f8f9fa;
  color: #236080;
  font-size: 1.7rem;
  width: 48px;
  text-align: center;
  vertical-align: middle;
  border: none;
}

.cronograma-table tfoot td {
  background: #7bb7d6;
  color: #fff;
  font-size: 1.2rem;
  font-family: 'Barlow Semi Condensed', sans-serif;
  text-align: center;
  border: none;
  padding: 18px 8px;
}

.cronograma-table tbody td:not(.bg-blue):not(.icon-col) {
  background: var(--tertiary-light);
  border: 3px solid #fff;
}

@media (max-width: 991px) {
  .cronograma-table th, .cronograma-table td {
    font-size: 0.95rem;
    padding: 10px 4px;
  }
  .cronograma-table .icon-col {
    font-size: 1.2rem;
    width: 32px;
  }
  .cronograma-table tfoot td {
    font-size: 1rem;
    padding: 12px 4px;
  }
}

/* Responsive Table Scroll */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.cronograma-table {
  min-width: 900px;
}

@media (max-width: 991px) {
  .cronograma-table {
    min-width: 700px;
  }
}

/* Unifica títulos principales */
.section-title,
.modelo-title {
  font-family: 'Belleza', serif;
  font-size: 2.4rem;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-align: left;
  margin-bottom: 2.5rem;
  font-weight: normal;
  position: relative;
  padding-bottom: 1rem;
}

@media (max-width: 991px) {
  .section-title,
  .modelo-title {
    font-size: 2rem;
    text-align: left;
    margin-bottom: 1.5rem;
  }
  .section-title:after,
  .modelo-title:after {
    width: 50px;
  }
}

/* Beneficios Feature Section - Igual a Destacada Alyra */
.beneficios-feature-section {
  width: 100%;
  background: #fff;
  padding: 0;
  margin: 0;
}

.beneficios-row {
  display: flex;
  min-height: 520px;
  width: 100%;
}

.beneficios-image {
  flex: 1 1 50%;
  background: url('../img/alyra-bg-trigo.png') center center/cover no-repeat;
  min-height: 400px;
}

.beneficios-content {
  flex: 1 1 50%;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  padding: 4rem 3rem 4rem 3rem;
  position: relative;
}

.beneficios-header {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 2.5rem;
}

.beneficios-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.beneficios-title {
  font-family: 'Belleza', serif;
  color: #7bb7d6;
  font-size: 2.6rem;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-align: right;
  margin-bottom: 2.5rem;
  font-weight: normal;
}

.beneficios-list {
  width: 100%;
  margin-left: auto;
  margin-right: 0;
  text-align: left;
}

@media (max-width: 991px) {
  .beneficios-row {
    flex-direction: column;
    min-height: unset;
  }
  .beneficios-image, .beneficios-content {
    flex: 1 1 100%;
    min-height: 220px;
    padding: 2.5rem 1.5rem;
  }
  .beneficios-content {
    align-items: flex-start;
    padding: 2.5rem 1.5rem;
  }
  .beneficios-title {
    font-size: 2rem;
    text-align: left;
  }
  .beneficios-header {
    justify-content: flex-start;
  }
  .beneficios-list {
    max-width: 100%;
    margin-left: 0;
  }
}

@keyframes heroZoomOut {
  0% {
    background-size: 120%;
  }
  100% {
    background-size: cover;
  }
}

.hero {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--gradient-overlay);
  color: var(--light-text);
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
  height: 100vh;
  display: flex;
  align-items: center;
  margin-top: 0;
  padding-top: 120px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
  background: url('../img/hero-retiro-aliyra.png') center center/cover no-repeat fixed;
  will-change: transform;
  transform: scale(1.2);
  animation: heroZoomOutImg 2.5s cubic-bezier(0.4,0,0.2,1) 1;
  animation-fill-mode: forwards;
}

@keyframes heroZoomOutImg {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: var(--light-text);
}

.hero .btn-reserva { 
  background: var(--secondary-color);
  color: var(--light-text);
  border: none;
  padding: 15px 30px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero .btn-reserva:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.list-group-item:hover {
  background: var(--tertiary-light) !important;
  cursor: pointer;
}

.section {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
}

@media (max-width: 991px) {
  .section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

footer {
  background: var(--dark-bg);
  color: var(--light-text);
  padding: 3rem 0;
  border-top: 4px solid var(--tertiary-color);
  text-align: center;
}

footer a {
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

footer a:hover {
  color: var(--hover-color);
}

/* Cards */
.card-pricing {
  border: none;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  overflow: hidden;
  background: var(--card-bg);
  border-top: 4px solid var(--tertiary-color);
  margin-bottom: 2rem;
}

.card-pricing:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.card-pricing .card-body {
  text-align: center;
  padding: 2rem;
}

.card-pricing .card-title {
  font-family: 'Belleza', serif;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.card-pricing .display-6 {
  color: var(--tertiary-color);
  font-weight: 600;
  font-family: 'Barlow Semi Condensed', sans-serif;
}

/* Botón de reserva en cards */
.btn-reserva {
  background: var(--secondary-color);
  color: var(--light-text);
  border: none;
  padding: 15px 30px;
  font-weight: 500;
  border-radius: 30px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  margin-top: 1.5rem;
}

.btn-reserva:hover {
  background: var(--accent-color);
  color: var(--light-text);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.accesibilidad-box {
  background: var(--tertiary-light);
  border-radius: 18px;
  padding: 2rem 1.5rem;
  margin: 0 auto;
  max-width: 700px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  text-align: center;
}

.accesibilidad-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.accesibilidad-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
}

.acces-chip {
  display: inline-flex;
  align-items: center;
  background: #e3e6e1;
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 500;
  border-radius: 20px;
  padding: 0.5rem 1.2rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  transition: background 0.2s;
}

.acces-chip i {
  color: var(--secondary-color);
  font-size: 1.1em;
  margin-right: 0.4em;
}

.acces-chip:hover {
  background: var(--accent-color);
  color: #fff;
}

@media (max-width: 600px) {
  .accesibilidad-box {
    padding: 1.2rem 0.5rem;
  }
  .acces-chip {
    font-size: 0.95rem;
    padding: 0.4rem 0.8rem;
  }
}

.experiencia-section {
  background: var(--tertiary-light);
}

.experiencia-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  width: 100%;
  margin: 0 auto;
}

.experiencia-gallery > a {
  display: block;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  background: #fff;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  position: relative;
}

.experiencia-gallery > a:hover img {
  transform: scale(1.08);
}

.experiencia-gallery > a:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.16);
  z-index: 2;
}

.experiencia-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
}

@media (max-width: 600px) {
  .experiencia-gallery {
    gap: 1rem;
  }
  .experiencia-img img {
    height: 140px;
  }
}

.servicios-row {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.servicios-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1rem;
  flex: 1 1 45%;
}

.servicios-gallery img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  background: #fff;
  transition: transform 0.3s, box-shadow 0.3s;
}

.servicios-gallery img:hover {
  transform: scale(1.07);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.servicios-content {
  flex: 1 1 55%;
  min-width: 320px;
}

.servicios-gallery-title {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: 1.2rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: left;
  letter-spacing: 0.04em;
}

.servicios-incluidos-title {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: 2rem;
  color: var(--primary-color);
  font-weight: 700;
  margin-top: 3rem !important;
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
}

@media (max-width: 991px) {
  .servicios-row {
    flex-direction: column;
    gap: 2rem;
    align-items: stretch;
  }
  .servicios-gallery {
    max-width: 100%;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 0.7rem;
    margin-bottom: 1.5rem;
  }
  .servicios-gallery img {
    height: 110px;
  }
}

@media (max-width: 600px) {
  .servicios-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 0.5rem;
  }
  .servicios-gallery img {
    height: 80px;
  }
}

.card-pricing .card-img-top {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  background: #f5f5f5;
}

@media (max-width: 600px) {
  .card-pricing .card-img-top {
    height: 140px;
  }
}

/* Fechas Feature Section (como Beneficios) */
.fechas-feature-section {
  width: 100%;
  background: #fff;
  padding: 0;
  margin: 0;
}

.fechas-row {
  display: flex;
  min-height: 420px;
  width: 100%;
}

.fechas-image {
  flex: 1 1 50%;
  background: url('../img/alyra-bg-5.png') center center/cover no-repeat;
  min-height: 320px;
}

.fechas-content {
  flex: 1 1 50%;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  padding: 4rem 7rem 4rem 1rem;
  position: relative;
}

.fechas-title {
  font-family: 'Belleza', serif;
  color: #7bb7d6;
  font-size: 2.3rem;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-align: right;
  margin-bottom: 2.2rem;
  font-weight: normal;
}

.fechas-chips {
  width: 100%;
  max-width: 420px;
  margin-left: auto;
  margin-right: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0;
  list-style: none;
}

.fechas-chip {
  display: flex;
  align-items: center;
  background: var(--tertiary-light);
  color: var(--primary-color);
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 18px;
  padding: 0.7rem 1.3rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  transition: background 0.2s;
  border: 1px solid #e3e6e1;
}

.fechas-chip i {
  color: var(--secondary-color);
  font-size: 1.1em;
  margin-right: 0.7em;
}

.fechas-condiciones {
  font-size: 1.1rem;
  color: var(--text-color);
  background: #f8f9fa;
  border-radius: 12px;
  padding: 1.1rem 1.5rem;
  margin-left: auto;
  margin-right: 0;
  max-width: 420px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.03);
}

@media (max-width: 991px) {
  .fechas-row {
    flex-direction: column;
    min-height: unset;
  }
  .fechas-image, .fechas-content {
    flex: 1 1 100%;
    min-height: 180px;
    padding: 2.5rem 1.5rem;
  }
  .fechas-content {
    align-items: flex-start;
    padding: 2.5rem 1.5rem;
  }
  .fechas-title {
    font-size: 1.5rem;
    text-align: left;
  }
  .fechas-chips, .fechas-condiciones {
    max-width: 100%;
    margin-left: 0;
  }
}

/* Banco Feature Section (como Fechas, invertido) */
.banco-feature-section {
  width: 100%;
  background: #fff;
  padding: 0;
  margin: 0;
}

.banco-row {
  display: flex;
  min-height: 340px;
  width: 100%;
}

.banco-content {
  flex: 1 1 50%;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 4rem 1rem 4rem 7rem;
  position: relative;
}

.banco-title {
  font-family: 'Belleza', serif;
  color: #7bb7d6;
  font-size: 2.3rem;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-align: left;
  margin-bottom: 2.2rem;
  font-weight: normal;
}

.banco-list {
  width: 100%;
  max-width: 420px;
  margin-right: auto;
  margin-left: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding: 0;
  list-style: none;
}

.banco-item {
  display: flex;
  align-items: center;
  background: var(--tertiary-light);
  color: var(--primary-color);
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 18px;
  padding: 0.7rem 1.3rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  transition: background 0.2s;
  border: 1px solid #e3e6e1;
}

.banco-item i {
  color: var(--secondary-color);
  font-size: 1.1em;
  margin-right: 0.7em;
}

.banco-image {
  flex: 1 1 50%;
  background: url('../img/alyra-bg-mujer.png') center center/cover no-repeat;
  min-height: 320px;
}

@media (max-width: 991px) {
  .banco-row {
    flex-direction: column;
    min-height: unset;
  }
  .banco-image, .banco-content {
    flex: 1 1 100%;
    min-height: 180px;
    padding: 2.5rem 1.5rem;
  }
  .banco-content {
    align-items: flex-start;
    padding: 2.5rem 1.5rem;
  }
  .banco-title {
    font-size: 1.5rem;
    text-align: left;
  }
  .banco-list {
    max-width: 100%;
    margin-right: 0;
  }
}

/* Fuentes científicas chips */
.fuentes-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}
.fuente-chip {
  display: inline-flex;
  align-items: center;
  background: var(--tertiary-light);
  color: var(--primary-color);
  font-size: 1.05rem;
  font-weight: 500;
  border-radius: 18px;
  padding: 0.8rem 1.4rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  border: 1px solid #e3e6e1;
  transition: background 0.2s, color 0.2s;
  margin-bottom: 0.5rem;
  cursor: pointer;
}
.fuente-chip:hover {
  background: var(--accent-color);
  color: #fff;
}
@media (max-width: 600px) {
  .fuentes-chips {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0.7rem;
    justify-content: flex-start;
    padding-bottom: 0.5rem;
  }
  .fuente-chip {
    font-size: 0.95rem;
    padding: 0.6rem 1rem;
    min-width: 260px;
    white-space: nowrap;
  }
}

/* Footer contact destacado */
.footer-contact {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
}
.footer-link {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.2s;
  font-size: 1.25rem;
}
.footer-link:hover {
  color: var(--hover-color);
}
.footer-sep {
  color: var(--tertiary-color);
  font-size: 1.3rem;
  margin: 0 0.7rem;
}
.footer-copyright {
  font-size: 0.95rem;
  color: #b0b0b0;
  margin-top: 0.5rem;
}

/* Reviews Carousel Styles */
.review-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  margin: 0 1rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(192, 162, 121, 0.1);
  transition: all 0.3s ease;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.review-header {
  margin-bottom: 1rem;
}

.review-author {
  font-family: 'Belleza', serif;
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
  font-weight: normal;
}

.review-verified {
  color: var(--secondary-color);
  font-size: 0.85rem;
  font-weight: 400;
  font-family: 'Barlow Semi Condensed', sans-serif;
}

.review-title {
  color: var(--tertiary-color);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0;
  font-family: 'Barlow Semi Condensed', sans-serif;
}

.review-content {
  flex-grow: 1;
}

.review-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-color);
  font-family: 'Barlow Semi Condensed', sans-serif;
  margin-bottom: 0;
  font-style: italic;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 50%;
  border: none;
  opacity: 0.9;
  transition: all 0.3s ease;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: var(--secondary-color);
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.carousel-control-prev {
  left: -25px;
}

.carousel-control-next {
  right: -25px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.carousel-indicators {
  bottom: -40px;
  gap: 8px;
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--tertiary-color);
  opacity: 0.5;
  transition: all 0.3s ease;
  border: none;
  margin: 0 4px;
}

.carousel-indicators button.active {
  background-color: var(--primary-color);
  opacity: 1;
  transform: scale(1.2);
}

.carousel-indicators button:hover {
  opacity: 0.8;
  transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .review-card {
    padding: 1.5rem 1.2rem;
    margin: 0 0.5rem;
    min-height: 240px;
  }
  
  .review-author {
    font-size: 1.1rem;
  }
  
  .review-title {
    font-size: 0.9rem;
  }
  
  .review-content p {
    font-size: 0.95rem;
  }
  
  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
    height: 40px;
  }
  
  .carousel-control-prev {
    left: -20px;
  }
  
  .carousel-control-next {
    right: -20px;
  }
}

@media (max-width: 576px) {
  .review-card {
    padding: 1.2rem 1rem;
    margin: 0 0.25rem;
    min-height: 200px;
  }
  
  .review-author {
    font-size: 1rem;
  }
  
  .review-title {
    font-size: 0.85rem;
  }
  
  .review-content p {
    font-size: 0.9rem;
  }
  
  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }
} 