/* EDUCATIC Marketing Site - Styles */

:root {
  --educatic-blue: #3EB3E3;
  --educatic-dark: #279DD4;
  --educatic-light: #CDEAF8;
  --text-dark: #444444;
  --text-gray: #6B7280;
  --bg-light: #F8FAFC;
  --white: #FFFFFF;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background: var(--white);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--educatic-blue), var(--educatic-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-brand {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.logo-tagline {
  font-size: 0.625rem;
  color: var(--educatic-blue);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.nav-link {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  transition: color 0.2s;
  position: relative;
}

.nav-link:hover {
  color: var(--educatic-blue);
}

.nav-link.active {
  color: var(--educatic-blue);
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s;
}

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

.dropdown-item {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}

.dropdown-item:hover {
  background: var(--bg-light);
}

.dropdown-item strong {
  display: block;
  color: var(--text-dark);
  font-size: 0.875rem;
}

.dropdown-item span {
  display: block;
  color: var(--text-gray);
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

/* CTA Buttons */
.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
}

.phone-link:hover {
  color: var(--educatic-blue);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--educatic-blue), var(--educatic-dark));
  color: white;
  box-shadow: 0 4px 14px rgba(62, 179, 227, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(62, 179, 227, 0.4);
}

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

.btn-outline:hover {
  background: rgba(62, 179, 227, 0.05);
}

.btn-white {
  background: white;
  color: var(--educatic-blue);
}

.btn-white:hover {
  background: #f8fafc;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #ffffff 0%, #f5f9fc 50%, #e8f4fa 100%);
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(62, 179, 227, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--educatic-light);
  color: var(--educatic-dark);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.hero-title span {
  background: linear-gradient(135deg, var(--educatic-blue), var(--educatic-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.stat-icon {
  width: 48px;
  height: 48px;
  background: var(--educatic-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--educatic-blue);
}

.stat-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-gray);
}

/* Hero Visual */
.hero-visual {
  position: relative;
}

.ecosystem-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--educatic-blue), var(--educatic-dark));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  font-weight: 700;
  box-shadow: 0 10px 40px rgba(62, 179, 227, 0.3);
  z-index: 10;
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.ecosystem-card {
  background: white;
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  text-decoration: none;
}

.ecosystem-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(62, 179, 227, 0.3);
  transform: translateY(-4px);
}

.ecosystem-card:nth-child(2),
.ecosystem-card:nth-child(4) {
  margin-top: 2rem;
}

.ecosystem-icon {
  width: 40px;
  height: 40px;
  background: var(--educatic-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--educatic-blue);
  margin-bottom: 0.75rem;
  transition: all 0.3s;
}

.ecosystem-card:hover .ecosystem-icon {
  background: var(--educatic-blue);
  color: white;
}

.ecosystem-name {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.ecosystem-desc {
  font-size: 0.75rem;
  color: var(--text-gray);
}

.ecosystem-analitica {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--educatic-blue), var(--educatic-dark));
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(62, 179, 227, 0.3);
}

/* Stats Bar */
.stats-bar {
  background: white;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 3rem 0;
}

.stats-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stats-item {
  text-align: center;
}

.stats-item svg {
  color: var(--educatic-blue);
  margin-bottom: 0.75rem;
}

.stats-value {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--educatic-blue), var(--educatic-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stats-label {
  font-size: 0.875rem;
  color: var(--text-gray);
  margin-top: 0.25rem;
}

/* Section Styles */
.section {
  padding: 6rem 0;
}

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

.section-white {
  background: white;
}

.section-dark {
  background: linear-gradient(135deg, #444444, #2d2d2d);
  color: white;
}

.section-gradient {
  background: linear-gradient(135deg, var(--educatic-blue), var(--educatic-dark));
  color: white;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-title span {
  background: linear-gradient(135deg, var(--educatic-blue), var(--educatic-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-dark .section-title,
.section-gradient .section-title {
  color: white;
}

.section-description {
  font-size: 1.125rem;
  color: var(--text-gray);
}

.section-dark .section-description,
.section-gradient .section-description {
  color: rgba(255, 255, 255, 0.8);
}

/* Cards */
.card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s;
}

.card:hover {
  box-shadow: var(--shadow-lg);
}

.card-content {
  padding: 1.5rem;
}

/* Ecosystems Section */
.ecosystems-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ecosystem-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s;
  text-decoration: none;
}

.ecosystem-row:hover {
  box-shadow: var(--shadow-lg);
}

.ecosystem-header {
  padding: 1.5rem;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ecosystem-header.administra { background: linear-gradient(135deg, #3B82F6, #06B6D4); }
.ecosystem-header.comunica { background: linear-gradient(135deg, #06B6D4, #3B82F6); }
.ecosystem-header.siempre { background: linear-gradient(135deg, #F43F5E, #EC4899); }
.ecosystem-header.proyecta { background: linear-gradient(135deg, #F59E0B, #F97316); }
.ecosystem-header.analitica { background: linear-gradient(135deg, #10B981, #14B8A6); }

.ecosystem-header svg {
  margin-bottom: 0.75rem;
}

.ecosystem-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.ecosystem-header span {
  font-size: 0.875rem;
  opacity: 0.9;
}

.ecosystem-body {
  padding: 1.5rem;
}

.ecosystem-body p {
  color: var(--text-gray);
  margin-bottom: 1rem;
}

.ecosystem-modules {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.module-tag {
  background: var(--bg-light);
  color: var(--text-gray);
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
}

/* Results Section */
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.result-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s;
}

.result-card:hover {
  box-shadow: var(--shadow-lg);
}

.result-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--educatic-blue), var(--educatic-dark));
}

.result-content {
  padding: 2rem;
  text-align: center;
}

.result-metric {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--educatic-blue), var(--educatic-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.result-label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.result-university {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.result-description {
  color: var(--text-gray);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.result-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.result-tag {
  background: var(--educatic-light);
  color: var(--educatic-dark);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
}

/* Methodology Section */
.methodology-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.step-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.5rem;
  position: relative;
}

.step-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--educatic-blue), var(--educatic-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step-description {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.step-arrow {
  position: absolute;
  top: 50%;
  right: -24px;
  transform: translateY(-50%);
  color: var(--educatic-blue);
}

.methodology-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 4rem;
  padding: 1.5rem 3rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
}

.methodology-stat {
  text-align: center;
}

.methodology-stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--educatic-blue);
}

.methodology-stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.methodology-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
}

/* CTA Section */
.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-description {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.cta-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  opacity: 0.9;
}

/* Footer */
.footer {
  background: #444444;
  color: white;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  text-decoration: none;
}

.footer-logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--educatic-blue), var(--educatic-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
}

.footer-logo-brand {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
}

.footer-logo-tagline {
  font-size: 0.625rem;
  color: var(--educatic-blue);
  font-weight: 500;
  letter-spacing: 0.1em;
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact a,
.footer-contact div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.875rem;
}

.footer-contact a:hover {
  color: var(--educatic-blue);
}

.footer-title {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

/* Page Hero */
.page-hero {
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.page-hero.administra { background: linear-gradient(135deg, #EFF6FF, #ECFEFF); }
.page-hero.comunica { background: linear-gradient(135deg, #ECFEFF, #EFF6FF); }
.page-hero.siempre { background: linear-gradient(135deg, #FFF1F2, #FDF2F8); }
.page-hero.proyecta { background: linear-gradient(135deg, #FFFBEB, #FFF7ED); }
.page-hero.analitica { background: linear-gradient(135deg, #ECFDF5, #F0FDFA); }
.page-hero.casos { background: linear-gradient(135deg, #F8FAFC, #FFFFFF); }
.page-hero.demo { background: linear-gradient(135deg, #F8FAFC, #FFFFFF); }
.page-hero.recursos { background: linear-gradient(135deg, #F8FAFC, #FFFFFF); }

.page-hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.page-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.page-badge.administra { background: #DBEAFE; color: #2563EB; }
.page-badge.comunica { background: #CFFAFE; color: #0891B2; }
.page-badge.siempre { background: #FFE4E6; color: #E11D48; }
.page-badge.proyecta { background: #FEF3C7; color: #D97706; }
.page-badge.analitica { background: #D1FAE5; color: #059669; }
.page-badge.casos { background: var(--educatic-light); color: var(--educatic-dark); }
.page-badge.recursos { background: var(--educatic-light); color: var(--educatic-dark); }

.page-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.page-title span {
  background: linear-gradient(135deg, var(--educatic-blue), var(--educatic-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-title.administra span {
  background: linear-gradient(135deg, #3B82F6, #06B6D4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-title.comunica span {
  background: linear-gradient(135deg, #06B6D4, #3B82F6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-title.siempre span {
  background: linear-gradient(135deg, #F43F5E, #EC4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-title.proyecta span {
  background: linear-gradient(135deg, #F59E0B, #F97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-title.analitica span {
  background: linear-gradient(135deg, #10B981, #14B8A6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-description {
  font-size: 1.25rem;
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* Benefits Bar */
.benefits-bar {
  background: white;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 2rem 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon.administra { background: #DBEAFE; color: #3B82F6; }
.benefit-icon.comunica { background: #CFFAFE; color: #06B6D4; }
.benefit-icon.siempre { background: #FFE4E6; color: #E11D48; }
.benefit-icon.proyecta { background: #FEF3C7; color: #D97706; }
.benefit-icon.analitica { background: #D1FAE5; color: #10B981; }

.benefit-title {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.benefit-desc {
  font-size: 0.875rem;
  color: var(--text-gray);
}

/* Modules Grid */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.modules-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.module-card {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: all 0.3s;
}

.module-card:hover {
  box-shadow: var(--shadow-lg);
}

.module-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.module-icon.administra { background: #DBEAFE; color: #3B82F6; }
.module-icon.comunica { background: #CFFAFE; color: #06B6D4; }
.module-icon.siempre { background: #FFE4E6; color: #E11D48; }
.module-icon.proyecta { background: #FEF3C7; color: #D97706; }
.module-icon.analitica { background: #D1FAE5; color: #10B981; }

.module-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.module-description {
  font-size: 0.875rem;
  color: var(--text-gray);
  margin-bottom: 1rem;
}

.module-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.module-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-gray);
}

.module-feature svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.module-feature.administra svg { color: #3B82F6; }
.module-feature.comunica svg { color: #06B6D4; }
.module-feature.siempre svg { color: #E11D48; }
.module-feature.proyecta svg { color: #D97706; }
.module-feature.analitica svg { color: #10B981; }

/* Form Styles */
.form-section {
  padding: 4rem 0;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.form-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 1.5rem;
}

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

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  font-size: 0.875rem;
  transition: all 0.2s;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--educatic-blue);
  box-shadow: 0 0 0 3px rgba(62, 179, 227, 0.1);
}

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

.form-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-info-box {
  background: var(--bg-light);
  border-radius: 16px;
  padding: 1.5rem;
}

.form-info-title {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.form-info-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-gray);
}

.form-info-item svg {
  color: var(--educatic-blue);
}

.form-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-contact a,
.form-contact div {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-gray);
  text-decoration: none;
}

.form-contact a:hover {
  color: var(--educatic-blue);
}

.form-highlight {
  background: linear-gradient(135deg, var(--educatic-blue), var(--educatic-dark));
  border-radius: 16px;
  padding: 1.5rem;
  color: white;
}

.form-highlight h3 {
  font-weight: 700;
  margin-bottom: 1rem;
}

.form-highlight ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-highlight li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  opacity: 0.9;
}

/* Resources Grid */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.resource-card {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: all 0.3s;
}

.resource-card:hover {
  box-shadow: var(--shadow-lg);
}

.resource-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.resource-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}

.resource-card:hover .resource-icon {
  background: var(--educatic-blue);
  color: white;
}

.resource-icon.blue { background: #DBEAFE; color: #3B82F6; }
.resource-icon.rose { background: #FFE4E6; color: #E11D48; }
.resource-icon.emerald { background: #D1FAE5; color: #10B981; }
.resource-icon.cyan { background: #CFFAFE; color: #0891B2; }
.resource-icon.amber { background: #FEF3C7; color: #D97706; }
.resource-icon.purple { background: #E9D5FF; color: #9333EA; }

.resource-type {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.resource-type.blue { background: #DBEAFE; color: #2563EB; }
.resource-type.rose { background: #FFE4E6; color: #E11D48; }
.resource-type.emerald { background: #D1FAE5; color: #059669; }
.resource-type.cyan { background: #CFFAFE; color: #0891B2; }
.resource-type.amber { background: #FEF3C7; color: #D97706; }
.resource-type.purple { background: #E9D5FF; color: #9333EA; }

.resource-title {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.resource-description {
  font-size: 0.875rem;
  color: var(--text-gray);
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.resource-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--educatic-blue);
  font-weight: 500;
  font-size: 0.875rem;
  text-decoration: none;
}

.resource-link:hover {
  gap: 0.5rem;
}

/* Newsletter */
.newsletter-section {
  padding: 4rem 0;
}

.newsletter-box {
  background: linear-gradient(135deg, #444444, #2d2d2d);
  border-radius: 24px;
  padding: 3rem;
  text-align: center;
  color: white;
}

.newsletter-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.newsletter-description {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 0.875rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 0.875rem;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--educatic-blue);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.testimonial-quote {
  font-size: 2rem;
  color: var(--educatic-blue);
  margin-bottom: 1rem;
}

.testimonial-text {
  color: var(--text-gray);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  background: var(--educatic-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--educatic-blue);
  font-weight: 700;
}

.testimonial-name {
  font-weight: 600;
  color: var(--text-dark);
}

.testimonial-role {
  font-size: 0.875rem;
  color: var(--text-gray);
}

/* Thank You Page */
.thank-you {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #F8FAFC, #FFFFFF);
  padding: 2rem;
}

.thank-you-content {
  max-width: 600px;
  text-align: center;
}

.thank-you-icon {
  width: 96px;
  height: 96px;
  background: linear-gradient(135deg, var(--educatic-blue), var(--educatic-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: white;
}

.thank-you-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.thank-you-description {
  font-size: 1.125rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
}

.thank-you-box {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
}

.thank-you-box h2 {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.thank-you-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.thank-you-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  text-align: left;
}

.thank-you-step-icon {
  width: 40px;
  height: 40px;
  background: var(--educatic-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--educatic-blue);
  flex-shrink: 0;
}

.thank-you-step h4 {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.thank-you-step p {
  font-size: 0.875rem;
  color: var(--text-gray);
}

.thank-you-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.thank-you-footer {
  margin-top: 2rem;
  color: var(--text-gray);
  font-size: 0.875rem;
}

.thank-you-footer a {
  color: var(--educatic-blue);
  text-decoration: none;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .hero-visual {
    display: none;
  }
  
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .results-grid,
  .modules-grid,
  .resources-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .ecosystem-row {
    grid-template-columns: 1fr;
  }
  
  .methodology-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .step-arrow {
    display: none;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav,
  .header-cta {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title,
  .page-title,
  .cta-title {
    font-size: 2rem;
  }
  
  .stats-container,
  .results-grid,
  .modules-grid,
  .resources-grid,
  .benefits-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .methodology-steps {
    grid-template-columns: 1fr;
  }
  
  .methodology-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .methodology-divider {
    display: none;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .thank-you-buttons {
    flex-direction: column;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
}
