/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0f1b2d;
  --navy-dark: #0a1220;
  --navy-mid: #162a45;
  --cyan: #00d4aa;
  --cyan-hover: #00b894;
  --cyan-light: rgba(0, 212, 170, 0.08);
  --cyan-glow: rgba(0, 212, 170, 0.15);
  --white: #ffffff;
  --dark-text: #1a1f36;
  --gray-text: #6b7280;
  --light-bg: #f8fafc;
  --card-bg: #ffffff;
  --border: #e5e7eb;
  --border-light: #f1f3f5;
  --red-soft: #fee2e2;
  --red-border: #fca5a5;
  --red-text: #dc2626;
  --green-soft: #dcfce7;
  --green-border: #86efac;
  --green-text: #16a34a;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 25px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 50px -12px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--dark-text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; transition: color 0.2s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}
.animate-fade-up { animation: fadeInUp 0.6s ease-out forwards; }
.animate-fade-in { animation: fadeIn 0.5s ease-out forwards; }

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAVBAR ===== */
.navbar {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo img {
  height: 36px;
  width: auto;
}
.nav-logo .logo-text {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}
.nav-logo .logo-text span { color: var(--cyan); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2px;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0; right: 0;
  height: 2px;
  background: var(--cyan);
  border-radius: 2px;
}
.btn-nav {
  background: var(--cyan);
  color: var(--navy) !important;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 13px;
  letter-spacing: 0.3px;
  transition: all 0.3s;
}
.btn-nav:hover { background: var(--cyan-hover); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,212,170,0.3); }
.btn-nav.active::after { display: none !important; }

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--cyan-glow) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,212,170,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding-top: 60px;
  padding-bottom: 60px;
}
.hero-content { animation: fadeInUp 0.8s ease-out; }
.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero h1 span { color: var(--cyan); }
.hero .tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--cyan);
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.hero .tagline::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--cyan);
  border-radius: 2px;
}
.hero .description {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 36px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-image {
  position: relative;
  animation: fadeIn 1s ease-out 0.3s both;
}
.hero-image img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0,212,170,0.2);
  pointer-events: none;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cyan);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 10px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  letter-spacing: 0.2px;
}
.btn-primary:hover { background: var(--cyan-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,212,170,0.25); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 10px;
  transition: all 0.3s;
  cursor: pointer;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.06); }
.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--dark-text);
  border: 1.5px solid var(--border);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 10px 20px;
  border-radius: 8px;
  transition: all 0.3s;
  cursor: pointer;
}
.btn-outline-dark:hover { border-color: var(--cyan); color: var(--cyan); }

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  padding: 32px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--cyan);
  margin-bottom: 4px;
}
.stat-item p {
  font-size: 0.85rem;
  color: var(--gray-text);
  font-weight: 500;
}

/* ===== SECTION TITLES ===== */
.section { padding: 100px 0; }
.section-light { background: var(--white); }
.section-gray { background: var(--light-bg); }
.section-dark { background: var(--navy); }
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--cyan);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-label::before,
.section-label::after {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--cyan);
  border-radius: 2px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--dark-text);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.section-title.white { color: var(--white); }
.section-sub {
  color: var(--gray-text);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.75;
}
.section-sub.white { color: rgba(255,255,255,0.65); }

/* ===== CHAOS vs GROWTH CARDS ===== */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 20px;
}
.compare-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1.5px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}
.compare-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.compare-card.chaos { border-color: var(--red-border); background: var(--red-soft); }
.compare-card.growth { border-color: var(--green-border); background: var(--green-soft); }
.compare-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.compare-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.compare-card.chaos .compare-icon { background: rgba(220,38,38,0.12); }
.compare-card.growth .compare-icon { background: rgba(22,163,74,0.12); }
.compare-card.chaos .compare-icon svg { color: var(--red-text); }
.compare-card.growth .compare-icon svg { color: var(--green-text); }
.compare-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
}
.compare-card.chaos h3 { color: var(--red-text); }
.compare-card.growth h3 { color: var(--green-text); }
.compare-card li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  color: var(--gray-text);
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.compare-card li:last-child { border-bottom: none; }
.compare-card li .check-icon { flex-shrink: 0; margin-top: 2px; }
.compare-card.chaos li .check-icon { color: var(--red-text); }
.compare-card.growth li .check-icon { color: var(--green-text); }

/* ===== SERVICE CARDS ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--cyan);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--cyan-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--cyan);
}
.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 12px;
}
.service-card > p {
  color: var(--gray-text);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-card ul { margin-bottom: 24px; }
.service-card ul li {
  color: var(--gray-text);
  font-size: 0.88rem;
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}
.service-card ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  position: absolute;
  left: 0;
  top: 13px;
}
.services-center { text-align: center; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all 0.3s;
  position: relative;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testimonial-quote {
  font-size: 2.5rem;
  color: var(--cyan);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 16px;
  font-family: Georgia, serif;
}
.testimonial-card p {
  color: var(--gray-text);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
}
.testimonial-info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--dark-text);
}
.testimonial-info span {
  font-size: 0.8rem;
  color: var(--gray-text);
}
.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
  color: #fbbf24;
}

/* ===== CLIENTS / PARTNERS ===== */
.clients-section {
  padding: 80px 0;
  background: var(--light-bg);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.clients-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
  align-items: center;
  justify-items: center;
  margin-top: 40px;
}
.client-logo {
  width: 120px;
  height: 60px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  transition: all 0.3s;
  color: var(--gray-text);
  font-weight: 700;
  font-size: 0.75rem;
  text-align: center;
  letter-spacing: 0.5px;
}
.client-logo:hover {
  border-color: var(--cyan);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--cyan-glow) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner .container { position: relative; z-index: 2; }
.cta-banner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.cta-banner p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}

/* ===== FOOTER ===== */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.6);
  padding: 64px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo { margin-bottom: 16px; display: inline-flex; }
.footer-brand > p {
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 280px;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  margin-bottom: 10px;
}
.footer-contact-item svg { color: var(--cyan); flex-shrink: 0; }
.footer-col h4 {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.72rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--cyan); }
.social-links { display: flex; gap: 10px; margin-top: 4px; }
.social-link {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all 0.3s;
}
.social-link:hover { border-color: var(--cyan); color: var(--cyan); background: rgba(0,212,170,0.08); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
}
.footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: var(--cyan); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--cyan-glow) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.page-hero p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ===== SERVICE DETAIL (servicios page) ===== */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--border-light);
}
.service-detail:last-of-type { border-bottom: none; }
.service-detail-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--cyan-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--cyan);
}
.service-detail h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--dark-text);
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}
.service-detail > div > p {
  color: var(--gray-text);
  line-height: 1.75;
  margin-bottom: 28px;
  font-size: 1rem;
}
.service-detail ul li {
  color: var(--gray-text);
  font-size: 0.95rem;
  padding: 10px 0;
  padding-left: 28px;
  position: relative;
  border-bottom: 1px solid var(--border-light);
}
.service-detail ul li:last-child { border-bottom: none; }
.service-detail ul li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  position: absolute;
  left: 0;
  top: 16px;
}
.service-detail-visual {
  background: var(--light-bg);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
}
.service-detail-visual img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}
.service-detail-visual .visual-caption {
  padding: 20px 24px;
  font-size: 0.9rem;
  color: var(--gray-text);
  text-align: center;
  font-style: italic;
}

/* ===== WHY GRID ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--cyan); }
.why-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--cyan);
  margin-bottom: 12px;
  opacity: 0.6;
}
.why-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 8px;
}
.why-card p {
  color: var(--gray-text);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ===== ABOUT PAGE ===== */
.team-section { padding: 80px 0; }
.team-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
}
.team-photo {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  object-fit: cover;
  background: linear-gradient(135deg, var(--navy), var(--cyan));
}
.team-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-photo-placeholder svg { color: var(--cyan); opacity: 0.5; }
.team-info h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dark-text);
  margin-bottom: 4px;
}
.team-role {
  font-size: 0.95rem;
  color: var(--cyan);
  font-weight: 600;
  margin-bottom: 24px;
}
.team-info p {
  color: var(--gray-text);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: all 0.3s;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--cyan); }
.value-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--cyan-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--cyan);
}
.value-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 8px;
}
.value-card p {
  color: var(--gray-text);
  font-size: 0.88rem;
  line-height: 1.65;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step-card {
  text-align: center;
  padding: 32px 24px;
  position: relative;
}
.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--cyan);
  color: var(--navy);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.step-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 8px;
}
.step-card p {
  color: var(--gray-text);
  font-size: 0.88rem;
  line-height: 1.65;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.contact-info-title {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 28px;
  color: var(--dark-text);
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding: 16px;
  background: var(--light-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  transition: all 0.3s;
}
.contact-item:hover { border-color: var(--cyan); }
.contact-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--cyan-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--cyan);
}
.contact-item-text strong {
  display: block;
  font-size: 0.88rem;
  color: var(--dark-text);
  margin-bottom: 2px;
}
.contact-item-text span,
.contact-item-text a {
  font-size: 0.88rem;
  color: var(--gray-text);
}
.contact-item-text a:hover { color: var(--cyan); }
.horario {
  margin-top: 28px;
  padding: 24px;
  background: var(--light-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
}
.horario h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 16px;
}
.horario-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.88rem;
  color: var(--gray-text);
  border-bottom: 1px solid var(--border-light);
}
.horario-row:last-child { border-bottom: none; }

.contact-form-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.form-tabs {
  display: flex;
  gap: 4px;
  background: var(--light-bg);
  border-radius: 10px;
  padding: 4px;
  margin-bottom: 32px;
}
.form-tab {
  flex: 1;
  padding: 12px;
  border: none;
  background: transparent;
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-text);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}
.form-tab.active {
  background: var(--white);
  color: var(--dark-text);
  box-shadow: var(--shadow-sm);
}
.form-panel { display: none; }
.form-panel.active { display: block; }
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 6px;
}
.form-group .req { color: var(--red-text); }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--dark-text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px var(--cyan-light);
}
.form-group textarea { min-height: 100px; resize: vertical; }
.btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--cyan);
  color: var(--navy);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-submit:hover { background: var(--cyan-hover); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,212,170,0.3); }

/* Calendar */
.mini-calendar {
  margin-bottom: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.cal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
}
.cal-btn {
  background: none;
  border: none;
  color: var(--cyan);
  font-size: 1.3rem;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background 0.2s;
}
.cal-btn:hover { background: rgba(255,255,255,0.1); }
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  padding: 12px;
}
.cal-day-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gray-text);
  padding: 6px 0;
  text-transform: uppercase;
}
.cal-day {
  text-align: center;
  padding: 8px 4px;
  font-size: 0.85rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--dark-text);
}
.cal-day:hover { background: var(--cyan-light); }
.cal-day.selected { background: var(--cyan); color: var(--navy); font-weight: 700; }
.cal-day.empty { cursor: default; }
.cal-day.empty:hover { background: transparent; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-content { order: 1; }
  .hero-image { order: 0; max-width: 500px; margin: 0 auto; }
  .hero .description { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .team-card { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-top: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 12px 32px rgba(0,0,0,0.3);
  }
  .nav-links.open { display: flex; }
  .nav-links a.active::after { display: none; }
  .hero { min-height: auto; }
  .hero .container { padding-top: 40px; padding-bottom: 40px; }
  .hero h1 { font-size: 2rem; }
  .section { padding: 60px 0; }
  .compare-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
}
