/* Estilos globales inspirados en diseño Apple */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --primary-color: #007aff; /* Azul Apple */
  --secondary-color: #f5f5f7; /* Gris claro */
  --accent-color: #1d1d1f; /* Negro */
  --font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Inter', system-ui, sans-serif;
  --border-radius: 12px;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  margin: 0;
  padding: 0;
  background-color: var(--secondary-color);
  color: var(--accent-color);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* Header */
.header {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.header-main-logo {
  height: 50px;
  width: auto;
  max-width: 250px;
  object-fit: contain;
}

.header-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn-login,
.btn-register {
  padding: 10px 24px;
  border-radius: 20px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-family);
}

.btn-login {
  background-color: var(--primary-color);
  color: white;
  border: 2px solid var(--primary-color);
}

.btn-login:hover {
  background-color: #0051d5;
  border-color: #0051d5;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
}

.btn-register {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-register:hover {
  background-color: rgba(0, 122, 255, 0.1);
}

.logo {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
}

.nav {
  display: flex;
  gap: 20px;
}

.nav a {
  text-decoration: none;
  color: var(--accent-color);
  font-weight: 500;
  transition: color 0.3s;
}

.nav a:hover {
  color: var(--primary-color);
}

.nav-mobile-only {
  display: none;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  align-items: center;
  justify-content: flex-start;
  z-index: 1002;
  position: relative;
}

.mobile-menu-toggle ion-icon {
  font-size: 28px;
  color: var(--accent-color);
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1900;
}

.mobile-menu-overlay.active {
  display: block;
}

.mobile-menu-close {
  display: none;
}

/* Hero */
.hero {
  background-image: url('/src/assets/landing-banner.png');
  background-size: cover;
  background-position: 50% 60%;
  background-repeat: no-repeat;
  position: relative;
  color: white;
  padding: 120px 0 80px;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-primary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.btn-primary:hover {
  background-color: white;
  color: black;
}

/* Hero About Section */
.hero-about {
  background: linear-gradient(135deg, #007AFF 0%, #5856D6 100%);
  padding: 80px 0;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero-about::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.hero-about::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.hero-about .container {
  position: relative;
  z-index: 1;
}

.hero-about h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-align: center;
}

.hero-about > .container > p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 50px;
  opacity: 0.95;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 35px 25px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.2);
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.9;
  font-weight: 500;
}

/* Promo */
.promo {
  padding: 80px 0;
  background-color: white;
}

.promo > .container > h3 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 20px;
}

.promo > .container > p {
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #6e6e73;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

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

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.program-header {
  padding: 30px;
  background: linear-gradient(135deg, #007AFF 0%, #5856D6 100%);
  color: white;
  position: relative;
}

.program-header.women {
  background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
}

.program-header.employees {
  background: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);
}

.program-header.seniors {
  background: linear-gradient(135deg, #FFD93D 0%, #F6A623 100%);
}

.program-icon-large {
  font-size: 50px;
  margin-bottom: 16px;
}

.program-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  margin-top: 0;
  color: white;
  text-align: left;
}

.program-header p {
  color: white;
  text-align: left;
  margin: 0;
  margin-top: 8px;
  opacity: 0.9;
}

.program-amount {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 12px;
  margin-bottom: 0;
}

.program-body {
  padding: 20px 25px;
}

.program-detail {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f5f5f7;
}

.program-detail:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.program-detail ion-icon {
  font-size: 20px;
  color: #007AFF;
  flex-shrink: 0;
  margin-top: 2px;
}

.program-detail-content h5 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 3px;
  margin-top: 0;
}

.program-detail-content p {
  font-size: 0.85rem;
  color: #6e6e73;
  line-height: 1.4;
  margin: 0;
}

/* Acceso */
.acceso {
  padding: 80px 0;
  background-color: var(--secondary-color);
}

.acceso h3 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 20px;
}

.acceso p {
  text-align: center;
  margin-bottom: 40px;
}

.access-options {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn-secondary {
  background-color: white;
  color: var(--accent-color);
  border: 2px solid var(--primary-color);
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: white;
}

/* How It Works */
.how-it-works {
  padding: 80px 0;
  background-color: white;
}

.how-it-works h3 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 10px;
  font-weight: 700;
}

.how-it-works p {
  text-align: center;
  font-size: 1.1rem;
  color: #6e6e73;
  margin-bottom: 60px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.step {
  text-align: center;
  padding: 30px 20px;
  position: relative;
}

.step-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(0, 122, 255, 0.1) 0%, rgba(0, 122, 255, 0.05) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(0, 122, 255, 0.3);
  transition: all 0.3s ease;
}

.step:hover .step-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, rgba(0, 122, 255, 0.15) 0%, rgba(0, 122, 255, 0.08) 100%);
  border-color: rgba(0, 122, 255, 0.5);
}

.step-icon ion-icon {
  font-size: 40px;
  color: var(--primary-color);
}

.step-number {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.step h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.step p {
  font-size: 0.95rem;
  color: #6e6e73;
  line-height: 1.5;
  margin: 0;
}

/* Testimonials */
.testimonials {
  padding: 80px 0;
  background: linear-gradient(135deg, #f5f5f7 0%, #ffffff 100%);
}

.testimonials h3 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 10px;
  font-weight: 700;
}

.testimonials p {
  text-align: center;
  font-size: 1.1rem;
  color: #6e6e73;
  margin-bottom: 60px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color) 0%, #0051d5 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-info h4 {
  margin: 0 0 5px 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.testimonial-info .badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid;
}

.testimonial-info .badge.young-women {
  background: linear-gradient(135deg, rgba(255, 45, 85, 0.08) 0%, rgba(255, 45, 85, 0.12) 100%);
  color: #ff2d55;
  border-color: rgba(255, 45, 85, 0.3);
}

.testimonial-info .badge.public-employee {
  background: linear-gradient(135deg, rgba(0, 122, 255, 0.08) 0%, rgba(0, 122, 255, 0.12) 100%);
  color: #007aff;
  border-color: rgba(0, 122, 255, 0.3);
}

.testimonial-info .badge.elderly {
  background: linear-gradient(135deg, rgba(88, 86, 214, 0.08) 0%, rgba(88, 86, 214, 0.12) 100%);
  color: #5856d6;
  border-color: rgba(88, 86, 214, 0.3);
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #6e6e73;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-amount {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-color);
  padding: 10px 15px;
  background: linear-gradient(135deg, rgba(0, 122, 255, 0.08) 0%, rgba(0, 122, 255, 0.12) 100%);
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(0, 122, 255, 0.3);
}

/* FAQ */
.faq {
  padding: 80px 0;
  background-color: white;
}

.faq h3 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 10px;
  font-weight: 700;
}

.faq p {
  text-align: center;
  font-size: 1.1rem;
  color: #6e6e73;
  margin-bottom: 60px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border: 2px solid #f5f5f7;
  border-radius: 16px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(0, 122, 255, 0.3);
}

.faq-item.active {
  border-color: var(--primary-color);
  box-shadow: 0 4px 20px rgba(0, 122, 255, 0.1);
}

.faq-question {
  width: 100%;
  padding: 20px 25px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--accent-color);
  text-align: left;
  transition: all 0.3s ease;
  font-family: var(--font-family);
}

.faq-question:hover {
  color: var(--primary-color);
}

.faq-question ion-icon {
  font-size: 24px;
  color: var(--primary-color);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-question ion-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 25px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 25px 20px 25px;
}

.faq-answer p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #6e6e73;
  text-align: left;
}

/* Social Section */
.social-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f5f5f7 0%, #ffffff 100%);
  text-align: center;
}

.social-section h3 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.social-section p {
  font-size: 1.1rem;
  color: #6e6e73;
  margin-bottom: 50px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  padding: 30px 40px;
  border-radius: 20px;
  background: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  min-width: 140px;
}

.social-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.social-link svg {
  width: 40px;
  height: 40px;
  transition: all 0.3s ease;
}

.social-link span {
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.social-link.facebook svg,
.social-link.facebook span {
  color: #1877f2;
}

.social-link.facebook:hover {
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.1) 0%, rgba(24, 119, 242, 0.05) 100%);
}

.social-link.instagram svg,
.social-link.instagram span {
  color: #E4405F;
}

.social-link.instagram:hover {
  background: linear-gradient(135deg, rgba(228, 64, 95, 0.1) 0%, rgba(228, 64, 95, 0.05) 100%);
}

.social-link.twitter svg,
.social-link.twitter span {
  color: #000000;
}

.social-link.twitter:hover {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.03) 100%);
}

/* Mission & Vision Section */
.mission-vision-section {
  padding: 80px 0;
  background: #f5f5f7;
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 20px;
}

.mv-card {
  background: white;
  padding: 50px 40px;
  border-radius: 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.mv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.mv-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #007AFF 0%, #5856D6 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}

.mv-icon ion-icon {
  font-size: 42px;
  color: white;
}

.mv-card h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1d1d1f;
}

.mv-card p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #6e6e73;
}

/* Values Section */
.values-section {
  padding: 80px 0;
  background: white;
}

.values-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #1d1d1f;
}

.values-section .section-subtitle {
  text-align: center;
  color: #6e6e73;
  font-size: 1.15rem;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.value-card {
  background: #f5f5f7;
  padding: 40px 30px;
  border-radius: 20px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-align: center;
}

.value-card:hover {
  border-color: #007AFF;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 122, 255, 0.15);
  background: white;
}

.value-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(0, 122, 255, 0.15) 0%, rgba(88, 86, 214, 0.15) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.value-icon ion-icon {
  font-size: 30px;
  color: #007AFF;
}

.value-card h4 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1d1d1f;
}

.value-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #6e6e73;
}

/* Footer */
.footer {
  background-color: #1a1a2e;
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: white;
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 15px;
  filter: brightness(0) invert(1);
}

.footer-description {
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.8;
  max-width: 280px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-links li:not(:has(a)) {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  opacity: 0.7;
}

/* Responsivo */
@media (max-width: 768px) {
  .header {
    z-index: 2000;
  }

  .header .container {
    position: relative;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .header-buttons-desktop {
    display: none;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 30px 30px;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 1950;
    transition: right 0.3s ease;
    gap: 0;
    overflow-y: auto;
  }

  .nav.active {
    right: 0;
  }

  .mobile-menu-close {
    display: none;
  }

  .mobile-menu-toggle {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1999;
  }

  .nav a {
    padding: 18px 0;
    border-bottom: 1px solid #f5f5f7;
    font-size: 1.05rem;
    text-align: left;
    width: 100%;
    color: var(--text-color);
  }

  .nav a:last-child {
    border-bottom: none;
  }

  .nav-mobile-only {
    display: block;
  }

  .header-buttons {
    position: static;
    width: 100%;
    background-color: transparent;
    padding: 0;
    flex-direction: column;
    box-shadow: none;
    z-index: auto;
    transition: none;
    border-top: none;
    margin-top: 10px;
    gap: 0;
  }

  .btn-login,
  .btn-register {
    width: 100%;
    padding: 18px 0;
    font-size: 1.05rem;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #f5f5f7;
    background-color: transparent;
    text-align: left;
    justify-content: flex-start;
  }

  .btn-login {
    color: var(--text-color);
    order: 1;
  }

  .btn-register {
    background-color: transparent;
    color: var(--accent-color);
    order: 2;
    border-bottom: none;
  }

  .btn-login:hover,
  .btn-register:hover {
    background-color: #f5f5f7;
  }

  .hero-about h1 {
    font-size: 2rem;
  }

  .hero-about > .container > p {
    font-size: 1.1rem;
  }

  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
  }

  .stat-card {
    padding: 20px 12px;
  }

  .stat-number {
    font-size: 1.8rem;
  }

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

  .hero h2 {
    font-size: 2rem;
  }

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

  .promo h3, .acceso h3 {
    font-size: 2rem;
  }

  .how-it-works h3,
  .testimonials h3,
  .faq h3 {
    font-size: 2rem;
  }

  .how-it-works p,
  .testimonials p,
  .faq p {
    font-size: 1rem;
    margin-bottom: 40px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .step-icon {
    width: 70px;
    height: 70px;
  }

  .step-icon ion-icon {
    font-size: 35px;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonial-card {
    padding: 25px;
  }

  .faq-question {
    font-size: 0.95rem;
    padding: 18px 20px;
  }

  .faq-answer p {
    font-size: 0.9rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 18px 20px;
  }

  .social-section h3 {
    font-size: 2rem;
  }

  .social-section p {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .social-links {
    gap: 20px;
  }

  .social-link {
    padding: 25px 35px;
    min-width: 120px;
  }

  .social-link svg {
    width: 35px;
    height: 35px;
  }

  .social-link span {
    font-size: 0.9rem;
  }

  .nav {
    flex-direction: column;
    gap: 10px;
  }

  .header .container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .header-main-logo {
    order: 1;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .header-buttons {
    order: 2;
  }

  .btn-login,
  .btn-register {
    padding: 8px 18px;
    font-size: 0.85rem;
  }

  .access-options {
    flex-direction: column;
    align-items: center;
  }

  .features {
    grid-template-columns: 1fr;
  }
}
/* Responsive styles for Mission, Vision & Values */
@media (max-width: 768px) {
  .mv-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .mv-card {
    padding: 40px 30px;
  }

  .mv-card h3 {
    font-size: 1.6rem;
  }

  .mv-card p {
    font-size: 1rem;
  }

  .values-section h2 {
    font-size: 2rem;
  }

  .values-section .section-subtitle {
    font-size: 1rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .value-card {
    padding: 30px 25px;
  }

  .value-card h4 {
    font-size: 1.2rem;
  }

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

  .footer-section:first-child {
    grid-column: 1 / -1;
  }
}

/* Extra small devices (phones, less than 480px) */
@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .stat-card {
    padding: 18px 15px;
  }

  .stat-number {
    font-size: 1.6rem;
  }

  .stat-label {
    font-size: 0.75rem;
    line-height: 1.3;
  }

  .hero-about h1 {
    font-size: 1.6rem;
  }

  .hero-about > .container > p {
    font-size: 0.95rem;
  }

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

  .footer-section:first-child {
    grid-column: 1;
  }

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