/* ============================================
   SETALENT CONSULTORÍA — SISTEMA DE DISEÑO
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  --primary: #0A1628;
  --primary-mid: #1E3A5F;
  --accent: #00D4AA;
  --accent-dark: #00B892;
  --gold: #F59E0B;
  --orange: #F47920;
  --orange-dark: #D96510;
  --white: #FFFFFF;
  --bg-light: #F8FAFC;
  --text-dark: #1A202C;
  --text-medium: #475569;
  --text-soft: #64748B;
  --text-muted: #94A3B8;
  --border: #E2E8F0;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --shadow-accent: 0 8px 32px rgba(0,212,170,0.25);
  --shadow-orange: 0 8px 32px rgba(244,121,32,0.35);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --section-py: 96px;
  --container: 1200px;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.25s ease;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body { font-family: var(--font); color: var(--text-dark); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
.page-wrap { overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ============================================
   TIPOGRAFÍA
   ============================================ */
h1, h2, h3, h4, h5 { font-weight: 800; line-height: 1.15; color: var(--text-dark); }
h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); font-weight: 700; }
p { color: var(--text-medium); line-height: 1.75; }
.text-accent { color: var(--accent); }
.text-center { text-align: center; }
.text-white { color: white; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar { position: sticky; top: 0; z-index: 1000; background: var(--primary); border-bottom: 1px solid rgba(255,255,255,0.05); transition: box-shadow 0.3s; }
.navbar.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.3); }
.nav-container { display: flex; align-items: center; justify-content: space-between; height: 70px; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.logo { display: flex; align-items: center; line-height: 1; }
.logo-img { height: 38px; width: auto; display: block; filter: brightness(0) invert(1); }
.logo-text { color: var(--accent); font-size: 1.5rem; font-weight: 900; letter-spacing: -0.5px; }
.logo-sub { color: var(--text-muted); font-size: 0.65rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1.5px; margin-top: 1px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--text-muted); font-size: 0.875rem; font-weight: 500; padding: 6px 0; border-bottom: 2px solid transparent; }
.nav-links a:hover { color: var(--accent); border-bottom-color: var(--accent); }
.btn-nav { background: var(--orange) !important; color: white !important; padding: 10px 20px !important; border-radius: 8px !important; font-weight: 700 !important; font-size: 0.85rem !important; border-bottom: none !important; white-space: nowrap; }
.btn-nav:hover { background: var(--orange-dark) !important; transform: translateY(-1px); box-shadow: var(--shadow-orange); }
.hamburger { display: none; color: white; font-size: 1.5rem; padding: 8px; }
.mobile-menu { display: none; flex-direction: column; background: var(--primary-mid); padding: 16px 24px; gap: 8px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--text-muted); padding: 10px 0; font-size: 0.95rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
.mobile-menu a:last-child { border-bottom: none; background: var(--orange); color: white; padding: 12px 16px; border-radius: 8px; font-weight: 700; text-align: center; margin-top: 8px; }
.mobile-submenu-label { color: rgba(255,255,255,0.35); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; padding: 14px 0 4px; border-bottom: none !important; }
.mobile-submenu-link { padding-left: 16px !important; font-size: 0.875rem !important; color: rgba(255,255,255,0.5) !important; }
.mobile-submenu-link:hover { color: var(--orange) !important; }

/* ============================================
   NAV DROPDOWN
   ============================================ */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger { color: var(--text-muted); font-size: 0.875rem; font-weight: 500; background: none; border: none; cursor: pointer; display: flex; align-items: center; gap: 5px; padding: 6px 0; font-family: var(--font); border-bottom: 2px solid transparent; transition: var(--transition); }
.nav-dropdown:hover .nav-dropdown-trigger,
.nav-dropdown.open .nav-dropdown-trigger { color: var(--accent); border-bottom-color: var(--accent); }
.dropdown-arrow { font-size: 0.65rem; transition: transform 0.25s; display: inline-block; }
.nav-dropdown:hover .dropdown-arrow,
.nav-dropdown.open .dropdown-arrow { transform: rotate(180deg); }
.nav-dropdown-menu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(-4px); background: white; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 12px 8px 8px; min-width: 280px; z-index: 200; opacity: 0; pointer-events: none; transition: opacity 0.18s ease, transform 0.18s ease; }
.nav-dropdown-menu::before { content: ''; position: absolute; top: -12px; left: 0; right: 0; height: 12px; background: transparent; }
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.nav-dropdown-menu a { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 8px; color: var(--text-dark); font-size: 0.875rem; font-weight: 500; }
.nav-dropdown-menu a:hover { background: var(--bg-light); color: var(--orange); }
.nav-dropdown-menu a .dd-icon { font-size: 1rem; flex-shrink: 0; }
.nav-dropdown-menu .dd-divider { height: 1px; background: var(--border); margin: 6px 0; }

/* ============================================
   BOTONES
   ============================================ */
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--orange); color: white; padding: 16px 32px; border-radius: 10px; font-weight: 700; font-size: 1rem; transition: var(--transition); border: none; cursor: pointer; }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: var(--shadow-orange); }
.btn-secondary { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--accent); border: 2px solid var(--accent); padding: 14px 30px; border-radius: 10px; font-weight: 600; font-size: 1rem; transition: var(--transition); }
.btn-secondary:hover { background: rgba(0,212,170,0.1); transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,0.1); color: white; border: 1px solid rgba(255,255,255,0.2); padding: 14px 28px; border-radius: 10px; font-weight: 600; transition: var(--transition); display: inline-flex; align-items: center; gap: 8px; }
.btn-ghost:hover { background: rgba(255,255,255,0.2); }

/* ============================================
   BADGES
   ============================================ */
.badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(0,212,170,0.12); border: 1px solid rgba(0,212,170,0.3); color: var(--accent); padding: 6px 16px; border-radius: 100px; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.3px; }
.badge-gold { background: rgba(245,158,11,0.1); border-color: rgba(245,158,11,0.3); color: var(--gold); }
.badge-white { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); color: white; }

/* ============================================
   SECCIONES
   ============================================ */
section { padding: var(--section-py) 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.1rem; max-width: 680px; margin: 0 auto; }
.section-light { background: var(--bg-light); }
.section-dark { background: var(--primary); color: white; }
.section-dark h2, .section-dark h3 { color: white; }
.section-dark p { color: rgba(255,255,255,0.7); }

/* ============================================
   GRIDS
   ============================================ */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.section-separator { height: 1px; background: linear-gradient(to right, transparent, var(--border), transparent); margin: 0; }
.section-featured { padding: 120px 0; }
.section-compact { padding: 64px 0; }

/* ============================================
   CARDS
   ============================================ */
.card { background: white; border-radius: var(--radius); padding: 32px; border: 1px solid var(--border); box-shadow: var(--shadow-sm); transition: var(--transition); }
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--accent); }
.card-icon { width: 52px; height: 52px; background: rgba(0,212,170,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 20px; }

/* ============================================
   HERO
   ============================================ */
.hero { color: white; padding: 0; overflow: hidden; position: relative; display: grid; grid-template-columns: 1fr 1fr; min-height: 600px; }
.hero-left { background: linear-gradient(135deg, var(--primary) 0%, #0d2040 100%); padding: 100px 60px 80px clamp(24px, calc(50vw - 540px), 80px); position: relative; z-index: 1; }
.hero-left::before { content: ''; position: absolute; bottom: -60px; right: -60px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(0,212,170,0.12) 0%, transparent 70%); pointer-events: none; }
.hero-right { position: relative; overflow: hidden; }
.hero-right img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.hero-right::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, var(--primary) 0%, transparent 30%); }
.hero-content { position: relative; z-index: 1; max-width: 680px; }
.hero h1 { color: white; margin: 20px 0 24px; }
.hero-h1-highlight { color: var(--orange); }
.hero-sub { color: rgba(255,255,255,0.8); font-size: 1.15rem; line-height: 1.7; margin-bottom: 16px; max-width: 620px; }
.hero-qualifier { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-bottom: 36px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.1); }
.hero-stat-num { font-size: 2.2rem; font-weight: 900; color: var(--accent); line-height: 1; }
.hero-stat-label { color: rgba(255,255,255,0.6); font-size: 0.8rem; margin-top: 6px; }

/* ============================================
   CLIENTS STRIP
   ============================================ */
.clients-strip { background: var(--bg-light); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 32px 0; }
.clients-strip-label { text-align: center; font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: var(--text-muted); margin-bottom: 24px; }
.clients-strip-logos { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.clients-strip-logos img { height: 36px; width: auto; max-width: 120px; object-fit: contain; filter: grayscale(100%) opacity(0.55); transition: var(--transition); }
.clients-strip-logos img:hover { filter: grayscale(0%) opacity(1); }

/* ============================================
   PAIN POINTS
   ============================================ */
.pain-item { display: flex; align-items: center; gap: 12px; padding: 14px 20px; background: rgba(239,68,68,0.04); border: 1px solid rgba(239,68,68,0.1); border-radius: 10px; color: var(--text-dark); font-size: 0.95rem; margin-bottom: 10px; }
.pain-icon { color: #EF4444; font-size: 1.2rem; flex-shrink: 0; }

/* ============================================
   PROCESO / STEPS
   ============================================ */
.step-item { display: flex; gap: 24px; margin-bottom: 40px; }
.step-num { width: 56px; height: 56px; min-width: 56px; background: var(--primary); border: 2px solid var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 1.2rem; color: var(--accent); }
.step-content h3 { margin-bottom: 8px; color: var(--text-dark); }
.step-tool { display: inline-flex; align-items: center; gap: 4px; background: var(--bg-light); border: 1px solid var(--border); padding: 4px 12px; border-radius: 100px; font-size: 0.78rem; font-weight: 600; color: var(--text-soft); margin-top: 10px; }

/* ============================================
   TABLA FILTRO
   ============================================ */
.filter-table { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.filter-col-header { padding: 20px 28px; font-weight: 700; font-size: 1rem; display: flex; align-items: center; gap: 10px; }
.filter-col-header.yes { background: rgba(0,212,170,0.1); color: #047857; border-bottom: 1px solid rgba(0,212,170,0.2); }
.filter-col-header.no { background: rgba(239,68,68,0.06); color: #DC2626; border-left: 1px solid var(--border); border-bottom: 1px solid rgba(239,68,68,0.15); }
.filter-item { padding: 16px 28px; display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; border-bottom: 1px solid var(--border); }
.filter-item:last-child { border-bottom: none; }
.filter-item.yes-item { color: var(--text-dark); }
.filter-item.no-item { border-left: 1px solid var(--border); color: var(--text-medium); }
.check { color: #10B981; font-size: 1.1rem; flex-shrink: 0; }
.cross { color: #EF4444; font-size: 1.1rem; flex-shrink: 0; }

/* ============================================
   CERTIFICATION CARDS
   ============================================ */
.cert-card { background: white; border: 1px solid var(--border); border-top: 4px solid var(--gold); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); transition: var(--transition); }
.cert-card:hover { box-shadow: 0 8px 32px rgba(245,158,11,0.15); transform: translateY(-4px); }
.cert-card h3 { margin-bottom: 16px; font-size: clamp(1rem, 2vw, 1.2rem); }
.cert-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.3); color: var(--gold); padding: 4px 12px; border-radius: 100px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 16px; }
.cert-argument { font-style: italic; color: var(--text-soft); font-size: 0.85rem; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--border); }

/* ============================================
   PRICING TABLE
   ============================================ */
.pricing-table { width: 100%; border-collapse: collapse; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.pricing-table th { background: var(--primary); color: white; padding: 16px 24px; text-align: left; font-weight: 600; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.5px; }
.pricing-table td { padding: 18px 24px; border-bottom: 1px solid var(--border); font-size: 0.9rem; vertical-align: middle; }
.pricing-table tr:nth-child(even) td { background: var(--bg-light); }
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table .price { color: var(--accent); font-weight: 700; font-size: 1rem; }

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
.faq-question { width: 100%; text-align: left; padding: 20px 24px; background: white; font-size: 0.95rem; font-weight: 600; color: var(--text-dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; transition: var(--transition); font-family: inherit; border: none; }
.faq-question:hover { background: var(--bg-light); }
.faq-question.active { color: #1E3A5F; background: rgba(30,58,95,0.06); }
.faq-icon { color: #1E3A5F; font-size: 1.2rem; transition: transform 0.3s; flex-shrink: 0; }
.faq-question.active .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 24px 20px; color: var(--text-medium); font-size: 0.9rem; line-height: 1.75; }
.faq-answer.open { display: block; }

/* ============================================
   TESTIMONIALES
   ============================================ */
.testimonial-card { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-md); }
.testimonial-company { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--accent); margin-bottom: 8px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--border); padding-top: 16px; margin-top: 20px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--primary-mid)); display: flex; align-items: center; justify-content: center; font-weight: 700; color: white; font-size: 1rem; flex-shrink: 0; }
.testimonial-name { font-weight: 700; color: var(--text-dark); font-size: 0.9rem; }
.testimonial-role { color: var(--text-soft); font-size: 0.8rem; }
.case-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border); }
.case-stat { text-align: center; }
.case-stat-num { font-size: 1.5rem; font-weight: 900; color: var(--accent); }
.case-stat-label { font-size: 0.75rem; color: var(--text-soft); }

/* VIDEO TESTIMONIAL */
.testimonials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 28px; }
.testimonial-video-card { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); transition: var(--transition); }
.testimonial-video-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.video-wrapper { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; background: #000; }
.video-wrapper iframe,
.video-wrapper video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; object-fit: cover; }
.testimonial-video-body { padding: 24px 28px; }
.testimonial-video-body .testimonial-author { margin-top: 0; border-top: none; padding-top: 0; }
.testimonial-text-card { background: linear-gradient(135deg, var(--bg-light), white); border: 1px solid var(--border); border-left: 4px solid var(--accent); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-sm); display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center; }
.testimonial-text-card .case-stats { border-top: none; padding-top: 0; margin-top: 0; }
@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-text-card { grid-template-columns: 1fr; }
}

/* ============================================
   SERVICE CARDS
   ============================================ */
.service-card { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); transition: var(--transition); display: flex; flex-direction: column; }
.service-card:hover { border-color: var(--accent); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-card-icon { font-size: 2rem; margin-bottom: 16px; }
.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; color: var(--primary); }
.service-card p { font-size: 0.9rem; flex-grow: 1; margin-bottom: 20px; }
.service-card-price { color: var(--accent); font-weight: 700; font-size: 1.1rem; margin-bottom: 6px; }
.service-card-duration { color: var(--text-soft); font-size: 0.8rem; margin-bottom: 20px; }
.btn-link { color: var(--orange); font-weight: 700; font-size: 0.9rem; display: flex; align-items: center; gap: 6px; }

/* ============================================
   PILLAR CARDS
   ============================================ */
.pillar-card { padding: 40px 32px; border-radius: var(--radius-lg); text-align: center; }
.pillar-card:nth-child(1) { background: rgba(0,212,170,0.08); border: 1px solid rgba(0,212,170,0.2); }
.pillar-card:nth-child(2) { background: rgba(30,58,95,0.08); border: 1px solid rgba(30,58,95,0.2); }
.pillar-card:nth-child(3) { background: rgba(245,158,11,0.08); border: 1px solid rgba(245,158,11,0.2); }
.pillar-icon { font-size: 2.5rem; margin-bottom: 20px; display: block; }
.pillar-tech { font-size: 0.78rem; color: var(--text-soft); font-style: italic; margin-top: 8px; }

/* ============================================
   STATS
   ============================================ */
.stat-number { font-size: 2.5rem; font-weight: 900; color: var(--accent); line-height: 1; display: block; }
.stat-label { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin-top: 8px; display: block; }
.data-highlight { background: linear-gradient(135deg, var(--primary), var(--primary-mid)); border: 1px solid rgba(0,212,170,0.2); border-radius: var(--radius); padding: 32px; text-align: center; color: white; }
.data-highlight .big-num { font-size: 4rem; font-weight: 900; color: var(--accent); line-height: 1; }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%); padding: 96px 0; text-align: center; color: white; }
.cta-section h2 { color: white; margin-bottom: 20px; }
.cta-section p { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 600px; margin: 0 auto 36px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================
   FOOTER
   ============================================ */
footer { background: var(--primary); color: rgba(255,255,255,0.7); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo { color: var(--accent); font-size: 1.5rem; font-weight: 900; display: block; margin-bottom: 4px; }
.footer-logo-img { height: 48px; width: auto; display: block; margin-bottom: 12px; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-tagline { font-size: 0.85rem; line-height: 1.65; color: rgba(255,255,255,0.62); font-style: italic; margin: 12px 0 16px; }
.footer-slogan { color: var(--accent); font-weight: 700; font-size: 0.9rem; }
.footer-col h4 { color: white; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; font-weight: 700; }
.footer-col a { display: block; color: rgba(255,255,255,0.5); font-size: 0.875rem; margin-bottom: 10px; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { padding: 20px 0; display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: rgba(255,255,255,0.3); flex-wrap: wrap; gap: 12px; }

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float { position: fixed; bottom: 20px; right: 20px; z-index: 9999; width: 60px; height: 60px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.45); transition: var(--transition); text-decoration: none; }
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 8px 32px rgba(37,211,102,0.55); }

/* ============================================
   FORMS
   ============================================ */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: 8px; font-size: 0.95rem; font-family: var(--font); color: var(--text-dark); background: white; transition: var(--transition); outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(0,212,170,0.1); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ============================================
   CONTACTO
   ============================================ */
/* Contacto — grid de campos, botón enviar, métodos de contacto y pasos */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.submit-btn { width: 100%; display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: var(--accent); color: var(--primary); border: none; padding: 16px 32px; border-radius: 10px; font-weight: 700; font-size: 1rem; font-family: var(--font); cursor: pointer; transition: var(--transition); margin-top: 8px; }
.submit-btn:hover { background: #00B892; transform: translateY(-2px); }
.contact-method { display: flex; align-items: center; gap: 14px; background: white; border: 1px solid var(--border); border-radius: 12px; padding: 16px; margin-bottom: 12px; }
.contact-method:hover { border-color: var(--accent); box-shadow: 0 4px 16px rgba(0,0,0,0.06); transform: translateY(-2px); }
.contact-icon { width: 44px; height: 44px; min-width: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 1.1rem; }
.step-card { display: flex; gap: 14px; align-items: flex-start; background: white; border: 1px solid var(--border); border-radius: 12px; padding: 16px; margin-bottom: 12px; }
.step-card .step-num { width: 36px; height: 36px; min-width: 36px; font-size: 1rem; }

/* ============================================
   SVC CARDS — proceso "Cómo Funciona" (secciones de fondo oscuro)
   ============================================ */
.svc-card { background: #0F2040; border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 32px 28px; }
.svc-num { display: block; font-size: 2rem; font-weight: 800; color: rgba(255,255,255,0.4); line-height: 1; margin-bottom: 14px; }
.svc-icon { width: 52px; height: 52px; border-radius: 12px; background: rgba(0,212,170,0.12); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.svc-icon-amber { background: rgba(245,158,11,0.12); }
.svc-icon-indigo { background: rgba(99,102,241,0.14); }
.svc-title { color: #fff; font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; }
.svc-desc { color: rgba(255,255,255,0.6); font-size: 0.95rem; line-height: 1.7; margin-bottom: 18px; }
.svc-tag { display: inline-block; background: rgba(0,212,170,0.1); color: #00D4AA; font-size: 0.8rem; font-weight: 600; padding: 8px 14px; border-radius: 8px; }
.svc-tag-amber { background: rgba(245,158,11,0.1); color: #F59E0B; }
.svc-tag-indigo { background: rgba(99,102,241,0.14); color: #818CF8; }

/* ============================================
   ANIMACIONES — stagger cinematográfico
   ============================================ */
.fade-up { opacity: 0; transform: translateY(40px); transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-in { opacity: 0; transition: opacity 0.8s ease; }
.fade-in.visible { opacity: 1; }
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.40s; }
.delay-6 { transition-delay: 0.48s; }

/* ============================================
   SERVICE CARDS — dark image style (Clear Street)
   ============================================ */
.service-card-dark {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--primary);
  transition: transform 0.45s cubic-bezier(0.16,1,0.3,1), box-shadow 0.45s ease;
  cursor: pointer;
  text-decoration: none;
}
.service-card-dark:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,0.35); }
.service-card-dark-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.65s cubic-bezier(0.16,1,0.3,1), opacity 0.45s ease;
  opacity: 0.45;
}
.service-card-dark:hover .service-card-dark-bg { transform: scale(1.06); opacity: 0.6; }
.service-card-dark-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.97) 0%, rgba(10,22,40,0.55) 55%, rgba(10,22,40,0.15) 100%);
}
.service-card-dark-num {
  position: absolute; top: 20px; left: 24px;
  font-size: 4.5rem; font-weight: 900; line-height: 1;
  color: rgba(255,255,255,0.07); letter-spacing: -2px;
  font-variant-numeric: tabular-nums;
  transition: color 0.3s ease;
}
.service-card-dark:hover .service-card-dark-num { color: rgba(244,121,32,0.18); }
.service-card-dark-body {
  position: relative; z-index: 2;
  padding: 24px 28px 28px;
}
.service-card-dark-icon { font-size: 1.5rem; margin-bottom: 10px; display: block; }
.service-card-dark h3 { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 8px; line-height: 1.3; }
.service-card-dark p { font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-bottom: 14px; line-height: 1.55; }
.service-card-dark-meta { display: flex; align-items: center; justify-content: space-between; }
.service-card-dark-price { font-size: 0.85rem; font-weight: 700; color: var(--orange); }
.service-card-dark-arrow {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(244,121,32,0.15); border: 1px solid rgba(244,121,32,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); font-size: 0.9rem;
  transition: background 0.25s, transform 0.25s;
}
.service-card-dark:hover .service-card-dark-arrow { background: var(--orange); color: white; transform: translate(2px,-2px); }

/* ============================================
   METODOLOGÍA — números grandes estilo editorial
   ============================================ */
.step-item-new {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 0 28px; margin-bottom: 0;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  align-items: start;
  transition: background 0.3s ease;
}
.step-item-new:last-child { border-bottom: none; }
.step-item-new:hover { background: rgba(255,255,255,0.02); }
.step-num-big {
  font-size: 3.5rem; font-weight: 900; line-height: 1;
  color: rgba(255,255,255,0.08); letter-spacing: -2px;
  text-align: right; padding-top: 4px;
  transition: color 0.3s ease;
  font-variant-numeric: tabular-nums;
}
.step-item-new:hover .step-num-big { color: rgba(244,121,32,0.4); }
.step-item-new-content { padding-left: 4px; }
.step-item-new h3 { font-size: 0.7rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--orange); margin-bottom: 8px; }
.step-item-new p { font-size: 0.92rem; color: rgba(255,255,255,0.62); line-height: 1.7; margin-bottom: 10px; }
.step-tool-new { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 4px 12px; font-size: 0.75rem; color: rgba(255,255,255,0.4); }

/* ============================================
   STICKY CTA BAR — bottom persistente
   ============================================ */
.sticky-cta-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
  background: rgba(10,22,40,0.96);
  backdrop-filter: blur(12px) saturate(180%);
  border-top: 1px solid rgba(244,121,32,0.2);
  padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.16,1,0.3,1);
}
.sticky-cta-bar.visible { transform: translateY(0); }
.sticky-cta-text { font-size: 0.88rem; color: rgba(255,255,255,0.7); }
.sticky-cta-text strong { color: #fff; }
.sticky-cta-bar .btn-primary { padding: 10px 24px; font-size: 0.88rem; white-space: nowrap; }
.sticky-cta-close {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; cursor: pointer; flex-shrink: 0;
  transition: background 0.2s;
}
.sticky-cta-close:hover { background: rgba(255,255,255,0.15); }
@media (max-width: 640px) {
  .sticky-cta-text { display: none; }
  .sticky-cta-bar { justify-content: center; position: relative; }
  .sticky-cta-close { position: absolute; right: 14px; }
}

/* ============================================
   HERO BADGE — gradiente animado
   ============================================ */
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.badge-animated {
  background: linear-gradient(270deg, #F47920, #D96510, #F59E0B, #F47920);
  background-size: 300% 300%;
  animation: gradientShift 4s ease infinite;
  color: white; border: none;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.5px;
  margin-bottom: 28px;
}

/* ============================================
   PARALLAX HERO IMAGE
   ============================================ */
.hero-right { overflow: hidden; }
.hero-right img { transition: transform 0.1s linear; will-change: transform; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  /* Hero en tablet — columna única */
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 80px 40px 60px; }
  .hero-right { display: none; }
  /* Tabla de precios — scroll horizontal */
  .pricing-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .pricing-table { min-width: 560px; }
}

@media (max-width: 768px) {
  :root { --section-py: 56px; }
  .nav-links { display: none; }
  .hamburger { display: block; }
  .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 64px 24px 48px; }
  .hero-right { display: none; }
  .clients-strip-logos { gap: 20px; }
  [style*="grid-template-columns:repeat(3,1fr)"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns:repeat(2,1fr)"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns: 1fr 1fr"] { grid-template-columns: 1fr !important; }
  /* Separadores verticales 1px en hero stats */
  div[style*="width:1px;background"] { display: none !important; }
  /* Hero stats */
  .hero-stats { gap: 20px; flex-wrap: wrap; justify-content: center; }
  .hero-stat-num { font-size: 1.8rem; }
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-ctas .btn-primary, .hero-ctas .btn-secondary, .hero-ctas .btn-ghost { width: 100%; justify-content: center; text-align: center; }
  /* Filtro */
  .filter-table { grid-template-columns: 1fr; }
  .filter-col-header.no, .filter-item.no-item { border-left: none; }
  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  /* CTA section */
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-section { padding: 64px 0; }
  /* Cases */
  .case-stats { grid-template-columns: repeat(2, 1fr); }
  /* Tabla de precios */
  .pricing-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .pricing-table { min-width: 560px; }
  .pricing-table th, .pricing-table td { padding: 12px 16px; font-size: 0.85rem; }
  /* Service cards dark */
  .service-card-dark { aspect-ratio: auto; min-height: 200px; }
  /* Steps */
  .step-item { gap: 16px; }
  .step-num { width: 44px; height: 44px; min-width: 44px; font-size: 1rem; }
  .step-item-new { grid-template-columns: 60px 1fr; gap: 0 16px; }
  .step-num-big { font-size: 2.5rem; }
  /* Inline flex/grid con inline style — soluciones/servicios */
  [style*="display:flex;gap:32px"] { gap: 16px !important; flex-wrap: wrap !important; justify-content: center !important; }
  [style*="display:flex;gap:16px;flex-wrap:wrap"] { flex-direction: column !important; align-items: center !important; }
  [style*="grid-template-columns:1fr 1fr;gap:8px"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns:1fr 1fr;gap:60px"] { grid-template-columns: 1fr !important; gap: 24px !important; }
  [style*="grid-template-columns:1fr 1fr;gap:48px"] { grid-template-columns: 1fr !important; gap: 24px !important; }
  [style*="grid-template-columns:1fr 1fr;gap:40px"] { grid-template-columns: 1fr !important; gap: 24px !important; }
  /* Imágenes inline width */
  img[style*="width:50%"], img[style*="width:55%"], img[style*="width:60%"] { width: 100% !important; }
  /* Secciones padding */
  section[style*="padding:80px 0"] { padding: 40px 0 !important; }
  section[style*="padding:96px 0"] { padding: 44px 0 !important; }
  section[style*="padding:90px 0"] { padding: 44px 0 !important; }
  section[style*="padding:64px 0"] { padding: 32px 0 !important; }
  /* Section headers margin */
  div[style*="margin-bottom:56px"] { margin-bottom: 32px !important; }
  div[style*="margin-bottom:48px"] { margin-bottom: 28px !important; }
  /* Contacto — campos del formulario a 1 columna */
  .form-grid { grid-template-columns: 1fr; }
  /* Flex cards gap:20px sin clase .card → apilar vertical (rediseno, automatizacion) */
  div[style*="display:flex;gap:20px;align-items:flex-start"] { flex-direction: column !important; }
  /* Hero pricing cards gap:20px (capacitacion) → columna full-width */
  div[style*="display:flex;gap:20px;flex-wrap:wrap;margin-bottom"] {
    flex-direction: column !important; align-items: stretch !important; gap: 10px !important;
  }
  div[style*="display:flex;gap:20px;flex-wrap:wrap;margin-bottom"] > div { min-width: 0 !important; }
}

@media (max-width: 768px) {
  .whatsapp-float { right: 14px; bottom: 8px; width: 52px; height: 52px; }
  /* Page heroes internos */
  section.page-hero { padding: 56px 0 44px !important; }
  .page-hero .container > div { text-align: center !important; max-width: 100% !important; }
  .page-hero .container h1,
  .page-hero .container p { text-align: center !important; }
  .page-hero .container div[style*="display:flex"] { justify-content: center !important; }
  .page-hero .container div[style*="display:inline-flex"] { justify-content: center !important; }
  .page-hero .container div[style*="display:grid"] { text-align: left !important; }
  /* Hero metrics — grid 2 col, ocultar separadores */
  .hero-metrics,
  .page-hero div[style*="display:flex;gap:32px;margin-bottom"] { display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 12px 20px !important; justify-items: center !important; }
  /* CTAs del hero — full width stacked */
  .page-hero div[style*="display:flex;gap:16px;flex-wrap:wrap"] { flex-direction: column !important; align-items: stretch !important; gap: 10px !important; }
  .page-hero .btn-p, .page-hero .btn-s { width: 100% !important; justify-content: center !important; text-align: center !important; }
  /* Cards con icono horizontal → vertical */
  .card[style*="display:flex;gap:20px"],
  .card[style*="display:flex;gap:24px"] { flex-direction: column !important; align-items: center !important; text-align: center !important; }
}

@media (max-width: 480px) {
  :root { --section-py: 48px; }
  .hero h1 { font-size: clamp(1.5rem, 6vw, 2rem); }
  .hero-left { padding: 52px 20px 40px; }
  .data-highlight .big-num { font-size: 2.8rem; }
  h1[style] { font-size: clamp(1.45rem, 6vw, 1.9rem) !important; }
  h2[style] { font-size: clamp(1.2rem, 5.5vw, 1.55rem) !important; }
  [style*="font-size:1.8rem;font-weight:900"] { font-size: 1.35rem !important; }
  [style*="font-size:1.15rem"] { font-size: 1rem !important; }
  section[style*="padding:80px 0"] { padding: 28px 0 !important; }
  section[style*="padding:90px 0"] { padding: 32px 0 !important; }
  section[style*="padding:96px 0"] { padding: 32px 0 !important; }
  .container { padding: 0 16px; }
  .btn-primary, .btn-secondary { padding: 14px 24px; font-size: 0.95rem; }
  .hero-stat-num { font-size: 1.6rem; }
}

@media (max-width: 375px) {
  :root { --section-py: 40px; }
  .container { padding: 0 14px; }
  h1, h1[style] { font-size: clamp(1.3rem, 7vw, 1.6rem) !important; }
  h2, h2[style] { font-size: clamp(1.1rem, 6vw, 1.4rem) !important; }
  h3 { font-size: 1rem; }
  .nav-container { padding: 0 14px; }
  .logo-text { font-size: 1.25rem; }
  .card { padding: 20px 16px; }
  .btn-primary, .btn-secondary { padding: 12px 20px; font-size: 0.9rem; }
  section[style*="padding:80px 0"] { padding: 24px 0 !important; }
  section[style*="padding:90px 0"] { padding: 28px 0 !important; }
  section[style*="padding:96px 0"] { padding: 28px 0 !important; }
}

@media (max-width: 768px) {
  .proceso-card-tag { text-align: center; }
  .proceso-card h3 { text-align: center; }
  .proceso-card p { text-align: center; }
}
