/* ========================================
   ACADEMIA NARVEZZI - Sistema de Diseño
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&display=swap');

/* --- Variables CSS --- */
:root {
  /* Colores principales */
  --orange: #F26524;
  --orange-light: #F2A924;
  --orange-dark: #D94F1A;
  --green-dark: #0D3A18;
  --green-lime: #8CA121;
  --green-lime-light: #A8B84A;

  /* Degradados */
  --gradient-orange: linear-gradient(135deg, #F26524, #F2A924);
  --gradient-green: linear-gradient(135deg, #0D3A18, #8CA121);
  --gradient-hero: rgba(136, 142, 53, 0.9);
  --gradient-dark: linear-gradient(180deg, #0D3A18, #1a5c2e);
  --gradient-subtle: linear-gradient(135deg, #f8f9fa, #e8f5e9);
  --gradient-card: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(248, 249, 250, 0.95));

  /* Neutros */
  --text-primary: #2F2E2E;
  --text-secondary: #5a5a5a;
  --text-light: #888;
  --bg-white: #ffffff;
  --bg-cream: #FAFAF8;
  --bg-light: #f5f5f3;
  --border-light: #e0e0e0;

  /* Tipografías */
  --font-heading: 'Sora', sans-serif;
  --font-body: 'Sora', sans-serif;

  /* Espaciados */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  /* Bordes */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-full: 50%;

  /* Sombras */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 12px 60px rgba(0, 0, 0, 0.15);
  --shadow-glow-orange: 0 4px 30px rgba(242, 101, 36, 0.3);
  --shadow-glow-green: 0 4px 30px rgba(140, 161, 33, 0.3);

  /* Transiciones */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Layout */
  --container-max: 1200px;
  --header-height: 120px;
}

/* --- Reset y Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--bg-white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

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

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--green-dark);
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* --- HEADER / NAVEGACIÓN --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  transition: all var(--transition-slow);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.header.scrolled {
  height: var(--header-height);
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.98);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
}

.logo img {
  height: 90px;
  width: auto;
  transition: var(--transition-slow);
}

.header.scrolled .logo img {
  height: 90px;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--green-dark);
  line-height: 1.1;
}

.logo-text span {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--orange);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-primary);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--orange);
  background: rgba(242, 101, 36, 0.06);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient-orange);
  border-radius: 2px;
  transition: width var(--transition-base);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 60%;
}

/* --- Nav Dropdown --- */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex !important;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
}

.dropdown-arrow {
  font-size: 0.7rem;
  transition: transform var(--transition-fast);
  display: inline-block;
  margin-top: 1px;
}

.nav-dropdown:hover .dropdown-arrow,
.nav-dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 0;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  min-width: 250px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all var(--transition-fast);
  z-index: 200;
  overflow: hidden;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block !important;
  padding: 0.75rem 1.25rem !important;
  font-size: 0.9rem !important;
  color: var(--text-primary) !important;
  border-bottom: 1px solid var(--border-light);
  transition: all var(--transition-fast);
  border-radius: 0 !important;
}

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

.nav-dropdown-menu a:hover {
  background: rgba(242, 101, 36, 0.06) !important;
  color: var(--orange) !important;
  padding-left: 1.5rem !important;
}

.nav-dropdown-menu a::after {
  display: none !important;
}

.nav-dropdown-label {
  display: block;
  padding: 0.4rem 1.25rem 0.3rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  background: var(--bg-cream);
  border-top: 1px solid var(--border-light);
}

.nav-dropdown-label:first-child {
  border-top: none;
}

.btn-cta-nav {
  background: var(--gradient-orange);
  color: white !important;
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow-glow-orange);
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn-cta-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 35px rgba(242, 101, 36, 0.4);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--green-dark);
  border-radius: 3px;
  transition: all var(--transition-base);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* --- BOTONES --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: 1rem;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all var(--transition-base);
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient-orange);
  color: #fff;
  box-shadow: var(--shadow-glow-orange);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(242, 101, 36, 0.45);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-orange);
}

.btn-green {
  background: var(--gradient-green);
  color: #fff;
  box-shadow: var(--shadow-glow-green);
}

.btn-green:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(13, 58, 24, 0.35);
}

.btn-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all var(--transition-base);
  cursor: pointer;
}

.btn-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

/* --- HERO SLIDER --- */
.hero {
  position: relative;
  height: 800px;
  overflow: hidden;
  margin-top: var(--header-height);
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-slide.active .hero-slide-bg {
  transform: scale(1);
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
  color: #fff;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #ff5207;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-xl);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: var(--space-md);
  width: fit-content;
  animation: fadeInUp 0.8s ease;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--orange-light);
  border-radius: var(--radius-full);
  animation: pulse 2s infinite;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  color: #fff;
  max-width: 900px;
  margin-bottom: var(--space-sm);
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title .highlight {
  color: #ffc707;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 400;
  max-width: 550px;
  margin-bottom: var(--space-lg);
  opacity: 0.9;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s both;
}

/* Slider Controls */
.slider-controls {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 12px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all var(--transition-base);
  border: 2px solid transparent;
}

.slider-dot.active {
  background: var(--orange);
  border-color: rgba(255, 255, 255, 0.6);
  transform: scale(1.2);
}

.slider-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
}

.slider-arrow {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: all;
  transition: all var(--transition-base);
  color: #fff;
  font-size: 1.2rem;
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1);
}

/* --- SECCIONES --- */
.section {
  padding: var(--space-2xl) 0;
}

.section-light {
  background: var(--bg-cream);
}

.section-dark {
  background: var(--gradient-dark);
  color: #fff;
}

.section-dark h2,
.section-dark h3 {
  color: #fff;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-xl);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(242, 101, 36, 0.08);
  color: var(--orange);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-xl);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-sm);
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: var(--space-sm);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* --- PROGRAMAS CARDS --- */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: var(--space-lg);
}

.program-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  position: relative;
}

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

.program-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gradient-orange);
  color: #fff;
  padding: 0.3rem 1rem;
  border-radius: var(--radius-xl);
  font-size: 0.8rem;
  font-weight: 700;
  z-index: 2;
}

.program-card-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.program-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.program-card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(transparent, var(--bg-white));
}

.program-card-body {
  padding: var(--space-md) var(--space-lg);
  padding-top: 0;
}

.program-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
  margin-top: -28px;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-md);
}

.program-card-icon.orange {
  background: var(--gradient-orange);
  color: #fff;
}

.program-card-icon.green {
  background: var(--gradient-green);
  color: #fff;
}

.program-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.program-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: var(--space-md);
}

.program-card-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: var(--space-md);
}

.program-card-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.program-card-features li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: var(--radius-full);
  background: rgba(140, 161, 33, 0.1);
  color: var(--green-lime);
  font-size: 0.75rem;
  font-weight: 700;
}

/* --- STATS --- */
.stats-section {
  background: var(--gradient-green);
  padding: var(--space-xl) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  text-align: center;
  color: #fff;
}

.stat-item {
  padding: var(--space-md);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 0.3rem;
  background: linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.7));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.95rem;
  opacity: 0.85;
  font-weight: 500;
}

/* --- POR QUÉ NARVEZZI --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.feature-card {
  background: var(--bg-white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border: 1px solid var(--border-light);
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto var(--space-md);
  background: rgba(242, 101, 36, 0.08);
  color: var(--orange);
  transition: all var(--transition-base);
}

.feature-card:hover .feature-icon {
  background: var(--gradient-orange);
  color: #fff;
  transform: scale(1.1);
}

.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* --- ¿POR QUÉ ELEGIRNOS? --- */
.why-us-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.why-us-card {
  padding: var(--space-xl) var(--space-lg);
  border-left: 4px solid var(--orange);
  text-align: left;
}

.why-us-card .feature-icon {
  margin: 0 0 var(--space-md) 0;
}

.why-us-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--green-dark);
}

.why-us-card p {
  font-size: 0.95rem;
  line-height: 1.8;
}

/* --- MODELO EDUCATIVO NARVEZZI --- */
.modelo-educativo {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a2e14 0%, #0D3A18 40%, #14491f 100%);
}

.modelo-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.modelo-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}

.modelo-shape-1 {
  width: 400px;
  height: 400px;
  background: var(--orange);
  top: -100px;
  right: -80px;
  animation: modeloFloat 8s ease-in-out infinite;
}

.modelo-shape-2 {
  width: 300px;
  height: 300px;
  background: var(--green-lime);
  bottom: -80px;
  left: -60px;
  animation: modeloFloat 10s ease-in-out infinite reverse;
}

.modelo-shape-3 {
  width: 200px;
  height: 200px;
  background: var(--orange-light);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: modeloFloat 12s ease-in-out infinite;
}

@keyframes modeloFloat {

  0%,
  100% {
    transform: translate(0, 0);
  }

  33% {
    transform: translate(20px, -20px);
  }

  66% {
    transform: translate(-15px, 15px);
  }
}

.modelo-tag {
  background: rgba(242, 101, 36, 0.2) !important;
  color: var(--orange-light) !important;
}

.modelo-educativo .section-title {
  color: #fff;
}

.modelo-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.modelo-pillar {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  backdrop-filter: blur(10px);
  transition: all var(--transition-base);
  overflow: hidden;
}

.modelo-pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-orange);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.modelo-pillar:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(242, 101, 36, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modelo-pillar:hover::before {
  opacity: 1;
}

.modelo-pillar-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: var(--space-md);
  background: rgba(242, 101, 36, 0.12);
  transition: all var(--transition-base);
}

.modelo-pillar:hover .modelo-pillar-icon {
  background: var(--gradient-orange);
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(242, 101, 36, 0.4);
}

.modelo-pillar-content h3 {
  color: #fff;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.modelo-pillar-content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.8;
}

.modelo-pillar-number {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  font-family: var(--font-heading);
  transition: color var(--transition-base);
}

.modelo-pillar:hover .modelo-pillar-number {
  color: rgba(242, 101, 36, 0.12);
}

.modelo-motto {
  text-align: center;
}

.modelo-motto-inner {
  display: inline-flex;
  align-items: center;
  gap: var(--space-md);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 1rem 2.5rem;
  backdrop-filter: blur(10px);
}

.modelo-motto-word {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #fff, var(--orange-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.modelo-motto-dot {
  color: var(--orange);
  font-size: 1.5rem;
  font-weight: 700;
}

/* --- TESTIMONIOS --- */
.testimonials-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-card {
  background: var(--bg-white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 6rem;
  font-family: Georgia, serif;
  color: rgba(242, 101, 36, 0.1);
  line-height: 1;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-primary);
  font-style: italic;
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  background: var(--gradient-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial-info h4 {
  font-size: 1rem;
  color: var(--green-dark);
}

.testimonial-info span {
  font-size: 0.85rem;
  color: var(--text-light);
}

.testimonials-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: var(--space-md);
}

.testimonials-nav button {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  border: none;
  background: var(--border-light);
  cursor: pointer;
  transition: all var(--transition-base);
}

.testimonials-nav button.active {
  background: var(--orange);
  width: 30px;
  border-radius: 5px;
}

/* --- CTA SECTION --- */
.cta-section {
  padding: var(--space-2xl) 0;
  background: var(--gradient-green);
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: rgba(242, 101, 36, 0.15);
  border-radius: var(--radius-full);
  filter: blur(60px);
}

.cta-section h2 {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: var(--space-sm);
}

.cta-section p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto var(--space-lg);
}

/* ── Gallery Carousel ─────────────────────────────── */
.gallery-carousel {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 900px;
  margin: 0 auto;
  cursor: pointer;
}

.gallery-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(.4,0,.2,1);
  height: 480px;
}

.gallery-slide {
  min-width: 100%;
  position: relative;
  flex-shrink: 0;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.72));
  color: #fff;
  padding: 2.5rem 2rem 1.5rem;
}

.gallery-caption h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.2rem;
}

.gallery-caption p {
  font-size: 0.88rem;
  opacity: 0.85;
  margin: 0;
}

.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.92);
  border: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  transition: background 0.2s, transform 0.2s;
}

.gallery-btn:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.08);
}

.gallery-prev { left: 1rem; }
.gallery-next { right: 1rem; }

.gallery-dots {
  position: absolute;
  bottom: 1.1rem;
  right: 1.2rem;
  display: flex;
  gap: 0.45rem;
  z-index: 3;
}

.gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}

.gallery-dot.active {
  background: #fff;
  transform: scale(1.4);
}

@media (max-width: 768px) {
  .gallery-track { height: 260px; }
  .gallery-caption h3 { font-size: 1rem; }
  .gallery-caption p { display: none; }
  .gallery-btn { width: 36px; height: 36px; font-size: 1.1rem; }
}

/* --- FOOTER --- */
.footer {
  background: #0a2e14;
  color: rgba(255, 255, 255, 0.8);
  padding: var(--space-xl) 0 var(--space-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-brand p {
  margin-top: var(--space-sm);
  font-size: 0.9rem;
  line-height: 1.8;
  opacity: 0.8;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: var(--space-md);
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  font-size: 1.2rem;
  background: none;
}

.footer-social a:hover {
  transform: translateY(-3px);
}

.footer h4 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: var(--space-md);
  font-weight: 700;
}

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

.footer-links a {
  font-size: 0.9rem;
  opacity: 0.7;
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--orange);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.9rem;
}

.footer-contact-icon {
  width: 20px;
  text-align: center;
  color: var(--orange);
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  opacity: 0.6;
}

/* --- PÁGINA PROGRAMAS --- */
.page-hero {
  background: #ffffff;
  padding: calc(var(--header-height) + var(--space-xl)) 0 var(--space-xl);
  text-align: center;
  color: var(--text-primary);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: rgba(242, 101, 36, 0.05);
  border-radius: 50%;
  filter: blur(80px);
}

.page-hero h1 {
  color: var(--green-dark);
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: var(--space-sm);
}

.page-hero p {
  font-size: 1.15rem;
  opacity: 1;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-bottom: var(--space-md);
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.breadcrumb a:hover {
  color: var(--orange);
}

.breadcrumb .separator {
  font-size: 0.7rem;
}

/* Programas detalle */
.program-detail {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-xl);
}

.program-detail-header {
  padding: var(--space-xl);
  position: relative;
  color: #fff;
}

.program-detail-header.orange-bg {
  background: var(--gradient-orange);
}

.program-detail-header.green-bg {
  background: var(--gradient-green);
}

.program-detail-header h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.program-detail-header p {
  opacity: 0.9;
  font-size: 1.05rem;
}

.program-detail-body {
  padding: var(--space-xl);
}

.program-detail-body h3 {
  font-size: 1.3rem;
  margin-bottom: var(--space-sm);
  margin-top: var(--space-lg);
}

.program-detail-body h3:first-child {
  margin-top: 0;
}

.program-subjects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-sm);
  margin: var(--space-md) 0;
}

.subject-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.8rem 1.2rem;
  border-radius: var(--radius-md);
  background: var(--bg-cream);
  border: 1px solid var(--border-light);
  font-weight: 500;
  transition: all var(--transition-base);
}

.subject-chip:hover {
  border-color: var(--orange);
  background: rgba(242, 101, 36, 0.05);
}

.subject-chip-icon {
  font-size: 1.3rem;
}

/* Tabla comparativa */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin: var(--space-lg) 0;
}

.comparison-table th {
  background: var(--green-dark);
  color: #fff;
  padding: 1rem 1.5rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
}

.comparison-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.95rem;
}

.comparison-table tr:nth-child(even) {
  background: var(--bg-cream);
}

.comparison-table tr:hover {
  background: rgba(242, 101, 36, 0.04);
}

.comparison-table .check {
  color: var(--green-lime);
  font-size: 1.2rem;
}

/* --- HISTORIA --- */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gradient-orange);
  border-radius: 3px;
}

.timeline-item {
  position: relative;
  margin-bottom: var(--space-xl);
  padding-left: var(--space-lg);
}

.timeline-dot {
  position: absolute;
  left: -33px;
  top: 5px;
  width: 20px;
  height: 20px;
  border-radius: var(--radius-full);
  background: var(--orange);
  border: 4px solid var(--bg-white);
  box-shadow: 0 0 0 3px var(--orange);
}

.timeline-year {
  display: inline-block;
  background: var(--gradient-orange);
  color: #fff;
  padding: 0.3rem 1rem;
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.timeline-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.timeline-item p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Misión y Visión */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.mission-card {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.mission-card.mission {
  background: var(--gradient-green);
  color: #fff;
}

.mission-card.vision {
  background: var(--gradient-orange);
  color: #fff;
}

.mission-card h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

.mission-card p {
  font-size: 1rem;
  line-height: 1.8;
  opacity: 0.95;
}

.mission-card-icon {
  font-size: 3rem;
  margin-bottom: var(--space-sm);
  opacity: 0.8;
}

/* Valores */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-md);
}

.value-card {
  text-align: center;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: all var(--transition-base);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-sm);
}

.value-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--green-dark);
}

.value-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* --- BLOG --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: var(--space-lg);
}

.blog-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border: 1px solid var(--border-light);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.blog-card-image {
  height: 200px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: var(--space-md);
}

.blog-card-category {
  display: inline-block;
  background: rgba(242, 101, 36, 0.08);
  color: var(--orange);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-xl);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.blog-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  transition: color var(--transition-fast);
}

.blog-card:hover h3 {
  color: var(--orange);
}

.blog-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: var(--space-sm);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.85rem;
  color: var(--text-light);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--border-light);
}

/* Blog Post */
.blog-post {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
}

.blog-post-header {
  margin-bottom: var(--space-xl);
}

.blog-post-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: var(--space-sm);
}

.blog-post-meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  color: var(--text-light);
  font-size: 0.9rem;
}

.blog-post-content {
  font-size: 1.05rem;
  line-height: 2;
}

.blog-post-content h2 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
  font-size: 1.5rem;
}

.blog-post-content p {
  margin-bottom: var(--space-md);
}

.blog-post-content ul,
.blog-post-content ol {
  padding-left: var(--space-md);
  margin-bottom: var(--space-md);
}

.blog-post-content li {
  list-style: disc;
  margin-bottom: 0.5rem;
}

.blog-post-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-lg);
}

.blog-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: var(--space-lg);
  justify-content: center;
}

.blog-cat-btn {
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-xl);
  border: 2px solid var(--border-light);
  background: var(--bg-white);
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition-base);
  font-family: var(--font-body);
  color: var(--text-primary);
}

.blog-cat-btn:hover,
.blog-cat-btn.active {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(242, 101, 36, 0.05);
}

/* --- CONTACTO --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

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

.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition-fast);
  background: var(--bg-cream);
  color: var(--text-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--bg-white);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-info-card {
  background: var(--bg-white);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  border: 1px solid var(--border-light);
  transition: all var(--transition-base);
}

.contact-info-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: var(--radius-md);
  background: rgba(242, 101, 36, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--orange);
}

.contact-info-card h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--green-dark);
}

.contact-info-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.contact-map {
  margin-top: var(--space-md);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 250px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* --- ANIMACIONES --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile menu overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.mobile-menu-overlay.show {
  opacity: 1;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

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

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

  .modelo-pillars .modelo-pillar:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 80px;
  }

  .logo img {
    height: 55px;
  }

  .logo-text {
    font-size: 1.1rem;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--bg-white);
    flex-direction: column;
    padding: calc(var(--header-height) + var(--space-lg)) var(--space-lg) var(--space-lg);
    transition: right var(--transition-base);
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    align-items: flex-start;
  }

  .nav.open {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  .nav-links a {
    padding: 1rem;
    width: 100%;
    border-bottom: 1px solid var(--border-light);
  }

  .btn-cta-nav {
    width: 100%;
    text-align: center;
    justify-content: center;
    margin-top: var(--space-sm);
  }

  /* Dropdown mobile */
  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-trigger {
    padding: 1rem;
    width: 100%;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-light);
  }

  .nav-dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    border-radius: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    background: rgba(242, 101, 36, 0.04);
    border-left: 3px solid var(--orange);
    transition: none;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: block;
  }

  .nav-dropdown-menu a {
    padding: 0.85rem 1rem 0.85rem 1.5rem !important;
  }

  .hamburger {
    display: flex;
  }

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

  .hero {
    height: 600px;
  }

  .hero-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

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

  .why-us-grid {
    grid-template-columns: 1fr;
  }

  .modelo-pillars {
    grid-template-columns: 1fr;
  }

  .modelo-pillars .modelo-pillar:last-child {
    max-width: 100%;
  }

  .modelo-motto-inner {
    padding: 0.8rem 1.5rem;
    gap: var(--space-sm);
  }

  .modelo-motto-word {
    font-size: 1.1rem;
  }

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

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

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

  .comparison-table {
    font-size: 0.85rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.7rem;
  }

  .slider-arrows {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 500px;
  }

  .section {
    padding: var(--space-xl) 0;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .program-card-body {
    padding: var(--space-sm) var(--space-md);
  }

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