/* =========================================
   ARMONÍA - CSS MEJORADO CON AJUSTES V6.1
   ========================================= */

:root {
  /* Colores Armonía */
  --verde-oscuro: #1E6B5C;
  --verde-medio: #2D8A76;
  --verde-claro: #9AB499;
  --verde-pale: #D4E4D8;
  --verde-ultra-light: #EDF5EF;
  
  --gris-oscuro: #2E2E2E;
  --gris-medio: #5A5A5A;
  --gris-claro: #9E9E9E;
  
  --blanco: #FFFFFF;
  --crema: #FAFAF9;
  
  /* Tipografía */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  
  /* Espaciado fluido */
  --space-xs: clamp(0.5rem, 2vw, 0.75rem);
  --space-sm: clamp(0.75rem, 3vw, 1rem);
  --space-md: clamp(1rem, 4vw, 1.5rem);
  --space-lg: clamp(1.5rem, 5vw, 2.5rem);
  --space-xl: clamp(2rem, 6vw, 4rem);
  --space-2xl: clamp(3rem, 8vw, 6rem);
  
  /* Bordes */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 100px;
  
  /* Sombras */
  --shadow-sm: 0 2px 8px rgba(30, 107, 92, 0.08);
  --shadow-md: 0 8px 24px rgba(30, 107, 92, 0.12);
  --shadow-lg: 0 16px 48px rgba(30, 107, 92, 0.16);
  --shadow-xl: 0 20px 60px rgba(30, 107, 92, 0.2);
  
  /* Transiciones */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
}

/* =========================================
   RESET & BASE
   ========================================= */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gris-oscuro);
  background: var(--crema);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--verde-oscuro);
  color: white;
  padding: 1rem 2rem;
  z-index: 10000;
  border-radius: 0 0 var(--radius-sm) 0;
}

.skip-link:focus {
  top: 0;
}

.contenedor {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* =========================================
   HEADER - MÁS ESPACIO LATERAL
   ========================================= */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-md) 0;
  transition: all var(--transition-base);
}

.header__wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.header__container {
  background: var(--blanco);
  border-radius: 100px;
  padding: 1rem 3rem;
  box-shadow: var(--shadow-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
}

.header__logo img {
  height: 40px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.nav__list {
  display: flex;
  gap: var(--space-lg);
  list-style: none;
  align-items: center;
}

.nav__link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gris-oscuro);
  position: relative;
  transition: color var(--transition-fast);
  padding: 0.5rem 0;
}

.nav__link::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--verde-oscuro);
  transition: width var(--transition-base);
}

.nav__link:hover,
.nav__link.active {
  color: var(--verde-oscuro);
}

.nav__link:hover::before,
.nav__link.active::before {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--gris-oscuro);
  transition: all var(--transition-base);
  border-radius: 2px;
}

/* =========================================
   BANNER CON CAPA NEGRA
   ========================================= */

.banner {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-image: url('img/foto_banner.jpg');
  background-size: cover;
  background-position: center;
  padding: calc(80px + var(--space-2xl)) var(--space-lg) var(--space-2xl);
}

.banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

.banner__content {
  text-align: center;
  color: white;
  max-width: 900px;
  position: relative;
  z-index: 1;
}

.banner__label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
  margin-bottom: var(--space-md);
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.2s forwards;
}

.banner__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5.5vw, 3.8rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: var(--space-xl);
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.4s forwards;
}

.banner__buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.6s forwards;
}

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

/* =========================================
   BUTTONS - MISMO ANCHO
   ========================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  min-width: 180px;
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  cursor: pointer;
  border: 1px solid white;
  background: transparent;
  color: white;
}

.btn:hover {
  background: var(--verde-claro);
  border-color: var(--verde-claro);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--primary {
  background: var(--verde-oscuro);
  border-color: var(--verde-oscuro);
  color: white;
}

.btn--primary:hover {
  background: var(--verde-medio);
  border-color: var(--verde-medio);
}

.btn--light {
  background: white;
  border-color: white;
  color: var(--verde-oscuro);
}

.btn--light:hover {
  background: var(--crema);
  transform: translateY(-2px);
}

.btn--calendar {
  margin-top: var(--space-md);
  min-width: 0;
  padding: 0.7rem 1.4rem;
  font-size: 0.9rem;
  gap: 8px;
}

.btn--calendar svg {
  flex-shrink: 0;
}

/* =========================================
   LABELS DE SECCIÓN
   ========================================= */

.section-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--verde-oscuro);
  margin-bottom: var(--space-xs);
}

.section-label--light {
  color: white;
}

/* =========================================
   ACOMPAÑAMIENTO
   ========================================= */

.acompanamiento {
  padding: var(--space-xl) 0;
  background: var(--blanco);
}

.acompanamiento__card {
  background: var(--verde-oscuro);
  color: white;
  padding: var(--space-xl) var(--space-2xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.acompanamiento__image img {
  width: 100%;
  border-radius: var(--radius-md);
}

.acompanamiento__content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.acompanamiento__content p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: var(--space-md);
  opacity: 0.95;
}

.acompanamiento__features {
  list-style: none;
  margin-top: var(--space-md);
}

.acompanamiento__features li {
  padding: 0.5rem 0;
  padding-left: 2rem;
  position: relative;
  font-weight: 600;
  line-height: 1.4;
}

.acompanamiento__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-weight: 700;
  font-size: 1.2rem;
}

/* =========================================
   SERVICIOS
   ========================================= */

.servicios {
  padding: var(--space-2xl) 0;
  background: var(--crema);
}

.servicios__header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--gris-oscuro);
  margin-top: var(--space-sm);
}

.servicios__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-lg);
}

.service-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card__image img {
  transform: scale(1.05);
}

.service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(30, 107, 92, 0.7) 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.service-card:hover .service-card__overlay {
  opacity: 1;
}

.service-card__content {
  padding: var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card__content h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gris-oscuro);
  margin-bottom: var(--space-sm);
}

.service-card__content p {
  color: var(--gris-medio);
  line-height: 1.6;
  margin-bottom: var(--space-md);
  flex: 1;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--verde-oscuro);
  font-weight: 700;
  font-size: 0.95rem;
  transition: gap var(--transition-base);
}

.service-card__link:hover {
  gap: var(--space-sm);
}

/* =========================================
   ENFOQUE - TARJETAS MÁS COMPACTAS
   ========================================= */

.enfoque {
  position: relative;
  min-height: 100vh;
  background-image: url('img/foto_enfoque.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  background-repeat: no-repeat;
  padding: var(--space-2xl) 0;
}

.enfoque::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(30, 107, 92, 0.88);
  z-index: 0;
}

.enfoque__overlay {
  position: relative;
  z-index: 1;
}

.enfoque__header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto var(--space-xl);
  padding-top: var(--space-lg);
  color: white;
  position: relative;
  z-index: 1;
}

.enfoque__header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  margin-bottom: var(--space-sm);
  line-height: 1.2;
}

.enfoque__header p {
  font-size: 1.05rem;
  line-height: 1.6;
  opacity: 0.95;
  max-width: 850px;
  margin: 0 auto;
}

.enfoque__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  position: relative;
  z-index: 1;
}

.enfoque-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md) var(--space-xl);
  transition: all var(--transition-base);
  color: white;
}

.enfoque-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.enfoque-card__number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--verde-claro);
  line-height: 1;
  margin-bottom: var(--space-xs);
  opacity: 0.7;
}

.enfoque-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
  line-height: 1.3;
}

.enfoque-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.9;
}

.enfoque__cta {
  text-align: center;
  position: relative;
  z-index: 1;
  margin-top: var(--space-xl);
  padding-bottom: var(--space-lg);
}

/* =========================================
   PARA QUIÉN
   ========================================= */

.para-quien {
  padding: var(--space-2xl) 0;
  background: var(--blanco);
}

.para-quien__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.para-quien__content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--gris-oscuro);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.para-quien__content > p {
  font-size: 1.05rem;
  color: var(--gris-medio);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.para-quien__box {
  background: var(--verde-claro);
  padding: var(--space-lg) var(--space-xl);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-lg);
}

.para-quien__list {
  list-style: none;
  color: white;
}

.para-quien__list li {
  padding: 0.6rem 0;
  padding-left: 2rem;
  position: relative;
  font-weight: 600;
  line-height: 1.5;
}

.para-quien__list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0.6rem;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1;
}

.para-quien__image {
  height: 100%;
  min-height: 400px;
  background-image: url('img/foto_clientes.jpg');
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* =========================================
   CTA FINAL - OVERLAY NEGRA
   ========================================= */

.cta-final {
  position: relative;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('img/foto_cta_final.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.cta-final__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-final__content {
  text-align: center;
  color: white;
  max-width: 900px;
  padding: var(--space-2xl) var(--space-lg);
  position: relative;
  z-index: 1;
}

.cta-final__content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: var(--space-md);
}

.cta-final__content p {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 600;
}

/* =========================================
   FOOTER
   ========================================= */

.footer {
  background: var(--verde-claro);
  color: white;
  padding: var(--space-2xl) 0;
}

.footer__main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2xl);
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.footer__brand img {
  margin-bottom: var(--space-md);
}

.footer__brand p {
  max-width: 280px;
  line-height: 1.6;
  font-size: 0.95rem;
}

.footer__nav h3,
.footer__contact h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.footer__nav ul,
.footer__contact ul {
  list-style: none;
}

.footer__nav li,
.footer__contact li {
  margin-bottom: var(--space-sm);
}

.footer__nav a,
.footer__contact a {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  color: white;
  transition: all var(--transition-fast);
  font-size: 0.95rem;
}

.footer__nav a:hover,
.footer__contact a:hover {
  opacity: 0.8;
  transform: translateX(4px);
}

.footer__contact svg {
  flex-shrink: 0;
}

/* =========================================
   PÁGINA NOSOTROS
   ========================================= */

.nosotros-intro {
  padding: calc(100px + var(--space-2xl)) 0 var(--space-2xl);
  background: var(--blanco);
}

.nosotros-intro__grid {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: var(--space-xl);
  align-items: center;
}

.nosotros-intro__content .banner__label {
  color: var(--verde-oscuro);
}

.nosotros-intro__content h1 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--verde-oscuro);
  margin-bottom: var(--space-sm);
}

.nosotros-intro__content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--gris-oscuro);
  line-height: 1.2;
  margin-bottom: var(--space-lg);
  max-width: 600px;
}

.nosotros-intro__content p {
  font-size: 1.05rem;
  color: var(--gris-medio);
  line-height: 1.7;
  max-width: 600px;
}

.nosotros-intro__image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.frase-section {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('img/foto_frase.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.frase-section__overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 107, 92, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-2xl) var(--space-lg);
}

.frase-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: white;
  text-align: center;
  line-height: 1.2;
  max-width: 900px;
}

.mirada-section {
  padding: var(--space-2xl) 0;
  background: var(--crema);
}

.mirada-section--colored {
  background: var(--verde-ultra-light);
}

.mirada-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.mirada-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--gris-oscuro);
  margin-top: var(--space-sm);
  margin-bottom: var(--space-md);
}

.mirada-content p {
  font-size: 1.15rem;
  color: var(--gris-medio);
  line-height: 1.8;
}

.diferencia-section {
  padding: var(--space-2xl) 0;
  background: var(--blanco);
  position: relative;
}

.diferencia-section--bg {
  position: relative;
  background-image: url('img/foto_diferencia.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  min-height: 100vh;
  padding: var(--space-2xl) 0;
}

.diferencia-section--bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 0;
}

.diferencia-section__overlay {
  position: relative;
  z-index: 1;
}

.diferencia-intro {
  max-width: 900px;
  margin: 0 auto var(--space-lg);
  text-align: center;
  position: relative;
  z-index: 1;
  color: white;
}

.diferencia-intro h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-top: var(--space-sm);
  margin-bottom: var(--space-md);
}

.diferencia-intro p {
  font-size: 1.15rem;
  line-height: 1.7;
}

.diferencia__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-md);
  position: relative;
  z-index: 1;
}

.diferencia-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: var(--space-lg) var(--space-md);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  color: white;
}

.diferencia-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.15);
}

.diferencia-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}

.diferencia-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.95;
}

.trabajamos-section {
  padding: var(--space-2xl) 0;
  background: var(--verde-ultra-light);
}

.trabajamos__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.trabajamos__image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.trabajamos__content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--gris-oscuro);
  margin-top: var(--space-sm);
  margin-bottom: var(--space-md);
}

.trabajamos__text {
  margin: var(--space-lg) 0;
}

.trabajamos__text p {
  font-size: 1.05rem;
  color: var(--gris-medio);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.btn-inverse {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  min-width: 180px;
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  background: var(--verde-oscuro);
  color: white;
  transition: all var(--transition-base);
  cursor: pointer;
  margin-top: var(--space-md);
}

.btn-inverse:hover {
  background: var(--verde-medio);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.nosotros-cta {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  background-image: url('img/foto_cta_final.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.nosotros-cta--white {
  background: var(--blanco);
  background-image: none;
  background-attachment: inherit;
  padding: var(--space-2xl) 0;
}

.nosotros-cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
}

.nosotros-cta__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  max-width: 900px;
  margin: 0 auto;
}

.nosotros-cta--white .nosotros-cta__content {
  position: static;
  color: var(--gris-oscuro);
}

.nosotros-cta__content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: var(--space-xl);
}

.nosotros-cta__buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 1024px) {
  .acompanamiento__card,
  .para-quien__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .para-quien__grid {
    direction: rtl;
  }
  
  .para-quien__grid > * {
    direction: ltr;
  }
  
  .nosotros-intro__grid,
  .trabajamos__grid {
    grid-template-columns: 1fr;
  }
  
  .trabajamos__grid {
    direction: rtl;
  }
  
  .trabajamos__grid > * {
    direction: ltr;
  }
  
  .footer__main {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer__brand img {
    margin-left: auto;
    margin-right: auto;
  }
  
  .footer__brand p {
    margin: 0 auto;
  }
  
  .promo-masajes__grid,
  .facilidades-content {
    grid-template-columns: 1fr;
  }
  
  .servicios-grid--two {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header__wrapper {
    padding: 0 var(--space-md);
  }
  
  .header__container {
    padding: 1rem 2rem;
    gap: 2rem;
  }
  
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: white;
    box-shadow: var(--shadow-lg);
    padding: 6rem var(--space-lg) var(--space-lg);
    transition: right var(--transition-base);
    z-index: 999;
  }
  
  .nav.active {
    right: 0;
  }
  
  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
  }
  
  .hamburger {
    display: flex;
    z-index: 1001;
  }
  
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
  
  .servicios__grid {
    grid-template-columns: 1fr;
  }
  
  .servicios-grid {
    grid-template-columns: 1fr;
  }
  
  .banner::before {
    background: rgba(0, 0, 0, 0.5);
  }
  
  .enfoque,
  .cta-final,
  .frase-section {
    background-attachment: scroll;
  }
  
  .enfoque__grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   SCROLL ANIMATIONS
   ========================================= */

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   PÁGINA SERVICIOS - AJUSTADA
   ========================================= */

.servicios-banner {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url('img/servicios_banner.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  padding: calc(100px + var(--space-2xl)) var(--space-lg) var(--space-2xl);
}

.servicios-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
}

.servicios-banner--no-overlay .servicios-banner__overlay {
  background: none;
}

.servicios-banner__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  max-width: 900px;
  margin: 0 auto;
}

.servicios-banner--no-overlay .servicios-banner__content {
  position: static;
}

.servicios-banner__content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.servicios-banner__card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: var(--space-xl) var(--space-2xl);
  border-radius: var(--radius-lg);
  max-width: 700px;
  margin: 0 auto;
}

.servicios-banner__card h2 {
  font-size: clamp(1.3rem, 3.5vw, 1.9rem);
  font-weight: 600;
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}

.servicios-banner__card p {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.95;
}

.promo-section {
  background: var(--crema);
  position: relative;
}

.ticker {
  position: absolute;
  top: 50%;
  left: -10%;
  right: -10%;
  background: var(--verde-oscuro);
  color: white;
  padding: var(--space-sm) 0;
  font-weight: 700;
  letter-spacing: 0.1em;
  transform: translateY(-50%) rotate(-3deg);
  z-index: 10;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.ticker--top {
  position: relative;
  top: auto;
  left: 0;
  right: 0;
  transform: none;
  margin: 0;
  z-index: 1;
}

.ticker__content {
  display: flex;
  animation: scroll 30s linear infinite;
  white-space: nowrap;
  gap: 2rem;
}

.ticker__content span {
  flex-shrink: 0;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.promo-masajes__grid {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: var(--space-lg);
  align-items: center;
  padding: var(--space-2xl) 0;
  position: relative;
  z-index: 1;
}

.promo-masajes__image img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.promo-masajes__badge {
  display: inline-block;
  background: var(--verde-oscuro);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-md);
}

.promo-masajes__content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--gris-oscuro);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.promo-masajes__content p {
  font-size: 1.05rem;
  color: var(--gris-medio);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.servicios-section {
  padding: var(--space-2xl) 0;
  background: var(--blanco);
}

.servicios-section--green {
  background: var(--verde-claro);
}

.servicios-section__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-xl);
}

.servicios-section__header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--gris-oscuro);
  margin-top: var(--space-sm);
}

.servicios-section--green .servicios-section__header h2 {
  color: white;
}

.servicios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-xl);
}

.servicios-section--green .servicios-grid {
  grid-template-columns: repeat(2, minmax(350px, 1fr));
  max-width: 900px;
  margin: 0 auto;
}

.servicio-card {
  background: var(--blanco);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.servicio-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.servicio-card--white {
  background: white;
}

.servicio-card--hidden {
  visibility: hidden;
}

.servicio-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.servicio-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.servicio-card:hover .servicio-card__image img {
  transform: scale(1.05);
}

.servicio-card__content {
  padding: var(--space-xl);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.servicio-card__content .btn--calendar {
  margin-top: auto;
  align-self: flex-start;
}

.servicio-card__content h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gris-oscuro);
  margin-bottom: var(--space-md);
  line-height: 1.3;
}

.servicio-card__content p {
  color: var(--gris-medio);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.servicio-card__content p:last-child {
  margin-bottom: 0;
}

.facilidades-section {
  padding: var(--space-2xl) 0;
  background: var(--blanco);
}

.facilidades-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-2xl);
  align-items: center;
}

.facilidades-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--gris-oscuro);
  margin-top: var(--space-sm);
  margin-bottom: var(--space-md);
}

.facilidades-text p {
  font-size: 1.05rem;
  color: var(--gris-medio);
  line-height: 1.7;
}

.facilidades-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.servicios-cta {
  padding: var(--space-2xl) 0;
  background: var(--verde-oscuro);
  text-align: center;
}

.servicios-cta--bg {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  background-image: url('img/servicios_cta.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 0;
}

.servicios-cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 107, 92, 0.85);
  display: flex;
  align-items: center;
}

.servicios-cta__content {
  max-width: 800px;
  margin: 0 auto;
  color: white;
}

.servicios-cta--bg .servicios-cta__content {
  position: relative;
  z-index: 1;
}

.servicios-cta__content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.servicios-cta__content p {
  font-size: 1.2rem;
  margin-bottom: var(--space-xl);
  opacity: 0.95;
}

/* =========================================
   PÁGINA EQUIPOS
   ========================================= */

.equipos-banner {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url('img/banner-equipos.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  padding: calc(100px + var(--space-2xl)) var(--space-lg) var(--space-2xl);
}

.equipos-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
  display: flex;
  align-items: center;
}

.equipos-banner__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  max-width: 900px;
  margin: 0 auto;
}

.equipos-banner__content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.equipos-banner__text p {
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.equipos-banner__buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-xl);
}

.equipos-banner__buttons .btn {
  padding: 16px 32px;
  font-size: 1.1rem;
  min-width: 180px;
  text-align: center;
}

.productos-slider {
  padding: var(--space-2xl) 0;
  background: var(--blanco);
}

.productos-slider__header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.productos-slider__header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--gris-oscuro);
  margin-top: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.productos-slider__header p {
  font-size: 1.1rem;
  color: var(--gris-medio);
}

.slider-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.producto-slide {
  min-width: 100%;
  position: relative;
}

.producto-slide__image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

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

.producto-slide__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  padding: var(--space-2xl) var(--space-xl) var(--space-xl);
  color: white;
}

.producto-slide__info h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.producto-slide__info p {
  font-size: 1.1rem;
  opacity: 0.9;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition-base);
}

.slider-btn:hover {
  background: white;
  box-shadow: var(--shadow-lg);
}

.slider-btn--prev {
  left: var(--space-md);
}

.slider-btn--next {
  right: var(--space-md);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gris-claro);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
}

.slider-dot.active {
  background: var(--verde-oscuro);
  width: 30px;
  border-radius: 6px;
}

.especificaciones-section {
  padding: var(--space-2xl) 0;
  background: var(--crema);
}

.especificaciones-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.especificaciones-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--gris-oscuro);
  margin-top: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.especificaciones-header p {
  font-size: 1.1rem;
  color: var(--gris-medio);
}

.especificaciones-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  max-width: 1200px;
  margin: 0 auto;
}

.especificacion-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  cursor: pointer;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
}

.especificacion-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.especificacion-card__image {
  position: relative;
  overflow: hidden;
}

.especificacion-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.especificacion-card:hover .especificacion-card__image img {
  transform: scale(1.1);
}

.especificacion-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 107, 92, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  opacity: 0;
  transition: opacity var(--transition-base);
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
}

.especificacion-card:hover .especificacion-card__overlay {
  opacity: 1;
}

.especificacion-card__content {
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.especificacion-card__content h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--gris-oscuro);
  margin-bottom: var(--space-md);
}

.especificaciones-list {
  list-style: none;
}

.especificaciones-list li {
  padding: var(--space-xs) 0;
  color: var(--gris-medio);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Modal de Producto */
.producto-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.producto-modal.active {
  opacity: 1;
  visibility: visible;
}

.producto-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  cursor: pointer;
}

.producto-modal__container {
  position: relative;
  background: white;
  border-radius: var(--radius-lg);
  max-width: 1100px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 1;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.producto-modal.active .producto-modal__container {
  transform: scale(1);
}

.producto-modal__close {
  position: fixed;
  top: var(--space-md);
  right: var(--space-md);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10001;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.producto-modal__close:hover {
  background: var(--gris-claro);
  transform: rotate(90deg);
}

.producto-modal__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  padding: var(--space-2xl);
}

.producto-modal__gallery {
  position: sticky;
  top: var(--space-md);
}

.gallery-main {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-md);
  aspect-ratio: 4/3;
}

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

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  max-height: 400px;
  overflow-y: auto;
  padding: var(--space-md) 0;
  background: white;
}

/* Scrollbar personalizado */
.gallery-thumbs::-webkit-scrollbar {
  width: 8px;
}

.gallery-thumbs::-webkit-scrollbar-track {
  background: rgba(0,0,0,0.05);
  border-radius: 4px;
}

.gallery-thumbs::-webkit-scrollbar-thumb {
  background: var(--verde-oscuro);
  border-radius: 4px;
}

.gallery-thumbs::-webkit-scrollbar-thumb:hover {
  background: var(--verde-claro);
}

.gallery-thumb {
  border: 3px solid #e0e0e0;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition-base);
  background: white;
  padding: 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 133.33%; /* Aspect ratio 3:4 */
}

.gallery-thumb:hover {
  border-color: var(--verde-claro);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.gallery-thumb.active {
  border-color: var(--verde-oscuro);
  box-shadow: 0 0 0 2px var(--verde-oscuro);
}

.gallery-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.producto-modal__info h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gris-oscuro);
  margin-bottom: var(--space-md);
}

.producto-modal__description {
  font-size: 1.05rem;
  color: var(--gris-medio);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.producto-modal__specs {
  background: var(--crema);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-xl);
}

.producto-modal__specs h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gris-oscuro);
  margin-bottom: var(--space-md);
}

.producto-modal__specs ul {
  list-style: none;
}

.producto-modal__specs li {
  padding: var(--space-sm) 0;
  color: var(--gris-medio);
  line-height: 1.6;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.producto-modal__specs li:last-child {
  border-bottom: none;
}

.producto-modal__cta {
  text-align: center;
  padding: var(--space-lg);
  background: var(--verde-ultra-light);
  border-radius: var(--radius-md);
}

.producto-modal__cta p {
  font-size: 1.1rem;
  color: var(--gris-oscuro);
  margin-bottom: var(--space-md);
  font-weight: 600;
}

.proceso-section {
  padding: var(--space-2xl) 0;
  background: var(--blanco);
}

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

.proceso-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--gris-oscuro);
  margin-top: var(--space-sm);
  margin-bottom: var(--space-2xl);
}

.proceso-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
  position: relative;
}

@media (min-width: 900px) {
  .proceso-grid::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: var(--verde-claro);
    z-index: 0;
  }
}

.proceso-paso {
  text-align: center;
}

.proceso-paso__numero {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--verde-claro);
  color: white;
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  position: relative;
  z-index: 1;
}

.proceso-paso h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gris-oscuro);
  margin-bottom: var(--space-sm);
}

.proceso-paso p {
  color: var(--gris-medio);
  line-height: 1.6;
}

.equipos-contacto {
  padding: var(--space-2xl) 0;
  background: var(--verde-ultra-light);
}

.equipos-contacto__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.equipos-contacto__info h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--gris-oscuro);
  margin-top: var(--space-sm);
  margin-bottom: var(--space-md);
}

.equipos-contacto__info p {
  font-size: 1.1rem;
  color: var(--gris-medio);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.equipos-contacto__features {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--verde-oscuro);
  font-weight: 600;
}

.feature-item svg {
  flex-shrink: 0;
}

.equipos-form {
  background: white;
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.btn--full {
  width: 100%;
}

@media (max-width: 1024px) {
  .equipos-contacto__content {
    grid-template-columns: 1fr;
  }
  
  .slider-btn {
    width: 40px;
    height: 40px;
  }
  
  .slider-btn--prev {
    left: var(--space-sm);
  }
  
  .slider-btn--next {
    right: var(--space-sm);
  }
  
  .especificaciones-grid {
    grid-template-columns: 1fr;
  }
  
  .producto-modal__content {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }
  
  .producto-modal__gallery {
    position: static;
    order: 3;
    margin-top: 0;
  }
  
  /* En mobile: reorganizar el orden */
  .producto-modal__info {
    display: contents;
  }
  
  .producto-modal__info h2 {
    order: 1;
    margin-bottom: 8px;
  }
  
  .producto-modal__description {
    order: 2;
    margin-bottom: 12px;
  }
  
  .producto-modal__specs {
    order: 4;
    margin-top: var(--space-md);
  }
  
  .producto-modal__cta {
    order: 5;
  }
  
  .gallery-thumbs {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 10px;
  }
}

@media (max-width: 768px) {
  .especificacion-card {
    grid-template-columns: 1fr;
  }
  
  .especificacion-card__image {
    aspect-ratio: 4/3;
  }
  
  .producto-modal__container {
    width: 95%;
  }
  
  .producto-modal__content {
    padding: var(--space-lg);
  }
}

/* =========================================
   PÁGINA CONTACTO
   ========================================= */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

.contacto-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(100px + var(--space-xl)) 0 var(--space-xl);
  background: linear-gradient(135deg, var(--verde-ultra-light) 0%, var(--blanco) 100%);
}

.contacto-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.contacto-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--verde-oscuro);
  margin-bottom: var(--space-sm);
}

.contacto-content > p {
  font-size: 1.1rem;
  color: var(--gris-medio);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contacto-form {
  background: white;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.form-field {
  margin-bottom: var(--space-lg);
  text-align: left;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 2px solid var(--verde-pale);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  background: var(--crema);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--verde-oscuro);
  background: white;
}

.form-field textarea {
  resize: vertical;
  min-height: 150px;
}

.btn-submit {
  width: 100%;
  padding: 1.1rem 2rem;
  font-size: 1.1rem;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.modal-overlay.visible {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: white;
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  max-width: 500px;
  text-align: center;
  transform: translateY(-20px);
  transition: transform var(--transition-base);
}

.modal-overlay.visible .modal-content {
  transform: translateY(0);
}

.modal-icon {
  width: 80px;
  height: 80px;
  background: var(--verde-claro);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 700;
  margin: 0 auto var(--space-lg);
}

.modal-content h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--verde-oscuro);
  margin-bottom: var(--space-md);
}

.modal-content p {
  font-size: 1.1rem;
  color: var(--gris-medio);
  margin-bottom: var(--space-xl);
  line-height: 1.6;
}

/* =========================================
   RESPONSIVE - SERVICIOS Y CONTACTO
   ========================================= */

@media (max-width: 1024px) {
  .promo-grid,
  .servicio-item {
    grid-template-columns: 1fr;
  }
  
  .servicio-item--reverse {
    direction: ltr;
  }
}

@media (max-width: 768px) {
  .banner-servicios__card {
    padding: var(--space-xl);
  }
  
  .servicios-filter {
    position: static;
  }
  
  .servicio-item__content,
  .servicio-item__image {
    padding: var(--space-lg);
  }
}

/* =========================================
   RESPONSIVE - AJUSTES COMPLETOS
   ========================================= */

/* Nav - Compacto para que "Venta de equipos" quepa */
@media (max-width: 1200px) {
  .nav__list {
    font-size: 0.9rem;
    gap: var(--space-md);
  }
}

@media (max-width: 1100px) {
  .nav__list {
    font-size: 0.85rem;
    gap: var(--space-sm);
  }
  
  .nav__link {
    font-size: 0.85rem;
  }
}

/* INDEX - Para quien: ocultar imagen en mobile */
@media (max-width: 1024px) {
  .para-quien__grid {
    grid-template-columns: 1fr;
  }
  
  .para-quien__image {
    display: none;
  }
  
  .para-quien__content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .para-quien__card {
    max-width: 600px;
    margin: 0 auto;
  }
}

/* INDEX - Acompañamiento: imagen doble con bordes redondeados */
@media (max-width: 1024px) {
  .acompanamiento__card {
    grid-template-columns: 1fr;
  }
  
  .acompanamiento__image {
    max-height: 500px;
    overflow: hidden;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }
  
  .acompanamiento__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
  }
}

/* NOSOTROS - Banner: centrar texto y ajustar imagen */
@media (max-width: 1024px) {
  .nosotros-intro__grid {
    grid-template-columns: 1fr;
    text-align: left;
  }
  
  .nosotros-intro__content {
    max-width: 100%;
  }
  
  .nosotros-intro__content h2,
  .nosotros-intro__content p {
    max-width: 100%;
  }
  
  .nosotros-intro__image {
    max-height: 600px;
    overflow: hidden;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }
  
  .nosotros-intro__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
  }
}

/* NOSOTROS - Diferencia: responsive sin desborde */
@media (max-width: 1024px) {
  .diferencia-section--bg {
    min-height: auto;
    padding: var(--space-2xl) var(--space-md);
  }
  
  .diferencia__grid {
    gap: var(--space-md);
  }
  
  .diferencia-card {
    padding: var(--space-md);
  }
  
  .diferencia-intro {
    padding-left: var(--space-md);
    padding-right: var(--space-md);
  }
}

/* NOSOTROS - Trabajamos: imagen doble con bordes */
@media (max-width: 1024px) {
  .trabajamos__grid {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  
  .trabajamos__image {
    max-height: 600px;
    overflow: hidden;
    order: -1;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }
  
  .trabajamos__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
  }
}

/* SERVICIOS - Promo: imagen doble con bordes */
@media (max-width: 1024px) {
  .promo-masajes__grid {
    grid-template-columns: 1fr;
  }
  
  .promo-masajes__image {
    order: -1;
    overflow: hidden;
    border-radius: var(--radius-lg);
    height: 380px;
  }

  .promo-masajes__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }
}


/* SERVICIOS - Estacionamiento: imagen doble con bordes */
@media (max-width: 1024px) {
  .facilidades-content {
    grid-template-columns: 1fr;
  }
  
  .facilidades-text {
    order: -1;
  }
  
  .facilidades-image {
    order: 1;
    max-height: 600px;
    overflow: hidden;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }
  
  .facilidades-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* EQUIPOS - Proceso: 4 en línea, luego 2x2, luego columna */
.proceso-grid {
  grid-template-columns: repeat(4, 1fr);
}

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

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

/* CTA Final Equipos */
.equipos-cta-final {
  padding: var(--space-2xl) 0;
  background-image: url('img/equipos-cierre.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
  position: relative;
}

.equipos-cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.equipos-cta-final .contenedor {
  position: relative;
  z-index: 2;
}

.equipos-cta-final__content {
  max-width: 800px;
  margin: 0 auto;
  color: white;
}

.equipos-cta-final__content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-top: var(--space-sm);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.equipos-cta-final__content p {
  font-size: 1.2rem;
  margin-bottom: var(--space-xl);
  opacity: 0.95;
  line-height: 1.5;
}

/* Desactivar parallax en mobile */
@media (max-width: 768px) {
  .equipos-cta-final {
    background-attachment: scroll;
  }
}

.btn--large {
  padding: 16px 32px;
  font-size: 1.1rem;
}

/* Nav responsive - ocultar "de equipos" cuando no entra */
.nav__link--equipos-full {
  display: inline;
}

.nav__link--equipos-short {
  display: none;
}

@media (max-width: 1150px) {
  .nav__link--equipos-full {
    display: none;
  }
  
  .nav__link--equipos-short {
    display: inline;
  }
}

/* ===== INDEX - FIXES ESPECÍFICOS ===== */

/* Enfoque - responsive sin desborde */
@media (max-width: 1024px) {
  .enfoque {
    min-height: auto;
    padding: var(--space-2xl) var(--space-md);
  }
  
  .enfoque__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }
  
  .enfoque__header {
    padding-left: var(--space-md);
    padding-right: var(--space-md);
  }
}

@media (max-width: 768px) {
  .enfoque {
    padding: var(--space-xl) var(--space-md);
  }
  
  .enfoque__grid {
    grid-template-columns: 1fr;
  }
}

/* Para quien - remover bullets cuando imagen desaparece */
@media (max-width: 1024px) {
  .para-quien__list li::before {
    display: none;
  }
  
  .para-quien__list li {
    padding-left: 0;
  }
}


/* Spacing consistente entre section-label y h2 */
.section-label + h2,
.section-label + .section-title {
  margin-top: var(--space-sm);
}

/* Mirada section: label más cerca del título */
.mirada-content .section-label + h2 {
  margin-top: 4px;
}


/* Enfoque - asegurar que overlay cubra todo el contenido */
.enfoque .contenedor {
  position: relative;
  z-index: 1;
  width: 100%;
}

@media (max-width: 900px) {
  .enfoque {
    padding: var(--space-2xl) 0;
  }
  
  .enfoque__grid {
    gap: var(--space-md);
  }
  
  .enfoque-card {
    padding: var(--space-md);
  }
}

@media (max-width: 600px) {
  .enfoque {
    padding: var(--space-xl) 0;
  }
}


/* En mobile con menu toggler, siempre mostrar texto completo */
@media (max-width: 768px) {
  .nav__link--equipos-full {
    display: inline !important;
  }
  
  .nav__link--equipos-short {
    display: none !important;
  }
}




/* SERVICIOS - Grupales responsive mantienen estructura */
@media (max-width: 768px) {
  .servicios-section--green .servicios-grid {
    grid-template-columns: 1fr;
  }
}


/* ===== LIGHTBOX PARA IMÁGENES ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  cursor: pointer;
}

.lightbox__container {
  position: relative;
  width: 90vw;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.lightbox__image-container {
  max-width: 100%;
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__image-container img {
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
  z-index: 10;
}

.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
  z-index: 10;
}

.lightbox__prev:hover,
.lightbox__next:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.1);
}

.lightbox__prev {
  left: 30px;
}

.lightbox__next {
  right: 30px;
}

.lightbox__counter {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 10px 20px;
  border-radius: 30px;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  z-index: 10;
}

/* Cursor pointer en imagen principal del modal */
#gallery-main-img {
  cursor: zoom-in;
}

.gallery-thumb {
  cursor: pointer;
  position: relative;
}

.gallery-thumb::after {
  content: '🔍';
  position: absolute;
  top: 5px;
  right: 5px;
  opacity: 0;
  transition: opacity var(--transition-base);
  font-size: 0.8rem;
}

.gallery-thumb:hover::after {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .lightbox__prev,
  .lightbox__next {
    width: 45px;
    height: 45px;
  }
  
  .lightbox__prev {
    left: 15px;
  }
  
  .lightbox__next {
    right: 15px;
  }
  
  .lightbox__close {
    width: 40px;
    height: 40px;
    top: 15px;
    right: 15px;
  }
  
  .lightbox__counter {
    bottom: 20px;
    font-size: 0.9rem;
    padding: 8px 16px;
  }
}


/* Gallery thumbs responsive */
@media (max-width: 768px) {
  .gallery-thumbs {
    grid-template-columns: repeat(3, 1fr);
  }
}

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


/* Desactivar parallax en mobile para mejor performance */
@media (max-width: 768px) {
  .equipos-banner {
    background-attachment: scroll;
  }
}

/* ============================================
   SHOWROOM SECTION
   ============================================ */
.showroom-section {
  padding: var(--space-2xl) 0;
  background: var(--verde-oscuro);
}

.showroom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.showroom-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: white;
  margin-top: var(--space-sm);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.showroom-text p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.showroom-lista {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-md) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.showroom-lista li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 600;
  color: white;
}

.showroom-check {
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 50%;
  background: white;
  color: var(--verde-oscuro);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
}

.showroom-visual {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.showroom-visual img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}

/* ============================================
   DIFERENCIADORES SECTION
   ============================================ */
.diferenciadores-section {
  padding: var(--space-2xl) 0;
  background: var(--blanco);
}

.diferenciadores-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.diferenciadores-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gris-oscuro);
  margin-top: var(--space-sm);
  margin-bottom: 8px;
}

.diferenciadores-header p {
  margin-top: 0;
}

.diferenciadores-header p {
  font-size: 1.1rem;
  color: var(--gris-medio);
}

.diferenciadores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-xl);
}

.diferenciador-card {
  background: white;
  border: 2px solid var(--verde-medio);
  border-radius: 16px;
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.diferenciador-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(45, 138, 118, 0.15);
}

.diferenciador-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  color: var(--verde-oscuro);
}

.diferenciador-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gris-oscuro);
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

.diferenciador-card p {
  color: var(--gris-medio);
  line-height: 1.6;
  font-size: 0.97rem;
}

/* ============================================
   ASESORAMIENTO SECTION
   ============================================ */
.asesoramiento-section {
  background-image: url('img/equipos-cierre.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.asesoramiento-overlay {
  background: rgba(30, 107, 92, 0.88);
  padding: var(--space-2xl) 0;
}

.asesoramiento-text {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  color: white;
}

.asesoramiento-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: white;
  margin-top: var(--space-sm);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.asesoramiento-text > p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.asesoramiento-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  text-align: left;
}

.asesoramiento-item {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: var(--space-md);
}

.asesoramiento-item__icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.asesoramiento-item h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}

.asesoramiento-item p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
  font-size: 0.9rem;
  margin: 0;
}

/* Responsive nuevas secciones */
@media (max-width: 1024px) {
  .showroom-visual img {
    height: 400px;
  }
}

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

  .showroom-visual {
    order: -1;
  }

  .showroom-visual img {
    height: 360px;
  }

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

  .asesoramiento-items {
    grid-template-columns: 1fr;
  }

  .asesoramiento-section {
    background-attachment: scroll;
  }
}

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