* { 
  margin: 0; 
  padding: 0; 
  box-sizing: border-box; 
}

:root {
  --pink: #f598ce;
  --pink-light: #fad1e9;
  --black: #000000;
  --white: #ffffff;
  --offwhite: #faf8f6;
  --gray-300: #ddd0d9;
  --gray-600: #5f5b5e;
  --shadow-sm: 0 25px 50px -12px rgba(0,0,0,0.1);
  --shadow-hover: 0 40px 60px -20px rgba(245,152,206,0.3);
  --border-radius-card: 2rem;
  --font-sans: 'Inter', sans-serif;
  --font-titles: 'Oswald', sans-serif;
  --font-weight-titles: 400;
}

body {
  font-family: var(--font-sans);
  background-color: var(--white);
  color: var(--black);
  line-height: 1.5;
}

/* Textos justificados */
p, .mission-text-only p, .program-card p, .full-text, .program-features li,
.team-content p, .goal-centered p, .mission-box p,
.contact-detail p, .footer-col p, .eq-card p {
  text-align: justify;
}

body.modal-open {
  overflow: hidden;
}

h1, h2, h3 { 
  font-weight: 700; 
  letter-spacing: -0.02em; 
}

/* Fuente Oswald para títulos */
.section-title {
  font-size: 3.2rem;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-family: var(--font-titles);
  font-weight: var(--font-weight-titles);
} 

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--pink), transparent);
}

.section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem auto;
  color: var(--gray-600);
  font-size: 1.2rem;
  line-height: 1.6;
}

.container { 
  max-width: 1400px; 
  margin: 0 auto; 
  padding: 4rem 2rem;
}

/* header NEGRO */
header {
  position: fixed; 
  top: 0; 
  width: 100%;
  background: var(--black);
  z-index: 1000; 
  display: flex; 
  justify-content: space-between; 
  align-items: center;
  padding: 0.7rem 5%; 
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.logo img { 
  height: 52px; 
}

nav { 
  display: flex; 
  gap: 2rem; 
  align-items: center; 
}

nav a {
  text-decoration: none; 
  color: var(--white); 
  font-weight: 500; 
  font-size: 0.95rem;
  text-transform: uppercase; 
  letter-spacing: 0.8px; 
  transition: 0.2s;
  border-bottom: 2px solid transparent; 
  padding-bottom: 4px;
}

nav a:hover { 
  color: var(--pink); 
  border-bottom-color: var(--pink); 
}

.btn-nav {
  background: var(--pink); 
  color: var(--black) !important; 
  padding: 10px 22px;
  border-radius: 40px; 
  border: 2px solid var(--pink);
}

.btn-nav:hover { 
  background: transparent; 
  color: var(--white) !important; 
  border-color: var(--white); 
}

.lang-switch {
  cursor: pointer; 
  font-weight: 700; 
  color: var(--white);
  background: rgba(255,255,255,0.15); 
  padding: 8px 15px; 
  border-radius: 30px;
}

/* hero con logo pequeño */
.hero {
  position: relative; 
  height: 100vh; 
  display: flex; 
  align-items: center; 
  justify-content: center;
  text-align: center; 
  color: var(--white); 
  overflow: hidden;
}

.hero video {
  position: absolute; 
  top: 50%; 
  left: 50%; 
  min-width: 100%; 
  min-height: 100%;
  width: auto; 
  height: auto; 
  transform: translate(-50%, -50%);
  object-fit: cover; 
  z-index: -2;
}

.hero-overlay {
  position: absolute; 
  inset:0; 
  background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,0,0,0.3)); 
  z-index: -1;
}

/* LOGO DEL SLIDER */
.hero-logo {
  max-width: 200px;
  width: 30%;
  margin: 0 auto 1.5rem auto;
  position: relative;
  top: -200px;
  left: 800px;
}

.hero-logo img { 
  width: 100%; 
  height: auto;
  animation: girarInfinito 8s linear infinite;
}

@keyframes girarInfinito {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.hero-logo img:hover {
  animation-play-state: paused;
}

.hero-content p { 
  font-size: 1.4rem; 
  max-width: 700px; 
  margin: 0 auto 2rem; 
  opacity: 0.9; 
  text-align: justify;
}

.btn-hero {
  background: var(--pink); 
  color: var(--black); 
  border: none; 
  padding: 16px 40px;
  font-size: 1.1rem; 
  border-radius: 50px; 
  font-weight: 700;
  box-shadow: 0 20px 30px -10px var(--pink); 
  transition: 0.2s; 
  cursor: pointer;
}

.btn-hero:hover { 
  background: white; 
  box-shadow: 0 25px 35px -5px white; 
}

/* mission solo texto */
.mission-text-only { 
  max-width: 1000px; 
  margin: 0 auto; 
  text-align: justify; 
}

.mission-text-only p { 
  color: var(--gray-600); 
  font-size: 1.2rem; 
  margin-bottom: 2rem; 
  line-height: 1.8; 
}

/* programas */
#programs { 
  background: var(--offwhite); 
  width: 100%; 
}

.programs-header { 
  text-align: center; 
  margin-bottom: 4rem; 
}

.programs-header h2 { 
  font-size: 4rem; 
  color: var(--pink);
  font-family: var(--font-titles);
  font-weight: var(--font-weight-titles);
}

.programs-header p { 
  font-size: 1.4rem; 
  color: var(--gray-600); 
  font-weight: 300; 
  max-width: 800px;
  margin: 0 auto;
}

.program-grid { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 2rem; 
  justify-content: center; 
}

.program-card {
  background: var(--white); 
  padding: 2.5rem 2rem; 
  border-radius: var(--border-radius-card);
  flex: 1 1 320px; 
  max-width: 380px; 
  min-width: 320px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(245,152,206,0.2); 
  transition: 0.3s;
  display: flex; 
  flex-direction: column;
  height: 1150px;
  overflow: visible;
}

.program-card:hover { 
  transform: translateY(-12px); 
  box-shadow: var(--shadow-hover); 
}

.program-icon {
  width: 80px; 
  height: 80px; 
  margin: 0 auto 1.5rem;
}

.program-icon img { 
  width: 100%; 
  height: 100%; 
  object-fit: contain; 
}

.program-card h3 { 
  font-size: 2.4rem; 
  text-align: center; 
  margin-bottom: 0.5rem; 
}

.program-card h4 { 
  color: var(--pink); 
  font-weight: 600; 
  text-align: center; 
  margin-bottom: 1.5rem; 
}

.program-card p { 
  text-align: justify; 
  margin-bottom: 1rem; 
  font-size: 0.95rem; 
  color: var(--gray-600);
  overflow: visible;
  max-height: none;
}

.program-card .full-text { 
  text-align: justify; 
  margin-bottom: 1.5rem; 
  font-size: 0.95rem; 
  color: var(--gray-600);
  overflow: visible;
  max-height: none;
}

.program-features { 
  list-style: none; 
  margin: 1.5rem 0; 
  text-align: left; 
  flex-grow: 1;
}

.program-features li { 
  padding: 0.5rem 0; 
  border-bottom: 1px dashed var(--gray-300); 
  font-size: 0.95rem; 
  text-align: justify;
}

.program-features strong { 
  color: var(--pink); 
}

.btn-card {
  background: transparent; 
  border: 2px solid var(--black); 
  color: var(--black);
  border-radius: 40px; 
  padding: 12px 28px; 
  font-weight: 700; 
  text-decoration: none;
  text-align: center; 
  margin: 1rem 0; 
  cursor: pointer; 
  display: inline-block;
  width: auto;
  align-self: center;
}

.btn-card:hover { 
  background: var(--black); 
  color: white; 
}

.program-bottom-img {
  margin-top: 0.5rem;
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
}

.program-bottom-img img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.program-bottom-img img:hover {
  transform: scale(1.05);
}

/* EQUIPO */
#team {
  background: var(--white);
  padding: 4rem 2rem;
}

.team-wrapper {
  display: flex;
  align-items: stretch;
  gap: 3rem;
  margin-bottom: 3rem;
  min-height: fit-content;
}

.team-wrapper:last-child {
  margin-bottom: 0;
}

.team-img {
  flex: 0 0 220px;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  background-color: #f5f5f5;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.team-content h3 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: var(--black);
  font-family: var(--font-titles);
  font-weight: var(--font-weight-titles);
  margin-top: 0;
}

.team-content p {
  color: var(--gray-600);
  margin-bottom: 0.8rem;
  line-height: 1.5;
  text-align: justify;
  font-size: 1rem;
}

.team-content p:first-of-type {
  font-size: 1.1rem;
  font-weight: 500;
}

.team-content p:last-child {
  margin-bottom: 0;
}

/* Our Goal */
.goal-centered {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem;
  background: linear-gradient(145deg, var(--offwhite), white);
  border-radius: 3rem;
  box-shadow: var(--shadow-sm);
}

.goal-centered h3 {
  font-size: 2.5rem;
  color: var(--pink);
  margin-bottom: 2rem;
  font-family: var(--font-titles);
  font-weight: var(--font-weight-titles);
}

.goal-centered p {
  font-size: 1.3rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.goal-centered p:last-child {
  margin-bottom: 0;
}

/* CONTACTO */
#contact {
  background: var(--white);
  padding: 4rem 2rem;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 4rem;
  align-items: flex-start;
}

.contact-info {
  flex: 1;
}

.contact-info h3 {
  font-size: 2rem;
  color: var(--pink);
  margin-bottom: 2rem;
  font-family: var(--font-titles);
  font-weight: var(--font-weight-titles);
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-detail i {
  font-size: 1.8rem;
  color: var(--pink);
  width: 40px;
}

.contact-detail p, .contact-detail a {
  color: var(--gray-600);
  text-decoration: none;
  font-size: 1.1rem;
}

.contact-detail a:hover { 
  color: var(--pink); 
}

.contact-form-container {
  flex: 1;
}

.contact-form-container h3 {
  font-size: 2rem;
  color: var(--pink);
  margin-bottom: 2rem;
  font-family: var(--font-titles);
  font-weight: var(--font-weight-titles);
}

#contactForm .form-group {
  position: relative;
  margin-bottom: 2rem;
}

#contactForm input,
#contactForm textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--gray-300);
  border-radius: 1rem;
  font-family: inherit;
  font-size: 1rem;
  background: transparent;
  transition: 0.2s;
}

#contactForm input:focus,
#contactForm textarea:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(245, 152, 206, 0.1);
}

#contactForm label {
  position: absolute;
  left: 1rem;
  top: 1rem;
  color: var(--gray-600);
  transition: 0.2s;
  pointer-events: none;
  background: white;
  padding: 0 0.3rem;
}

#contactForm input:focus ~ label,
#contactForm input:not(:placeholder-shown) ~ label,
#contactForm textarea:focus ~ label,
#contactForm textarea:not(:placeholder-shown) ~ label {
  top: -0.6rem;
  left: 0.8rem;
  font-size: 0.85rem;
  color: var(--pink);
  font-weight: 600;
}

.btn-submit {
  background: var(--pink);
  color: var(--black);
  border: none;
  padding: 14px 40px;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  width: 100%;
  transition: 0.2s;
  border: 2px solid var(--pink);
}

.btn-submit:hover {
  background: transparent;
  color: var(--black);
  border-color: var(--pink);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(245, 152, 206, 0.3);
}

/* ============================================
   FOOTER PRINCIPAL Y FOOTER DE TIENDA UNIFICADOS
   ============================================ */

/* Footer principal */
footer {
  background: var(--black); 
  color: #aaa; 
  padding: 5rem 5% 2.5rem;
}

/* Footer de la tienda - mismo estilo que el principal */
.eq-footer {
  background: var(--black); 
  color: #aaa; 
  padding: 5rem 5% 2.5rem; 
  width: 100%;
  margin-top: 2rem;
}

/* Grid unificado para ambos footers */
footer .footer-grid,
.eq-footer .footer-grid {
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
  gap: 3rem; 
  margin-bottom: 4rem;
}

/* Estilos de columnas unificados */
footer .footer-col,
.eq-footer .footer-col {
  display: flex;
  flex-direction: column;
}

footer .footer-col h4,
.eq-footer .footer-col h4 {
  color: var(--pink);
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
  font-family: var(--font-titles);
  font-weight: var(--font-weight-titles);
}

footer .footer-col a,
.eq-footer .footer-col a {
  color: #aaa; 
  text-decoration: none; 
  display: block; 
  margin-bottom: 0.8rem;
  transition: color 0.2s ease;
  cursor: pointer;
}

footer .footer-col a:hover,
.eq-footer .footer-col a:hover { 
  color: var(--pink); 
}

footer .footer-col p,
.eq-footer .footer-col p {
  color: #aaa;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

/* Logo del footer */
footer .footer-logo,
.eq-footer .footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

footer .footer-logo img,
.eq-footer .footer-logo img { 
  height: 60px; 
  width: auto;
  margin-bottom: 1rem;
}

footer .footer-logo p,
.eq-footer .footer-logo p {
  color: #aaa;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* Redes sociales */
footer .social-links,
.eq-footer .social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

footer .social-links a,
.eq-footer .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: white;
  font-size: 1.5rem;
  transition: all 0.2s ease;
  text-decoration: none;
  margin-bottom: 0;
}

footer .social-links a:hover,
.eq-footer .social-links a:hover {
  background: var(--pink);
  color: var(--black);
  transform: translateY(-3px);
}

/* Bottom del footer */
footer .footer-bottom,
.eq-footer .footer-bottom { 
  text-align: center; 
  border-top: 1px solid rgba(255,255,255,0.1); 
  padding-top: 2rem; 
  color: #666; 
  font-size: 0.85rem;
  margin-top: 1rem;
}

/* MODALES GENERALES */
.modal {
  display: none; 
  position: fixed; 
  inset: 0; 
  background: rgba(0,0,0,0.7); 
  backdrop-filter: blur(6px);
  z-index: 2000; 
  justify-content: center; 
  align-items: center;
}

.modal.active { 
  display: flex; 
}

/* MODAL DE BIENVENIDA */
.welcome-modal-content {
  background: var(--white);
  border-radius: 2rem;
  padding: 3rem;
  max-width: 600px;
  width: 90%;
  position: relative;
  text-align: center;
}

.welcome-logo {
  width: 100px;
  height: 100px;
  margin-bottom: 2rem;
  animation: girarInfinito 8s linear infinite;
}

.welcome-content h2 {
  color: var(--pink);
  margin-bottom: 1.5rem;
  font-family: var(--font-titles);
  font-weight: var(--font-weight-titles);
}

.welcome-content p {
  color: var(--gray-600);
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.welcome-email {
  display: inline-block;
  color: var(--pink);
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: 1rem;
  padding: 0.5rem 1.5rem;
  border: 2px solid var(--pink);
  border-radius: 50px;
  transition: 0.2s;
}

.welcome-email:hover {
  background: var(--pink);
  color: var(--black);
}

/* MODAL FREE TRIAL */
.trial-modal-content {
  background: var(--white);
  border-radius: 2rem;
  padding: 2.5rem;
  max-width: 700px;
  width: 95%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.close-modal {
  position: absolute; 
  top: 20px; 
  right: 25px;
  font-size: 2rem; 
  cursor: pointer; 
  color: #aaa;
  z-index: 1;
}

.close-modal:hover {
  color: var(--pink);
}

.trial-form h2 {
  color: var(--pink);
  margin-bottom: 2rem;
  font-size: 2.5rem;
  text-align: center;
  font-family: var(--font-titles);
  font-weight: var(--font-weight-titles);
}

.form-row {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  flex: 1;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--black);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.checkbox-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 0.5rem 0;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: normal;
}

/* EQUIPMENT MODAL (TIENDA) */
#equipmentModal {
  display: none;
}

#equipmentModal.active {
  display: flex;
}

#equipmentModal .modal-content {
  width: 100%; 
  height: 100vh;
  overflow-y: auto;
  background: var(--offwhite);
  position: relative;
}

.eq-header {
  background: var(--black);
  padding: 0.7rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 10;
}

.eq-header .logo img { 
  height: 52px; 
}

.eq-header nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.eq-header nav a {
  text-decoration: none;
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: 0.2s;
  border-bottom: 2px solid transparent;
  padding-bottom: 4px;
  cursor: pointer;
}

.eq-header nav a:hover { 
  color: var(--pink); 
  border-bottom-color: var(--pink); 
}

.eq-header .btn-nav {
  background: var(--pink);
  color: var(--black) !important;
  padding: 10px 22px;
  border-radius: 40px;
  border: 2px solid var(--pink);
}

.eq-header .btn-nav:hover { 
  background: transparent; 
  color: var(--white) !important; 
  border-color: var(--white); 
}

.eq-header .lang-switch {
  cursor: pointer;
  font-weight: 700;
  color: var(--white);
  background: rgba(255,255,255,0.15);
  padding: 8px 15px;
  border-radius: 30px;
}

/* Menú hamburguesa para la tienda */
.eq-header .hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
  padding: 5px;
}

.eq-header .hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 3px;
}

.eq-header .hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.eq-header .hamburger.active span:nth-child(2) {
  opacity: 0;
}

.eq-header .hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.eq-header .mobile-menu {
  display: none;
}

.store-search {
  display: flex;
  justify-content: center;
  margin: 2rem auto;
  max-width: 600px;
  padding: 0 2rem;
}

.store-search input {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 2px solid var(--gray-300);
  border-radius: 50px;
  font-size: 1rem;
  outline: none;
  transition: 0.2s;
}

.store-search input:focus {
  border-color: var(--pink);
}

.eq-grid {
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); 
  gap: 2rem;
  padding: 2rem 5%;
}

.eq-card {
  background: white;
  border-radius: 2rem;
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: 0.3s;
}

.eq-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.eq-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.eq-card h3 {
  margin-bottom: 0.8rem;
  color: var(--pink);
}

.eq-card p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.eq-card .btn-wsp-product {
  background: #25D366;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.eq-card .btn-wsp-product:hover {
  background: #128C7E;
  transform: scale(1.02);
}

/* MODAL DE CONTACTO PARA PRODUCTOS */
#productContactModal .trial-modal-content {
  max-width: 500px;
}

#productContactModal .form-group {
  margin-bottom: 1.5rem;
}

#productContactModal input[readonly] {
  background-color: var(--gray-300);
  cursor: not-allowed;
}

/* ===== MENÚ HAMBURGUESA PRINCIPAL ===== */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
  padding: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 3px;
}

.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);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  background: var(--black);
  padding: 2rem 1rem;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
  max-height: calc(100vh - 70px);
  overflow-y: auto;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  color: var(--white);
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.8rem 0;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu a:hover {
  color: var(--pink);
}

.btn-nav-mobile {
  background: var(--pink);
  color: var(--black) !important;
  padding: 12px 22px !important;
  border-radius: 40px;
  border: 2px solid var(--pink);
  font-weight: 700;
  margin-top: 0.5rem;
  width: auto !important;
  min-width: 200px;
}

.btn-nav-mobile:hover {
  background: transparent;
  color: var(--white) !important;
  border-color: var(--white);
}

/* ============================================
   MEDIA QUERIES - RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1300px) {
  .team-wrapper { 
    margin-left: -2rem; 
  }
}

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  header {
    padding: 0.7rem 1rem;
  }
  
  .logo img {
    height: 40px;
  }
  
  .lang-switch {
    margin-right: 0;
    padding: 6px 10px;
    font-size: 0.85rem;
  }
  
  .team-wrapper {
    flex-direction: column;
    gap: 2rem;
    margin-left: 0;
    min-height: auto;
  }
  
  .team-img {
    flex: 0 0 auto;
    width: 80%;
    max-width: 300px;
    height: 400px;
  }
  
  .team-content h3 {
    text-align: center;
  }
  
  .contact-container { 
    flex-direction: column; 
  }
  
  .form-row { 
    flex-direction: column; 
    gap: 1rem; 
  }
  
  .hero-logo { 
    max-width: 150px; 
  }
  
  /* Header de la tienda en móvil */
  .eq-header {
    padding: 0.7rem 1rem !important;
    flex-wrap: wrap !important;
  }
  
  .eq-header .logo img {
    height: 40px !important;
  }
  
  .eq-header nav.desktop-nav {
    display: none !important;
  }
  
  .eq-header .hamburger {
    display: flex !important;
  }
  
  .eq-header .lang-switch {
    margin-right: 0 !important;
    padding: 6px 10px !important;
    font-size: 0.85rem !important;
  }
  
  .eq-header .mobile-menu {
    position: fixed !important;
    top: 70px !important;
    left: 0 !important;
    width: 100% !important;
    background: var(--black) !important;
    padding: 2rem 1rem !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 1rem !important;
    z-index: 1000 !important;
    border-bottom: 1px solid rgba(255,255,255,0.1) !important;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5) !important;
    max-height: calc(100vh - 70px) !important;
    overflow-y: auto !important;
    display: none !important;
  }
  
  .eq-header .mobile-menu.active {
    display: flex !important;
  }
  
  .eq-header .mobile-menu a {
    color: var(--white) !important;
    text-decoration: none !important;
    font-size: 1.2rem !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    padding: 0.8rem 0 !important;
    width: 100% !important;
    text-align: center !important;
    border-bottom: 1px solid rgba(255,255,255,0.1) !important;
  }
  
  .eq-header .mobile-menu a:last-child {
    border-bottom: none !important;
  }
  
  .eq-header .btn-nav-mobile {
    background: var(--pink) !important;
    color: var(--black) !important;
    padding: 12px 22px !important;
    border-radius: 40px !important;
    border: 2px solid var(--pink) !important;
    font-weight: 700 !important;
    margin-top: 0.5rem !important;
    width: auto !important;
    min-width: 200px !important;
  }
}

@media (max-width: 768px) {
  .hero-content p {
    font-size: 1rem;
    padding: 0 1rem;
  }
  
  .program-card {
    height: auto;
    min-height: 1150px;
  }
  
  .programs-header p {
    font-size: 1.2rem;
    padding: 0 1rem;
  }
  
  .section-title {
    font-size: 2.2rem;
    white-space: normal;
    text-align: center;
    width: 90%;
  }
  
  .container {
    padding: 2rem 1rem;
  }
  
  /* Footer en móvil */
  footer,
  .eq-footer {
    padding: 3rem 1.5rem 2rem !important;
  }
  
  footer .footer-grid,
  .eq-footer .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    text-align: center !important;
  }
  
  footer .footer-col,
  .eq-footer .footer-col {
    text-align: center !important;
    align-items: center !important;
  }
  
  footer .footer-logo,
  .eq-footer .footer-logo {
    align-items: center !important;
  }
  
  footer .social-links,
  .eq-footer .social-links {
    justify-content: center !important;
  }
  
  /* Ajustes de la tienda */
  #equipmentModal .section-title {
    font-size: 2rem !important;
    white-space: normal !important;
    text-align: center !important;
    width: 90% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    word-break: break-word !important;
  }
  
  .section-description {
    font-size: 1rem !important;
    padding: 0 1rem !important;
    margin-bottom: 2rem !important;
  }
  
  .store-search {
    margin: 1rem auto !important;
    padding: 0 1rem !important;
  }
  
  .store-search input {
    padding: 0.8rem 1.2rem !important;
    font-size: 0.9rem !important;
  }
  
  .eq-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
    gap: 1rem !important;
    padding: 1rem !important;
  }
  
  .eq-card {
    padding: 1.5rem !important;
  }
  
  .eq-card img {
    height: 150px !important;
    object-fit: contain !important;
  }
  
  .eq-card h3 {
    font-size: 1.3rem !important;
  }
  
  .eq-card p {
    font-size: 0.85rem !important;
  }
  
  .eq-card .btn-wsp-product {
    padding: 10px !important;
    font-size: 0.9rem !important;
  }
}

@media (max-width: 480px) {
  .mobile-menu a {
    font-size: 1rem;
    padding: 0.6rem 0;
  }
  
  .btn-nav-mobile {
    padding: 10px 18px !important;
    font-size: 0.9rem;
  }
  
  .goal-centered h3 {
    font-size: 1.8rem;
  }
  
  .goal-centered p {
    font-size: 1rem;
  }
  
  .eq-grid {
    grid-template-columns: 1fr !important;
  }
  
  .eq-card {
    max-width: 100% !important;
  }
  
  .eq-card img {
    height: 180px !important;
  }
  
  .store-search input {
    font-size: 0.85rem !important;
  }
  
  #equipmentModal .section-title {
    font-size: 1.6rem !important;
  }
}