@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');
@import url('https://cdn-uicons.flaticon.com/4.0.0/uicons-regular-rounded/css/uicons-regular-rounded.css');
@import url('https://cdn-uicons.flaticon.com/4.0.0/uicons-brands/css/uicons-brands.css');

:root {
  --primary: #1690c3;
  --primary-dark: #0878a6;
  --accent: #fc5b1f;
  --accent-dark: #e4490f;
  --navy: #101828;
  --slate: #364153;
  --muted: #667085;
  --surface: #f3f4f6;
  --white: #fff;
  --border: #e4e7ec;
  --container: 1280px;
  --radius: 20px;
  --shadow: 0 20px 30px -18px rgba(16, 24, 40, .25);
  --navbar-height: 80px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { color: var(--slate); background: var(--white); font-family: Inter, system-ui, sans-serif; line-height: 1.65; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
main { padding-top: var(--navbar-height); }
h1, h2, h3, h4 { color: var(--navy); line-height: 1.15; }
h1 { font-size: clamp(2.7rem, 5vw, 4.75rem); letter-spacing: -.055em; }
h2 { font-size: clamp(2rem, 3.7vw, 3rem); letter-spacing: -.035em; }
h3 { font-size: 1.25rem; }
p + p { margin-top: 1rem; }
strong {color: var(--accent);}
.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }
.narrow { max-width: 920px; }
.center { text-align: center; }
.section { padding: 96px 0; }
.section-muted { background: var(--surface); }
.section-heading { max-width: 850px; margin-bottom: 52px; }
.section-heading.center { margin-inline: auto; }
.section-heading > p:last-child { margin-top: 18px; font-size: 1.1rem; }
.eyebrow { margin-bottom: 14px; color: var(--primary-dark); font-size: .78rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow-light { color: #9de1ff; }
.statement { color: var(--primary-dark); font-size: 1.3rem; font-weight: 800; }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 56px; padding: 14px 28px; border: 2px solid transparent; border-radius: 16px; font-weight: 700; transition: .2s ease; }
.btn i { display: flex; font-size: 1.15rem; line-height: 1; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: white; background: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); }
.btn-accent { color: white; background: var(--accent); box-shadow: 0 12px 20px -12px rgba(252,91,31,.9); }
.btn-accent:hover { color: white; background: var(--accent-dark); }
.btn-outline-light { border-color: rgba(255,255,255,.8); color: white; }
.btn-outline-light:hover { color: var(--navy); background: white; }

.navbar { position: fixed; z-index: 1000; inset: 0 0 auto; height: var(--navbar-height); background: rgba(255,255,255,.96); box-shadow: 0 1px 12px rgba(16,24,40,.08); backdrop-filter: blur(14px); }
.nav-container { display: flex; align-items: center; justify-content: space-between; width: min(100% - 40px, var(--container)); height: 100%; margin-inline: auto; }
.nav-logo, .logo-img { display: block; width: auto; height: 56px; }
.nav-menu-wrapper, .nav-menu { display: flex; align-items: center; }
.nav-menu-wrapper { gap: 30px; }
.nav-menu { gap: 26px; }
.nav-menu > li { position: relative; }
.nav-link { position: relative; padding: 8px 0; color: var(--slate); font-size: .94rem; font-weight: 600; }
button.nav-link { display: flex; align-items: center; gap: 8px; border: 0; background: transparent; font-family: inherit; cursor: pointer; }
.nav-link::after { position: absolute; right: 0; bottom: 2px; left: 0; height: 2px; background: var(--primary); content: ""; transform: scaleX(0); transition: .2s; }
.nav-link:hover { color: var(--primary-dark); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link.is-active, .nav-link[aria-current="page"] { color: var(--primary-dark); }
.nav-link.is-active::after, .nav-link[aria-current="page"]::after { transform: scaleX(1); }
.arrow { width: 7px; height: 7px; margin-top: -4px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); transition: transform .2s; }
.has-submenu.is-open .arrow { margin-top: 4px; transform: rotate(225deg); }
.submenu { position: absolute; top: calc(100% + 18px); left: 50%; z-index: 20; width: 330px; padding: 12px; border: 1px solid var(--border); border-radius: 18px; background: white; box-shadow: 0 20px 40px rgba(16,24,40,.16); opacity: 0; visibility: hidden; transform: translate(-50%, 8px); transition: .2s ease; }
.submenu::before { position: absolute; right: 0; bottom: 100%; left: 0; height: 20px; content: ""; }
.submenu-compact { width: 190px; }
.submenu a { display: block; padding: 11px 13px; border-radius: 10px; color: var(--slate); font-size: .9rem; font-weight: 600; line-height: 1.35; }
.submenu a:hover { color: var(--primary-dark); background: #edf8fc; }
.submenu a.is-active, .submenu a[aria-current="page"] { color: var(--primary-dark); background: #edf8fc; }
.has-submenu.is-open .submenu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
@media (hover: hover) and (min-width: 1025px) {
  .has-submenu:hover .submenu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
  .has-submenu:hover .arrow { margin-top: 4px; transform: rotate(225deg); }
}
.btn-contact { display: inline-flex; padding: 11px 20px; border-radius: 14px; color: white; background: var(--accent); font-weight: 700; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; }
.hamburger, .hamburger::before, .hamburger::after { display: block; width: 25px; height: 2px; background: var(--navy); content: ""; transition: .2s; }
.hamburger { position: relative; margin: auto; }
.hamburger::before { position: absolute; top: -8px; }
.hamburger::after { position: absolute; top: 8px; }

.hero { min-height: calc(100vh - var(--navbar-height)); padding: 72px 0; color: rgba(255,255,255,.9); background: linear-gradient(120deg, #354457, #526072); }
.hero-grid { display: grid; grid-template-columns: 1.4fr .75fr; gap: 64px; align-items: center; min-height: 760px; }
.hero h1 { color: white; }
.hero h1 span { color: var(--accent); }
.hero-lead { margin-top: 28px; font-size: 1.25rem; line-height: 1.55; }
.hero-copy > p:not(.eyebrow):not(.trust-line) { max-width: 760px; }
.trust-line { margin-top: 30px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.2); font-size: .92rem; }
.hero-media { overflow: hidden; max-height: 720px; border-radius: 26px; box-shadow: 0 30px 60px rgba(0,0,0,.28); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.intro p:not(.eyebrow):not(.statement) { font-size: 1.08rem; }
.intro h2 { margin-bottom: 26px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split h2 { margin-bottom: 24px; }
.feature-panel { padding: 42px; border-radius: 28px; background: white; box-shadow: var(--shadow); }
.feature-panel h3 { margin-bottom: 24px; }
.check-list { display: grid; gap: 13px 24px; margin-top: 24px; }
.check-list.columns-2 { grid-template-columns: 1fr 1fr; }
.check-list li { position: relative; padding-left: 28px; }
.check-list li::before { position: absolute; top: 1px; left: 0; color: var(--primary); font-weight: 800; content: "✓"; }

.solutions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.solution-card { position: relative; display: flex; flex-direction: column; min-height: 430px; padding: 34px; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius); background: white; box-shadow: 0 8px 20px rgba(16,24,40,.05); }
.solution-card:hover { border-color: #b8deec; box-shadow: var(--shadow); transform: translateY(-4px); }
.solution-card, .solution-card:hover { transition: .25s ease; }
.card-number { position: absolute; top: 20px; right: 24px; color: #dbe4e8; font-size: 2.8rem; font-weight: 800; }
.solution-icon { width: 88px; height: 88px; margin: 0 0 20px; object-fit: contain; transition: transform .25s ease; }
.solution-card:hover .solution-icon { transform: translateY(-3px) scale(1.04); }
.solution-card h3 { color: var(--primary-dark); }
.solution-card h4 { margin: 30px 0 14px; font-size: 1.35rem; }
.solution-card ul { margin: 22px 0; }
.solution-card li { margin-top: 7px; }
.solution-card li::before { margin-right: 8px; color: var(--primary); content: "•"; }
.solution-card > a { margin-top: auto; color: var(--primary-dark); font-weight: 700; }
.featured-card { color: #e9f7fd; border-color: var(--primary); background: var(--primary-dark); }
.featured-card h3, .featured-card h4, .featured-card a { color: white; }
.featured-card .card-number { color: rgba(255,255,255,.15); }
.featured-card li::before { color: var(--accent); }

.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.benefits-grid article { padding: 30px; border-radius: var(--radius); background: white; }
.benefits-grid article > span { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 22px; border-radius: 50%; color: var(--primary-dark); background: #e3f5fc; font-size: 1.3rem; font-weight: 800; }
.benefits-grid article > span i { display: flex; line-height: 1; }
.benefits-grid h3 { margin-bottom: 10px; }
.module-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 48px; margin-bottom: 38px; border-top: 1px solid var(--border); }
.module-list article { display: flex; align-items: flex-start; gap: 22px; padding: 28px 0; border-bottom: 1px solid var(--border); }
.module-icon { position: relative; display: grid; flex: 0 0 64px; place-items: center; width: 64px; height: 64px; border-radius: 18px; color: var(--primary-dark); background: #e3f5fc; }
.module-icon i { display: flex; font-size: 1.75rem; line-height: 1; }
.module-icon b { position: absolute; right: -7px; bottom: -7px; display: grid; place-items: center; width: 26px; height: 26px; border: 2px solid var(--white); border-radius: 50%; color: var(--white); background: var(--accent); font-size: .65rem; line-height: 1; }
.module-list h3 { margin-bottom: 8px; }

.channels-section, .experience, .cta-section { color: rgba(255,255,255,.88); background: linear-gradient(135deg, #0878a6, #1690c3); }
.channels-section h2, .experience h2, .cta-section h2 { color: white; }
.channel-tabs { display: grid; gap: 12px; margin-top: 30px; }
.channel-tabs article { display: grid; grid-template-columns: 52px 1fr; gap: 18px; align-items: center; padding: 18px; border: 1px solid rgba(255,255,255,.2); border-radius: 14px; background: rgba(255,255,255,.08); }
.channel-tabs article > i { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 14px; color: var(--primary-dark); background: white; font-size: 1.45rem; line-height: 1; }
.channel-tabs article strong, .channel-tabs article span { display: block; }
.channel-tabs article span { margin-top: 3px; }
.channel-tabs strong { color: white; }
.app-visual { display: grid; place-items: center; min-height: 420px; }
.app-visual img { width: min(100%, 430px); image-rendering: auto; }
.image-card { overflow: hidden; border-radius: 26px; box-shadow: var(--shadow); }
.image-card img { width: 100%; }
.support-copy { margin-top: 28px; padding: 20px; border-left: 4px solid var(--accent); background: var(--surface); font-weight: 600; }
.experience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.experience-grid span { display: flex; align-items: center; gap: 14px; padding: 24px; border: 1px solid rgba(255,255,255,.22); border-radius: 18px; color: white; background: rgba(255,255,255,.08); font-weight: 700; }
.experience-grid span i { display: grid; flex: 0 0 44px; place-items: center; width: 44px; height: 44px; border-radius: 13px; color: var(--primary-dark); background: white; font-size: 1.25rem; line-height: 1; }
.resources-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.resources-grid article { padding: 42px; border: 1px solid var(--border); border-radius: 24px; }
.resources-grid h3 { margin-bottom: 16px; font-size: 1.6rem; }
.resources-grid a { display: inline-block; margin-top: 25px; color: var(--primary-dark); font-weight: 700; }
.faq-wrap { max-width: 920px; }
.faq-list { display: grid; gap: 14px; }
.faq-list details { border: 1px solid var(--border); border-radius: 16px; background: white; }
.faq-list summary { position: relative; padding: 22px 60px 22px 24px; color: var(--navy); font-weight: 700; cursor: pointer; list-style: none; }
.faq-list summary::after { position: absolute; top: 18px; right: 24px; color: var(--primary); font-size: 1.5rem; content: "+"; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { padding: 0 24px 24px; }
.cta-content { max-width: 850px; }
.cta-content > p:not(.eyebrow) { margin-top: 18px; font-size: 1.15rem; }
.cta-content .button-row { justify-content: center; }
.contact-line { font-size: .9rem !important; opacity: .85; }

footer { padding: 64px 0 28px; color: #99a1af; background: #101828; }
.footer-main { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; }
.footer-main h3 { margin-bottom: 20px; color: white; font-size: 1rem; }
.footer-main a { display: block; margin-top: 10px; }
.footer-main a:hover { color: white; }
.footer-brand img { width: 95px; height: auto; margin-bottom: 20px; }
.footer-brand p { max-width: 300px; }
.footer-social { margin-top: 28px; }
.footer-social h3 { margin-bottom: 12px; }
.social-links { display: flex; flex-wrap: wrap; gap: 9px; }
.footer-main .social-links a { display: grid; place-items: center; width: 38px; height: 38px; margin-top: 0; border: 1px solid #344054; border-radius: 11px; color: white; background: #1d2939; font-size: .72rem; font-weight: 800; text-transform: uppercase; transition: transform .2s, border-color .2s, background .2s; }
.footer-main .social-links a:hover { transform: translateY(-3px); border-color: var(--primary); background: var(--primary); }
.social-links span { line-height: 1; }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 50px; padding-top: 25px; border-top: 1px solid #293448; font-size: .82rem; }
.footer-bottom a:hover { color: white; text-decoration: underline; text-underline-offset: 3px; }
.whatsapp-float { position: fixed; z-index: 900; right: 22px; bottom: 22px; display: grid; place-items: center; width: 58px; height: 58px; border-radius: 50%; color: white; background: #25d366; box-shadow: 0 12px 25px rgba(0,0,0,.25); font-size: .8rem; font-weight: 800; }
#arriba { position: fixed; z-index: 899; right: 28px; bottom: 92px; width: 46px; height: 46px; border: 0; border-radius: 50%; color: white; background: var(--navy); opacity: 0; visibility: hidden; transition: .2s; }
#arriba.is-visible { opacity: 1; visibility: visible; }

/* Aviso de Privacidad */
.privacy-hero { padding: 82px 0 76px; color: rgba(255,255,255,.88); background: linear-gradient(125deg, #26384c 0%, #405167 62%, #0878a6 140%); }
.privacy-hero .container { max-width: 920px; }
.privacy-hero h1 { color: white; }
.privacy-hero h1 span { color: var(--accent); }
.privacy-hero .hero-lead { max-width: 760px; }
.privacy-content { max-width: 920px; }
.privacy-intro { margin-bottom: 52px; padding: 30px 34px; border-left: 5px solid var(--accent); border-radius: 0 18px 18px 0; background: var(--surface); font-size: 1.05rem; }
.privacy-section + .privacy-section { margin-top: 48px; padding-top: 48px; border-top: 1px solid var(--border); }
.privacy-section h2 { margin-bottom: 22px; font-size: clamp(1.45rem, 2.5vw, 2rem); letter-spacing: -.025em; }
.privacy-section p + ul { margin-top: 20px; }
.privacy-section ul { display: grid; gap: 10px; margin: 18px 0 22px; }
.privacy-section li { position: relative; padding-left: 28px; }
.privacy-section li::before { position: absolute; top: 0; left: 2px; color: var(--primary); font-weight: 800; content: "✓"; }
.privacy-section a { color: var(--primary-dark); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.privacy-section a:hover { color: var(--accent-dark); }

@media (max-width: 1024px) {
  .menu-toggle { display: block; }
  .nav-menu-wrapper { position: fixed; top: var(--navbar-height); right: -100%; bottom: 0; display: flex; flex-direction: column; align-items: stretch; width: min(360px, 100%); padding: 32px; background: white; box-shadow: -10px 20px 30px rgba(16,24,40,.15); transition: .25s; }
  .nav-menu-wrapper.active { right: 0; }
  .nav-menu { flex-direction: column; align-items: stretch; gap: 10px; }
  .nav-link { display: block; padding: 12px 0; font-size: 1.1rem; }
  button.nav-link { justify-content: space-between; width: 100%; }
  .submenu { position: static; display: none; width: 100%; padding: 4px 0 8px 14px; border: 0; border-left: 2px solid #d7eef7; border-radius: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; transition: none; }
  .submenu::before { display: none; }
  .has-submenu.is-open .submenu { display: block; transform: none; }
  .submenu a { padding: 10px 12px; }
  .hero-grid { grid-template-columns: 1.2fr .8fr; gap: 34px; }
  .solutions-grid, .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  :root { --navbar-height: 72px; }
  .section { padding: 72px 0; }
  .nav-logo, .logo-img { height: 50px; }
  .hero { padding: 56px 0; }
  .hero-grid, .split { grid-template-columns: 1fr; }
  .hero-grid { min-height: auto; }
  .hero-media { max-height: 500px; }
  .hero-media img { object-position: center 25%; }
  .solutions-grid, .benefits-grid, .module-list, .resources-grid, .footer-main { grid-template-columns: 1fr; }
  .check-list.columns-2 { grid-template-columns: 1fr; }
  .solution-card { min-height: 390px; }
  .reverse-mobile > .image-card { order: 2; }
  .footer-main { gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 10px; }
  .button-row .btn { width: 100%; }
  .privacy-hero { padding: 64px 0 58px; }
  .privacy-intro { padding: 24px; }
  .privacy-section + .privacy-section { margin-top: 38px; padding-top: 38px; }
}

/* Página Plataforma GN3 */
.platform-hero { padding: 100px 0; color: rgba(255,255,255,.9); background: linear-gradient(125deg, #26384c 0%, #405167 60%, #0878a6 140%); }
.platform-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: center; min-height: 590px; }
.platform-hero h1 { color: white; }
.platform-hero h1 span { color: var(--accent); }
.platform-hero .hero-lead { margin-top: 28px; }
.platform-dashboard { position: relative; }
.platform-dashboard > img { width: 100%; border: 10px solid rgba(255,255,255,.12); border-radius: 28px; box-shadow: 0 35px 70px rgba(0,0,0,.3); }
.dashboard-badge { position: absolute; right: -22px; bottom: -34px; display: flex; flex-direction: column; padding: 20px 26px; border-radius: 16px; color: white; background: var(--accent); box-shadow: var(--shadow); }
.dashboard-badge span { font-size: .8rem; }
.personnel-core .section-heading { margin-inline: auto; }
.core-orbit { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(340px, .9fr); gap: 64px; align-items: center; max-width: 1080px; margin: 38px auto 0; }
.core-image { margin: 0; }
.core-image img { width: 100%; max-height: 580px; object-fit: contain; filter: drop-shadow(0 24px 30px rgba(16,24,40,.15)); }
.core-list h3 { margin: 8px 0 24px; font-size: clamp(1.45rem, 2.2vw, 2rem); }
.orbit-items { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin: 0; padding: 0; list-style: none; }
.orbit-items li { position: relative; padding: 15px 16px 15px 44px; border: 1px solid var(--border); border-radius: 13px; background: white; box-shadow: 0 6px 15px rgba(16,24,40,.06); font-weight: 600; }
.orbit-items li::before { content: ""; position: absolute; top: 50%; left: 17px; width: 10px; height: 10px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 5px rgba(255,176,32,.15); transform: translateY(-50%); }
.core-note { max-width: 750px; margin: 58px auto 0; border-left: 0; border-top: 4px solid var(--accent); }
.platform-solutions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.platform-solutions article { display: flex; flex-direction: column; min-height: 300px; padding: 30px; border: 1px solid var(--border); border-radius: 20px; transition: .2s; }
.platform-solutions article:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.platform-solution-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.platform-solution-top img { width: 82px; height: 82px; object-fit: contain; transition: transform .25s ease; }
.platform-solutions article:hover .platform-solution-top img { transform: translateY(-3px) scale(1.04); }
.platform-solutions b { color: var(--primary); font-size: 1.8rem; }
.platform-solutions h3 { margin: 20px 0 12px; }
.platform-solutions a { margin-top: auto; padding-top: 18px; color: var(--primary-dark); font-weight: 700; }
.access-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.access-cards article { padding: 28px 22px; border: 1px solid rgba(255,255,255,.22); border-radius: 18px; background: rgba(255,255,255,.09); }
.access-cards strong { color: white; font-size: 1.35rem; }
.access-cards p { margin-top: 12px; font-size: .9rem; }
.workflow { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; gap: 16px; align-items: center; }
.workflow article { min-height: 190px; padding: 28px; border: 1px solid var(--border); border-radius: 20px; text-align: center; }
.workflow article span { display: grid; place-items: center; width: 42px; height: 42px; margin: 0 auto 18px; border-radius: 50%; color: white; background: var(--primary); font-weight: 800; }
.workflow article h3 { margin-bottom: 8px; }
.workflow > i { color: var(--primary); font-size: 1.6rem; font-style: normal; }
.config-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 34px; }
.config-chips span { padding: 9px 14px; border-radius: 999px; color: var(--primary-dark); background: #e8f6fb; font-size: .86rem; font-weight: 700; }
.platform-data small { display: block; margin-top: 28px; color: var(--muted); }
.audit-section, .integrations { color: rgba(255,255,255,.88); background: #101828; }
.audit-section h2, .integrations h2 { color: white; }
.audit-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.audit-list span { display: flex; align-items: center; gap: 13px; padding: 18px; border: 1px solid #344054; border-radius: 12px; color: white; background: #1d2939; }
.audit-list span i { display: grid; flex: 0 0 40px; place-items: center; width: 40px; height: 40px; border-radius: 11px; color: #9de1ff; background: rgba(22,144,195,.16); font-size: 1.1rem; line-height: 1; }
.roles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.roles-grid span { display: flex; align-items: center; gap: 16px; padding: 26px; border: 1px solid var(--border); border-radius: 18px; color: var(--navy); background: white; box-shadow: 0 8px 18px rgba(16,24,40,.06); font-weight: 700; }
.roles-grid span i { display: grid; flex: 0 0 48px; place-items: center; width: 48px; height: 48px; border-radius: 14px; color: var(--primary-dark); background: #e8f6fb; font-size: 1.3rem; line-height: 1; }
.customization-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.customization-grid span { padding: 15px 19px; border-radius: 14px; background: white; box-shadow: 0 5px 15px rgba(16,24,40,.06); font-weight: 600; }
.integrations .btn { margin-top: 30px; }
.tech-cloud { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 13px; }
.tech-cloud span { display: flex; align-items: center; gap: 11px; padding: 12px 18px 12px 12px; border: 1px solid #344054; border-radius: 15px; color: white; background: #1d2939; font-weight: 700; }
.tech-cloud span i { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 10px; color: #9de1ff; background: rgba(22,144,195,.16); font-size: 1.05rem; line-height: 1; }
.tech-cloud span:nth-child(3n) { color: #101828; background: #9de1ff; }
.tech-cloud span:nth-child(3n) i { color: var(--primary-dark); background: white; }
.platform-benefits { grid-template-columns: repeat(4, 1fr); }
.platform-benefits .benefit-icon { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.platform-benefits .benefit-icon i { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 16px; color: var(--primary); background: #e8f6fb; font-size: 1.5rem; transition: transform .25s ease, color .25s ease, background .25s ease; }
.platform-benefits .benefit-icon span { color: #aab9c1; font-size: .86rem; font-weight: 800; letter-spacing: .1em; }
.platform-benefits article:hover .benefit-icon i { color: white; background: var(--primary); transform: translateY(-3px); }
.platform-statement { color: #9de1ff; }

@media (max-width: 1024px) {
  .platform-hero-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .platform-solutions { grid-template-columns: repeat(2, 1fr); }
  .platform-benefits { grid-template-columns: repeat(2, 1fr); }
  .workflow { grid-template-columns: 1fr 1fr; }
  .workflow > i { display: none; }
  .core-orbit { grid-template-columns: minmax(0, 1fr) minmax(320px, .85fr); gap: 42px; }
}

@media (max-width: 760px) {
  .platform-hero { padding: 70px 0 90px; }
  .platform-hero-grid, .core-orbit { grid-template-columns: 1fr; }
  .platform-dashboard { margin-top: 20px; }
  .dashboard-badge { right: 12px; bottom: -45px; }
  .core-orbit { gap: 30px; }
  .core-image img { max-height: 440px; }
  .orbit-items { grid-template-columns: 1fr; }
  .platform-solutions, .access-cards, .workflow, .roles-grid, .platform-benefits { grid-template-columns: 1fr; }
  .platform-solutions article { min-height: 270px; }
}

/* Página GN3 Nómina */
.payroll-hero { padding: 100px 0; color: rgba(255,255,255,.9); background: radial-gradient(circle at 80% 20%, #127ba4 0, transparent 30%), linear-gradient(125deg, #101828, #344054); }
.payroll-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 68px; align-items: center; min-height: 620px; }
.payroll-hero h1 { color: white; }
.payroll-hero h1 span { color: var(--accent); }
.payroll-hero .hero-lead { margin-top: 28px; }
.payroll-visual { position: relative; padding-bottom: 54px; }
.payroll-visual > img { width: 100%; border: 9px solid rgba(255,255,255,.12); border-radius: 28px; box-shadow: 0 35px 70px rgba(0,0,0,.3); }
.payroll-metrics { position: absolute; right: 18px; bottom: 0; left: 18px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 16px; border-radius: 18px; background: white; box-shadow: var(--shadow); }
.payroll-metrics span { color: var(--muted); font-size: .72rem; text-align: center; }
.payroll-metrics strong { display: block; color: var(--primary-dark); font-size: 1.3rem; }
.payroll-capabilities { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.payroll-capabilities span { padding: 16px 18px; border-left: 4px solid var(--primary); border-radius: 9px; background: var(--surface); font-weight: 600; }
.differentiators-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.differentiators-grid article { padding: 30px; border-radius: 20px; background: white; box-shadow: 0 7px 20px rgba(16,24,40,.06); transition: transform .25s ease, box-shadow .25s ease; }
.differentiators-grid article:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.differentiator-icon { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.differentiator-icon i { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 16px; color: var(--primary); background: #e8f6fb; font-size: 1.55rem; transition: transform .25s ease, color .25s ease, background .25s ease; }
.differentiators-grid article:hover .differentiator-icon i { color: white; background: var(--primary); transform: translateY(-3px); }
.differentiators-grid b { color: var(--primary); font-size: .8rem; letter-spacing: .12em; }
.differentiators-grid h3 { margin: 20px 0 10px; }
.processing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.processing-grid article { padding: 36px; border: 1px solid var(--border); border-radius: 22px; }
.processing-grid h3 { margin-bottom: 22px; }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.tag-cloud span { padding: 10px 15px; border-radius: 999px; color: var(--primary-dark); background: #e6f6fc; font-size: .88rem; font-weight: 700; }
.accent-tags span { color: #9e350e; background: #fff0e9; }
.formula-section, .kardex-section, .fiscal-section, .ecosystem-section { color: rgba(255,255,255,.86); background: #101828; }
.formula-section h2, .kardex-section h2, .fiscal-section h2, .ecosystem-section h2 { color: white; }
.formula-card { overflow: hidden; border: 1px solid #344054; border-radius: 22px; background: #1d2939; box-shadow: 0 25px 50px rgba(0,0,0,.25); }
.formula-head { display: flex; justify-content: space-between; padding: 15px 20px; color: white; background: #344054; font-size: .85rem; }
.formula-head i { color: var(--accent); font-style: normal; letter-spacing: .3em; }
.formula-card code { display: block; padding: 30px; color: #9de1ff; font-family: Consolas, monospace; font-size: 1rem; line-height: 1.8; }
.formula-features { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 30px 28px; }
.formula-features span { padding: 7px 11px; border-radius: 8px; color: white; background: #344054; font-size: .75rem; }
.accounting-card { display: grid; place-items: center; min-height: 360px; padding: 40px; border-radius: 28px; color: white; background: linear-gradient(145deg, var(--primary-dark), var(--primary)); text-align: center; }
.accounting-card h3 { color: white; font-size: 1.8rem; }
.accounting-icon { display: grid; place-items: center; width: 85px; height: 85px; border-radius: 50%; background: rgba(255,255,255,.15); font-size: 2.5rem; }
.employee-record { display: grid; grid-template-columns: 280px 1fr; overflow: hidden; border-radius: 24px; background: white; box-shadow: var(--shadow); }
.employee-profile { padding: 36px; color: white; background: var(--primary-dark); }
.employee-profile span { display: grid; place-items: center; width: 70px; height: 70px; margin-bottom: 30px; border-radius: 50%; color: var(--primary-dark); background: white; font-weight: 800; }
.employee-profile h3 { color: white; }
.employee-profile p { margin-top: 12px; }
.record-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); }
.record-grid span { display: grid; place-items: center; min-height: 118px; padding: 18px; background: white; font-weight: 600; text-align: center; }
.record-grid span i { display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 8px; border-radius: 12px; color: var(--primary-dark); background: #e8f6fb; font-size: 1.15rem; line-height: 1; }
.audit-strip { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; padding: 20px; border-radius: 14px; background: #e7f6fc; }
.audit-strip strong { display: flex; align-items: center; gap: 8px; margin-right: auto; color: var(--primary-dark); }
.audit-strip span { display: flex; align-items: center; gap: 6px; color: var(--muted); font-size: .84rem; }
.audit-strip i { display: flex; color: var(--primary-dark); line-height: 1; }
.process-tabs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.process-tabs article { padding: 32px; border: 1px solid var(--border); border-radius: 22px; transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.process-tabs article:hover { border-color: #b8deec; box-shadow: var(--shadow); transform: translateY(-4px); }
.process-icon { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.process-icon i { display: grid; place-items: center; width: 58px; height: 58px; border-radius: 17px; color: var(--primary); background: #e8f6fb; font-size: 1.55rem; transition: transform .25s ease, color .25s ease, background .25s ease; }
.process-icon span { color: var(--primary); font-weight: 800; }
.process-tabs article:hover .process-icon i { color: white; background: var(--primary); transform: translateY(-3px); }
.process-tabs h3 { margin: 22px 0 14px; font-size: 1.55rem; }
.mini-list { margin-top: 20px; }
.mini-list li { margin-top: 7px; }
.mini-list li::before { margin-right: 8px; color: var(--primary); content: "✓"; }
.incidence-flow { display: grid; grid-template-columns: 1fr auto 140px auto 1fr; gap: 14px; align-items: center; }
.incidence-flow > div { padding: 22px; border: 1px solid #344054; border-radius: 15px; background: #1d2939; text-align: center; }
.incidence-flow small, .incidence-flow strong { display: block; }
.incidence-flow small { margin-bottom: 8px; color: #9de1ff; text-transform: uppercase; }
.incidence-flow i { color: var(--accent); font-size: 1.6rem; font-style: normal; }
.incidence-flow .flow-main { display: grid; place-items: center; min-height: 140px; border-radius: 50%; color: white; background: var(--primary); }
.social-security-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.social-security-grid article { padding: 28px; border-top: 5px solid var(--primary); border-radius: 15px; background: var(--surface); }
.social-security-grid article > i { display: grid; place-items: center; width: 50px; height: 50px; margin-bottom: 20px; border-radius: 15px; color: var(--primary-dark); background: white; font-size: 1.3rem; line-height: 1; }
.social-security-grid h3 { margin-bottom: 12px; }
.fiscal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.fiscal-grid article { padding: 36px; border: 1px solid #344054; border-radius: 22px; background: #1d2939; }
.fiscal-grid article > span { color: var(--accent); font-size: .8rem; font-weight: 800; letter-spacing: .14em; }
.fiscal-grid h3 { margin: 20px 0 14px; color: white; font-size: 1.7rem; }
.ecosystem-map { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 1000px; margin: auto; }
.ecosystem-service { display: flex; align-items: center; gap: 18px; min-height: 125px; padding: 22px; border: 1px solid #344054; border-radius: 18px; color: white; background: #1d2939; transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease; }
.ecosystem-service:hover { border-color: #5bbce3; color: white; background: #26384c; box-shadow: 0 18px 35px rgba(0,0,0,.22); transform: translateY(-4px); }
.ecosystem-service img { width: 72px; height: 72px; flex: 0 0 72px; object-fit: contain; transition: transform .25s ease; }
.ecosystem-service:hover img { transform: scale(1.06); }
.ecosystem-service strong { display: block; line-height: 1.35; }
.ecosystem-center { color: white; border-color: var(--primary); background: var(--primary); }
.ecosystem-center:hover { background: var(--primary); }
.ecosystem-center small { display: block; margin-bottom: 5px; color: #c8efff; font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.ideal-section { background: #edf8fc; }
.ideal-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ideal-list span { display: flex; align-items: center; gap: 12px; padding: 14px; border-radius: 13px; background: white; font-weight: 700; box-shadow: 0 5px 14px rgba(16,24,40,.05); }
.ideal-list span i { display: grid; flex: 0 0 40px; place-items: center; width: 40px; height: 40px; border-radius: 11px; color: var(--primary-dark); background: #e8f6fb; font-size: 1.05rem; line-height: 1; }
.payroll-benefits article > span { display: flex; width: auto; height: auto; align-items: center; justify-content: space-between; margin: 0 0 18px; border-radius: 0; background: transparent; }
.payroll-benefits article > span i { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 15px; color: var(--primary-dark); background: #e8f6fb; font-size: 1.3rem; line-height: 1; }
.payroll-benefits article > span b { color: #aab9c1; font-size: .75rem; letter-spacing: .12em; }

@media (max-width: 1024px) {
  .payroll-hero-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .differentiators-grid, .social-security-grid { grid-template-columns: repeat(2, 1fr); }
  .process-tabs { grid-template-columns: 1fr; }
  .ecosystem-map { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .payroll-hero { padding: 70px 0; }
  .payroll-hero-grid, .processing-grid, .fiscal-grid, .employee-record { grid-template-columns: 1fr; }
  .payroll-visual { margin-top: 10px; }
  .payroll-metrics { position: relative; right: auto; bottom: auto; left: auto; margin-top: 12px; }
  .payroll-capabilities, .differentiators-grid, .record-grid, .social-security-grid, .ideal-list { grid-template-columns: 1fr; }
  .ecosystem-map { grid-template-columns: 1fr; }
  .incidence-flow { grid-template-columns: 1fr; }
  .incidence-flow i { transform: rotate(90deg); text-align: center; }
  .incidence-flow .flow-main { width: 140px; margin: auto; }
}

/* Página Recursos Humanos */
.hr-hero { padding: 100px 0; color: rgba(255,255,255,.9); background: linear-gradient(125deg, #25384b, #40566d); }
.hr-hero-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 65px; align-items: center; min-height: 650px; }
.hr-hero h1 { color: white; }
.hr-hero h1 span { color: var(--accent); }
.hr-hero .hero-lead { margin-top: 28px; }
.hr-hero-visual { position: relative; overflow: visible; height: auto; }
.hr-hero-visual img { width: 100%; height: 100%; border-radius: 28px; object-fit: cover; box-shadow: 0 30px 60px rgba(0,0,0,.3); }
.talent-badge { position: absolute; right: -22px; bottom: 28px; display: flex; flex-direction: column; max-width: 250px; padding: 20px 24px; border-radius: 16px; color: white; background: var(--accent); box-shadow: var(--shadow); }
.talent-badge span { font-size: .78rem; }
.hr-capabilities { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
.hr-capabilities span { display: flex; align-items: center; gap: 11px; padding: 12px; border-radius: 12px; background: var(--surface); font-weight: 600; }
.hr-capabilities span i { display: grid; flex: 0 0 38px; place-items: center; width: 38px; height: 38px; border-radius: 10px; color: var(--primary-dark); background: white; font-size: 1rem; line-height: 1; }
.hr-capabilities span:nth-child(3n) { color: white; background: var(--primary); }
.hr-capabilities span:nth-child(3n) i { color: var(--primary-dark); background: white; }
.hr-lifecycle, .vacancies-section, .portal-section, .hr-ecosystem { color: rgba(255,255,255,.88); background: #101828; }
.hr-lifecycle h2, .vacancies-section h2, .portal-section h2, .hr-ecosystem h2 { color: white; }
.lifecycle-track { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr; gap: 10px; align-items: center; }
.lifecycle-track article { min-height: 205px; padding: 24px 18px; border: 1px solid #344054; border-radius: 18px; background: #1d2939; text-align: center; transition: transform .25s ease, border-color .25s ease; }
.lifecycle-track article:hover { border-color: #5bbce3; transform: translateY(-4px); }
.lifecycle-icon { display: flex; align-items: flex-start; justify-content: space-between; }
.lifecycle-icon i { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 14px; color: #101828; background: #9de1ff; font-size: 1.3rem; transition: transform .25s ease, background .25s ease; }
.lifecycle-track article:hover .lifecycle-icon i { background: var(--accent); transform: translateY(-3px); }
.lifecycle-track article .lifecycle-icon span { color: #9de1ff; font-size: .75rem; font-weight: 800; }
.lifecycle-track h3 { margin: 20px 0 8px; color: white; }
.lifecycle-track > i { color: var(--accent); font-style: normal; }
.lifecycle-track .lifecycle-icon i { color: #101828; }
.lifecycle-actions { justify-content: center; margin-top: 40px; }
.hr-record-card { padding: 45px; border-radius: 28px; color: white; background: linear-gradient(145deg, var(--primary-dark), var(--primary)); box-shadow: var(--shadow); }
.record-avatar { display: grid; place-items: center; width: 84px; height: 84px; margin-bottom: 35px; border-radius: 50%; color: var(--primary-dark); background: white; font-size: 1.25rem; font-weight: 800; }
.hr-record-card small { text-transform: uppercase; letter-spacing: .1em; }
.hr-record-card h3 { max-width: 400px; margin: 12px 0 30px; color: white; font-size: 1.8rem; }
.record-status { display: flex; flex-wrap: wrap; gap: 9px; }
.record-status span { padding: 8px 11px; border-radius: 8px; background: rgba(255,255,255,.14); font-size: .8rem; }
.org-chart { display: grid; gap: 20px; max-width: 900px; margin: auto; }
.org-level { display: flex; justify-content: center; gap: 22px; }
.org-level span { min-width: 190px; padding: 20px; border: 1px solid var(--border); border-radius: 15px; background: white; box-shadow: 0 6px 16px rgba(16,24,40,.06); font-weight: 700; text-align: center; }
.org-top span { color: white; background: var(--primary-dark); }
.org-line { width: 2px; height: 28px; margin: -4px auto; background: var(--primary); }
.org-positions span { min-width: 140px; color: var(--primary-dark); background: #e8f7fc; }
.vacancy-board { display: grid; gap: 11px; }
.vacancy-board article { display: flex; align-items: center; gap: 14px; padding: 14px 18px; border: 1px solid #344054; border-radius: 13px; background: #1d2939; }
.vacancy-board article > i { display: grid; flex: 0 0 42px; place-items: center; width: 42px; height: 42px; border-radius: 11px; color: #9de1ff; background: rgba(22,144,195,.16); font-size: 1.1rem; line-height: 1; }
.vacancy-board article strong { margin-right: auto; }
.status-dot { width: 13px; height: 13px; border-radius: 50%; }
.status-dot.active { background: #12b76a; }
.status-dot.open { background: #2e90fa; }
.status-dot.alert { background: var(--accent); }
.document-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.document-grid article { display: flex; align-items: center; gap: 18px; padding: 25px; border: 1px solid var(--border); border-radius: 17px; }
.document-grid span { display: grid; flex: 0 0 56px; place-items: center; width: 56px; height: 64px; padding: 7px 0 5px; border-radius: 10px; color: white; background: var(--primary); font-size: .65rem; font-weight: 800; }
.document-grid span i { font-size: 1.25rem; line-height: 1; }
.document-grid span b { font-size: .62rem; letter-spacing: .08em; }
.training-section { background: #edf8fc; }
.training-panel { padding: 38px; border-radius: 25px; background: white; box-shadow: var(--shadow); }
.training-progress { height: 16px; margin-bottom: 28px; overflow: hidden; border-radius: 999px; background: #e4e7ec; }
.training-progress span { display: block; width: var(--progress); height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--primary), #53c8ed); }
.training-panel > strong, .training-panel > small { display: block; }
.training-panel > strong { color: var(--navy); font-size: 1.5rem; }
.training-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 30px; }
.training-stats span { padding: 15px; border-radius: 12px; background: var(--surface); font-size: .75rem; text-align: center; }
.training-stats b { display: block; color: var(--primary-dark); font-size: 1.35rem; }
.availability-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.availability-grid span { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 13px; min-height: 138px; padding: 23px; border: 1px solid transparent; border-radius: 15px; background: white; box-shadow: 0 6px 16px rgba(16,24,40,.06); font-weight: 700; text-align: center; transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.availability-grid span:hover { border-color: #b8deec; box-shadow: var(--shadow); transform: translateY(-4px); }
.availability-grid span i { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 14px; color: var(--primary-dark); background: #e3f5fc; font-size: 1.35rem; line-height: 1; transition: color .25s ease, background .25s ease, transform .25s ease; }
.availability-grid span:hover i { color: white; background: var(--primary); transform: scale(1.05); }
.portal-section .btn { margin-top: 30px; }
.portal-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.portal-actions span { display: flex; align-items: center; gap: 14px; min-height: 82px; padding: 16px 18px; border: 1px solid #344054; border-radius: 13px; color: white; background: #1d2939; transition: border-color .25s ease, transform .25s ease; }
.portal-actions span:hover { border-color: #5bbce3; transform: translateY(-3px); }
.portal-actions span i { flex: 0 0 auto; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; color: #101828; background: #9de1ff; font-size: 1.15rem; line-height: 1; transition: background .25s ease, transform .25s ease; }
.portal-actions span:hover i { background: var(--accent); transform: scale(1.05); }
.hr-benefits { grid-template-columns: repeat(4, 1fr); }
.hr-benefits article > span { display: flex; width: auto; height: auto; align-items: center; justify-content: space-between; margin: 0 0 18px; border-radius: 0; background: transparent; font-size: .8rem; letter-spacing: .12em; }
.hr-benefits article > span i { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 15px; color: var(--primary-dark); background: #e8f6fb; font-size: 1.3rem; line-height: 1; }
.hr-benefits article > span b { color: #aab9c1; font-size: .75rem; }
.customization-grid span { display: flex; align-items: center; gap: 10px; }
.customization-grid span > i { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 9px; color: var(--primary-dark); background: #e8f6fb; font-size: .95rem; line-height: 1; }

@media (max-width: 1024px) {
  .hr-hero-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .lifecycle-track { grid-template-columns: repeat(5, 1fr); }
  .lifecycle-track > i { display: none; }
  .availability-grid, .hr-benefits { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .hr-hero { padding: 70px 0; }
  .hr-hero-grid { grid-template-columns: 1fr; }
  .hr-hero-visual { height: 500px; margin-top: 12px; }
  .talent-badge { right: 12px; }
  .hr-capabilities, .lifecycle-track, .document-grid, .availability-grid, .portal-actions, .hr-benefits { grid-template-columns: 1fr; }
  .org-level { flex-direction: column; }
  .org-level span { width: 100%; }
  .training-stats { grid-template-columns: 1fr; }
}

/* Página Control de Asistencia */
.attendance-hero { padding: 100px 0; color: rgba(255,255,255,.9); background: linear-gradient(120deg, #27384b, #405167); }
.attendance-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 65px; align-items: center; min-height: 600px; }
.attendance-hero h1 { color: white; }
.attendance-hero h1 span { color: var(--accent); }
.attendance-hero .hero-lead { margin-top: 28px; }
.attendance-hero-image { position: relative; }
.attendance-hero-image > img { width: 100%; border-radius: 28px; box-shadow: 0 32px 65px rgba(0,0,0,.3); }
.live-check { position: absolute; right: 24px; bottom: -30px; display: flex; align-items: center; gap: 14px; padding: 17px 22px; border-radius: 15px; background: white; box-shadow: var(--shadow); }
.live-check i { width: 13px; height: 13px; border-radius: 50%; background: #12b76a; box-shadow: 0 0 0 7px #d1fadf; }
.live-check strong, .live-check span { display: block; }
.live-check strong { color: var(--navy); }
.live-check span { color: var(--muted); font-size: .78rem; }
.attendance-summary { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.attendance-summary span { display: flex; align-items: center; gap: 10px; min-height: 72px; padding: 13px; border-radius: 11px; background: var(--surface); font-size: .84rem; font-weight: 700; }
.attendance-summary span i { display: grid; flex: 0 0 36px; place-items: center; width: 36px; height: 36px; border-radius: 10px; color: var(--primary-dark); background: white; font-size: 1rem; line-height: 1; }
.methods-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.methods-grid article { padding: 27px 22px; border-radius: 18px; background: white; box-shadow: 0 6px 16px rgba(16,24,40,.06); }
.methods-grid article > span { display: flex; align-items: center; justify-content: space-between; color: var(--primary); font-size: .72rem; font-weight: 800; letter-spacing: .1em; }
.methods-grid article > span i { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 14px; color: var(--primary-dark); background: #e8f6fb; font-size: 1.3rem; line-height: 1; }
.methods-grid article > span b { color: #aab9c1; font-size: .68rem; }
.methods-grid h3 { margin: 24px 0 10px; }
.methods-grid p { font-size: .88rem; }
.app-attendance { background: #edf8fc; }
.phone-mockup { width: min(100%, 340px); margin: auto; padding: 12px; border: 7px solid #101828; border-radius: 42px; background: white; box-shadow: 0 30px 50px rgba(16,24,40,.2); }
.phone-top { display: flex; justify-content: space-between; padding: 8px 13px 16px; color: var(--navy); font-size: .72rem; }
.phone-top b { color: var(--primary); }
.phone-body { padding: 20px; border-radius: 25px; background: var(--surface); }
.phone-body h3 { margin-top: 6px; }
.phone-body button { width: 100%; margin: 24px 0 12px; padding: 15px; border: 0; border-radius: 13px; color: white; background: var(--primary); font-weight: 700; }
.phone-actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.phone-actions span { padding: 10px 5px; border-radius: 9px; background: white; font-size: .65rem; text-align: center; }
.last-record { display: flex; flex-direction: column; margin-top: 18px; padding: 14px; border-radius: 12px; background: white; }
.last-record span { color: #039855; font-size: .72rem; }
.app-details { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.app-details article { padding: 20px; border-radius: 15px; background: white; }
.app-details h3 { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.app-details h3 i { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 10px; color: var(--primary-dark); background: #e8f6fb; font-size: 1rem; line-height: 1; }
.biometric-products-section .section-heading { margin-inline: auto; }
.biometric-products-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.biometric-products-grid a { position: relative; display: grid; grid-template-rows: minmax(0, 1fr) auto; place-items: center; min-width: 0; min-height: 360px; overflow: hidden; padding: 18px 18px 16px; border: 1px solid var(--border); border-radius: 20px; background: white; box-shadow: 0 8px 22px rgba(16,24,40,.06); transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease; }
.biometric-products-grid a::after { position: absolute; right: 14px; bottom: 14px; display: grid; place-items: center; width: 38px; height: 38px; border-radius: 11px; color: white; background: rgba(16,24,40,.78); font-size: 1rem; font-weight: 800; content: "↗"; opacity: 0; transform: translateY(5px); transition: opacity .25s ease, transform .25s ease; }
.biometric-products-grid a:hover { border-color: #b8deec; box-shadow: var(--shadow); transform: translateY(-5px); }
.biometric-products-grid a:hover::after { opacity: 1; transform: translateY(0); }
.biometric-products-grid img { width: 100%; height: 280px; min-height: 0; object-fit: contain; transition: transform .35s ease; }
.biometric-products-grid a > span { width: 100%; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border); color: var(--navy); font-weight: 800; text-align: center; }
.biometric-products-grid a:hover img { transform: scale(1.035); }
.product-lightbox { width: 100%; max-width: none; height: 100%; max-height: none; padding: 0; overflow: hidden; border: 0; background: transparent; }
.product-lightbox::backdrop { background: rgba(8,15,28,.88); backdrop-filter: blur(7px); }
.product-lightbox[open] { display: grid; place-items: center; }
.product-lightbox-content { position: relative; display: grid; grid-template-columns: 64px minmax(0, 1fr) 64px; align-items: center; width: min(94vw, 1240px); height: min(92vh, 820px); padding: 24px; border: 1px solid rgba(255,255,255,.14); border-radius: 24px; background: #101828; box-shadow: 0 35px 80px rgba(0,0,0,.45); }
.product-lightbox figure { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr); min-width: 0; height: 100%; margin: 0; overflow: hidden; border-radius: 18px; background: white; }
.product-lightbox-image { min-width: 0; min-height: 0; padding: 28px; background: #f8fafc; }
.product-lightbox figure img { width: 100%; height: 100%; min-height: 0; object-fit: contain; }
.product-lightbox figcaption { min-width: 0; padding: 58px 38px 36px; overflow-y: auto; color: var(--navy); font-size: .95rem; }
.product-lightbox-counter { display: inline-block; margin-bottom: 16px; color: var(--primary-dark); font-size: .82rem; font-weight: 800; letter-spacing: .08em; }
.product-lightbox-caption { margin: 0 0 18px; color: var(--navy); font-size: clamp(1.7rem, 3vw, 2.35rem); line-height: 1.1; }
.product-lightbox-description { margin: 0 0 24px; color: var(--muted); font-size: 1rem; }
.product-lightbox-features { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.product-lightbox-features li { position: relative; padding-left: 25px; }
.product-lightbox-features li::before { position: absolute; top: 0; left: 0; color: var(--primary); font-weight: 900; content: "✓"; }
.product-lightbox button { display: grid; place-items: center; border: 0; color: white; background: rgba(255,255,255,.1); cursor: pointer; transition: background .2s ease, transform .2s ease; }
.product-lightbox button:hover { background: var(--primary); transform: scale(1.05); }
.product-lightbox-close { position: absolute; top: 14px; right: 14px; z-index: 2; width: 46px; height: 46px; border-radius: 13px; font-size: 1.8rem; line-height: 1; }
.product-lightbox-nav { width: 48px; height: 64px; margin: auto; border-radius: 14px; font-size: 2.2rem; line-height: 1; }
.product-lightbox-prev { margin-right: 16px; }
.product-lightbox-next { margin-left: 16px; }
.geo-section, .schedule-section, .history-section, .operations-section { color: rgba(255,255,255,.88); background: #101828; }
.geo-section h2, .schedule-section h2, .history-section h2, .operations-section h2 { color: white; }
.geo-card { position: relative; min-height: 360px; overflow: hidden; border: 1px solid #344054; border-radius: 25px; background: #1d2939; }
.map-grid { position: absolute; inset: 0; opacity: .26; background-image: linear-gradient(#9de1ff 1px, transparent 1px), linear-gradient(90deg, #9de1ff 1px, transparent 1px); background-size: 36px 36px; transform: rotate(-9deg) scale(1.2); }
.map-pin { position: absolute; top: 42%; left: 48%; display: grid; place-items: center; width: 38px; height: 38px; border: 8px solid rgba(252,91,31,.3); border-radius: 50%; color: var(--accent); background: white; }
.geo-data { position: absolute; right: 20px; bottom: 20px; left: 20px; padding: 18px; border-radius: 13px; color: var(--navy); background: white; }
.geo-data strong, .geo-data span { display: block; }
.geo-data span { color: var(--muted); font-size: .78rem; }
.schedule-board { overflow: hidden; border: 1px solid #344054; border-radius: 18px; }
.schedule-board > div { display: grid; grid-template-columns: 1.3fr repeat(4, 1fr); gap: 12px; padding: 17px 22px; border-bottom: 1px solid #344054; background: #1d2939; }
.schedule-board > div:last-child { border: 0; }
.schedule-board .schedule-head { color: #9de1ff; background: #344054; font-size: .78rem; font-weight: 800; text-transform: uppercase; }
.schedule-board b { color: #9de1ff; }
.incidents-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.incidents-grid article { display: flex; align-items: center; gap: 13px; padding: 20px; border-radius: 14px; background: white; box-shadow: 0 5px 14px rgba(16,24,40,.05); }
.incidents-grid span { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; color: var(--accent); background: #fff0e9; font-weight: 800; }
.timeline-card { padding: 26px; border: 1px solid #344054; border-radius: 20px; background: #1d2939; }
.timeline-card article { display: grid; grid-template-columns: 50px 18px 1fr; gap: 13px; align-items: start; min-height: 75px; }
.timeline-card time { color: #9de1ff; }
.timeline-card i { position: relative; width: 11px; height: 11px; margin-top: 6px; border-radius: 50%; background: var(--accent); }
.timeline-card i::after { position: absolute; top: 13px; left: 5px; width: 1px; height: 55px; background: #475467; content: ""; }
.timeline-card article:last-child i::after { display: none; }
.timeline-card strong, .timeline-card span { display: block; }
.timeline-card strong { color: white; }
.timeline-card span { color: #98a2b3; font-size: .8rem; }
.attendance-integrations { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.attendance-integrations article { padding: 36px; border: 1px solid var(--border); border-radius: 22px; }
.attendance-integrations article > span { color: var(--primary); font-size: .75rem; font-weight: 800; letter-spacing: .12em; }
.attendance-integrations h3 { margin: 22px 0 12px; font-size: 1.55rem; }
.attendance-integrations a { display: inline-block; margin-top: 22px; color: var(--primary-dark); font-weight: 700; }
.operation-types { display: flex; flex-wrap: wrap; justify-content: center; gap: 11px; }
.operation-types span { padding: 17px 20px; border: 1px solid #344054; border-radius: 13px; color: white; background: #1d2939; font-weight: 600; }
.permissions-wheel { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.permissions-wheel span { padding: 20px; border: 1px solid var(--border); border-radius: 14px; font-weight: 700; text-align: center; }
.permissions-wheel span:nth-child(3n) { color: white; background: var(--primary); }
.attendance-benefits { grid-template-columns: repeat(4, 1fr); }
.attendance-benefits article > span { display: flex; width: auto; height: auto; align-items: center; justify-content: space-between; margin: 0 0 18px; border-radius: 0; background: transparent; font-size: .8rem; letter-spacing: .12em; }
.attendance-benefits article > span i { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 15px; color: var(--primary-dark); background: #e8f6fb; font-size: 1.3rem; line-height: 1; }
.attendance-benefits article > span b { color: #aab9c1; font-size: .75rem; }

@media (max-width: 1024px) {
  .attendance-hero-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .methods-grid { grid-template-columns: repeat(3, 1fr); }
  .incidents-grid, .attendance-benefits { grid-template-columns: repeat(2, 1fr); }
  .biometric-products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .attendance-hero { padding: 70px 0 90px; }
  .attendance-hero-grid, .attendance-integrations { grid-template-columns: 1fr; }
  .live-check { right: 12px; }
  .attendance-summary, .methods-grid, .app-details, .incidents-grid, .attendance-benefits { grid-template-columns: 1fr; }
  .biometric-products-grid { grid-template-columns: 1fr; }
  .product-lightbox-content { grid-template-columns: 44px minmax(0, 1fr) 44px; width: 96vw; height: 94vh; padding: 12px 4px; border-radius: 18px; }
  .product-lightbox figure { grid-template-columns: 1fr; grid-template-rows: minmax(260px, 44%) minmax(0, 1fr); }
  .product-lightbox-image { padding: 18px; }
  .product-lightbox figcaption { padding: 24px 22px 30px; }
  .product-lightbox-nav { width: 40px; height: 56px; }
  .product-lightbox-prev { margin-right: 6px; }
  .product-lightbox-next { margin-left: 6px; }
  .product-lightbox-close { top: 10px; right: 10px; width: 42px; height: 42px; }
  .schedule-board { overflow-x: auto; }
  .schedule-board > div { min-width: 650px; }
}

/* Página Portal del Empleado */
.employee-portal-hero { overflow: hidden; padding: 95px 0; color: rgba(255,255,255,.9); background: linear-gradient(120deg, #182c43, #27465f); }
.employee-portal-hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 60px; align-items: center; min-height: 620px; }
.employee-portal-hero h1 { color: white; }
.employee-portal-hero h1 span { color: var(--accent); }
.employee-portal-hero .hero-lead { margin-top: 28px; }
.portal-hero-visual { position: relative; padding: 24px; border-radius: 34px; background: rgba(255,255,255,.08); }
.portal-hero-visual img { display: block; width: 100%; border-radius: 24px; background: white; box-shadow: 0 35px 70px rgba(0,0,0,.28); }
.portal-live-card { position: absolute; right: 5px; bottom: 4px; display: flex; align-items: center; gap: 13px; padding: 17px 22px; border-radius: 15px; color: var(--navy); background: white; box-shadow: var(--shadow); }
.portal-live-card > span { color: #12b76a; }
.portal-live-card strong, .portal-live-card small { display: block; }
.portal-live-card small { color: var(--muted); }
.portal-quick-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 11px; }
.portal-quick-grid span { display: flex; align-items: center; gap: 11px; padding: 12px; border-radius: 13px; background: var(--surface); font-weight: 700; }
.portal-quick-grid span i { display: grid; flex: 0 0 38px; place-items: center; width: 38px; height: 38px; border-radius: 10px; color: var(--primary-dark); background: white; font-size: 1rem; line-height: 1; }
.portal-quick-grid span:nth-child(4n+1), .portal-quick-grid span:nth-child(4n) { color: white; background: var(--primary); }
.portal-overview { background: #edf8fc; }
.portal-screen { overflow: hidden; border-radius: 28px; background: white; box-shadow: 0 22px 48px rgba(16,24,40,.16); }
.portal-screen img { display: block; width: 100%; height: 600px; object-fit: cover; object-position: center; }
.portal-screen-tall img { height: 620px; }
.portal-feature-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }
.portal-feature-cards article { display: flex; align-items: flex-start; gap: 13px; padding: 18px; border-radius: 14px; background: white; box-shadow: 0 5px 14px rgba(16,24,40,.05); }
.portal-feature-cards article > i { display: grid; flex: 0 0 40px; place-items: center; width: 40px; height: 40px; border-radius: 11px; color: var(--primary-dark); background: #e8f6fb; font-size: 1.05rem; line-height: 1; }
.portal-feature-cards strong, .portal-feature-cards span { display: block; }
.portal-feature-cards strong { margin-bottom: 7px; color: var(--navy); }
.portal-feature-cards span { color: var(--muted); font-size: .84rem; }
.portal-services-section, .leaders-section { color: rgba(255,255,255,.88); background: #101828; }
.portal-services-section h2, .portal-services-section h3, .leaders-section h2 { color: white; }
.portal-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.portal-services-grid article { padding: 30px; border: 1px solid #344054; border-radius: 18px; background: #1d2939; }
.portal-services-grid article > span { display: flex; align-items: center; justify-content: space-between; color: var(--accent); font-size: .75rem; font-weight: 800; letter-spacing: .14em; }
.portal-services-grid article > span i { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 14px; color: #101828; background: #9de1ff; font-size: 1.25rem; line-height: 1; }
.portal-services-grid h3 { margin: 22px 0 10px; }
.portal-app-screen { padding: 16px; background: #f8fafc; }
.portal-app-screen img { height: 610px; object-fit: contain; }
.store-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.store-badges span { padding: 13px 17px; border-radius: 10px; color: white; background: var(--navy); font-size: .82rem; font-weight: 700; }
.check-list-light li { color: rgba(255,255,255,.9); }
.portal-leader-screen img { height: 580px; }
.portal-custom-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 17px; }
.portal-custom-grid article { padding: 28px; border-top: 5px solid var(--primary); border-radius: 17px; background: white; box-shadow: 0 8px 22px rgba(16,24,40,.07); }
.portal-custom-grid article > span { display: flex; align-items: center; justify-content: space-between; color: var(--primary); font-size: .7rem; font-weight: 800; letter-spacing: .12em; }
.portal-custom-grid article > span i { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 14px; color: var(--primary-dark); background: #e8f6fb; font-size: 1.25rem; line-height: 1; }
.portal-custom-grid h3 { margin: 20px 0 10px; }
.portal-benefits { grid-template-columns: repeat(3, 1fr); }
.portal-benefits article > span { display: flex; width: auto; height: auto; align-items: center; justify-content: space-between; margin: 0 0 18px; border-radius: 0; background: transparent; font-size: .8rem; letter-spacing: .12em; }
.portal-benefits article > span i { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 15px; color: var(--primary-dark); background: #e8f6fb; font-size: 1.3rem; line-height: 1; }
.portal-benefits article > span b { color: #aab9c1; font-size: .75rem; }

@media (max-width: 1024px) {
  .employee-portal-hero-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .portal-services-grid, .portal-benefits { grid-template-columns: repeat(2, 1fr); }
  .portal-custom-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .employee-portal-hero { padding: 70px 0 90px; }
  .employee-portal-hero-grid { grid-template-columns: 1fr; }
  .portal-live-card { right: 8px; bottom: -18px; }
  .portal-quick-grid, .portal-feature-cards, .portal-services-grid, .portal-custom-grid, .portal-benefits { grid-template-columns: 1fr; }
  .portal-screen img, .portal-screen-tall img, .portal-app-screen img, .portal-leader-screen img { height: auto; max-height: 570px; object-fit: contain; }
}

/* Página Gestión del Tiempo Libre */
.time-off-hero { padding: 100px 0; color: rgba(255,255,255,.9); background: linear-gradient(120deg, #193047, #2e536c); }
.time-off-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 65px; align-items: center; min-height: 610px; }
.time-off-hero h1 { color: white; }
.time-off-hero h1 span { color: var(--accent); }
.time-off-hero .hero-lead { margin-top: 28px; }
.time-off-dashboard { position: relative; padding: 28px; border-radius: 30px; background: rgba(255,255,255,.09); }
.time-off-calendar { padding: 28px; border-radius: 22px; color: var(--navy); background: white; box-shadow: 0 30px 65px rgba(0,0,0,.25); }
.calendar-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 25px; }
.calendar-head strong { font-size: 1.35rem; }
.calendar-head span { padding: 8px 11px; border-radius: 9px; color: var(--primary-dark); background: #e7f6fc; font-size: .75rem; font-weight: 700; }
.week-row, .calendar-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 7px; text-align: center; }
.week-row { margin-bottom: 10px; color: var(--muted); }
.calendar-days b, .calendar-days i { display: grid; place-items: center; min-height: 42px; border-radius: 10px; font-size: .82rem; font-style: normal; }
.calendar-days b { background: var(--surface); }
.calendar-days .selected { color: white; background: var(--primary); }
.request-status { position: absolute; right: 4px; bottom: -22px; display: flex; align-items: center; gap: 13px; padding: 17px 22px; border-radius: 15px; color: var(--navy); background: white; box-shadow: var(--shadow); }
.request-status > span { color: #12b76a; }
.request-status strong, .request-status small { display: block; }
.request-status small { color: var(--muted); }
.time-off-summary { display: grid; grid-template-columns: repeat(2, 1fr); gap: 11px; }
.time-off-summary span { display: flex; align-items: center; gap: 11px; padding: 12px; border-radius: 13px; background: var(--surface); font-weight: 700; }
.time-off-summary span i { display: grid; flex: 0 0 38px; place-items: center; width: 38px; height: 38px; border-radius: 10px; color: var(--primary-dark); background: white; font-size: 1rem; line-height: 1; }
.time-off-summary span:nth-child(3n) { color: white; background: var(--primary); }
.leave-types-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; }
.leave-types-grid article { padding: 30px; border-radius: 18px; background: white; box-shadow: 0 7px 20px rgba(16,24,40,.07); }
.leave-types-grid article > span { display: flex; align-items: center; justify-content: space-between; color: var(--primary); font-size: .72rem; font-weight: 800; letter-spacing: .12em; }
.leave-types-grid article > span i { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 14px; color: var(--primary-dark); background: #e8f6fb; font-size: 1.25rem; line-height: 1; }
.leave-types-grid article > span b { color: #aab9c1; font-size: .7rem; }
.leave-types-grid h3 { margin: 22px 0 10px; }
.authorization-section, .team-calendar-section, .integrations-time-section { color: rgba(255,255,255,.88); background: #101828; }
.authorization-section h2, .authorization-section h3, .team-calendar-section h2, .integrations-time-section h2, .integrations-time-section h3 { color: white; }
.authorization-flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; gap: 12px; align-items: center; }
.authorization-flow article { min-height: 220px; padding: 27px; border: 1px solid #344054; border-radius: 18px; background: #1d2939; }
.authorization-flow article > span { display: flex; align-items: center; justify-content: space-between; color: var(--accent); font-size: .75rem; font-weight: 800; }
.authorization-flow article > span i { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 14px; color: #101828; background: #9de1ff; font-size: 1.25rem; line-height: 1; }
.authorization-flow h3 { margin: 28px 0 10px; }
.authorization-flow > i { color: var(--accent); font-size: 1.5rem; font-style: normal; }
.time-off-image { overflow: hidden; border-radius: 28px; background: white; box-shadow: var(--shadow); }
.time-off-image img { display: block; width: 100%; height: 610px; object-fit: cover; }
.team-calendar-legend { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 28px; }
.team-calendar-legend span { display: flex; align-items: center; gap: 8px; font-size: .82rem; }
.team-calendar-legend i { width: 10px; height: 10px; border-radius: 50%; }
.blue { background: #2e90fa; }.orange { background: var(--accent); }.green { background: #12b76a; }
.team-availability { display: grid; gap: 11px; padding: 25px; border: 1px solid #344054; border-radius: 20px; background: #1d2939; }
.team-availability > div { display: grid; grid-template-columns: 130px 1fr; gap: 12px; align-items: center; }
.leave-bar, .available-bar { padding: 12px 15px; border-radius: 10px; color: white; font-size: .78rem; font-weight: 700; }
.blue-bar { width: 72%; background: #2e90fa; }.orange-bar { width: 42%; background: var(--accent); }.green-bar { width: 55%; background: #12b76a; }.available-bar { width: 100%; color: #98a2b3; background: #344054; }
.policy-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.policy-grid article { padding: 23px; border-radius: 15px; background: white; box-shadow: 0 5px 15px rgba(16,24,40,.05); }
.policy-grid article > span { display: flex; align-items: center; justify-content: space-between; color: var(--primary); font-size: .72rem; font-weight: 800; }
.policy-grid article > span i { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 13px; color: var(--primary-dark); background: #e8f6fb; font-size: 1.15rem; line-height: 1; }
.policy-grid article > span b { color: #aab9c1; font-size: .7rem; }
.policy-grid h3 { margin: 15px 0 7px; }
.employee-request-section { background: #edf8fc; }
.request-phone { width: min(100%, 350px); margin: auto; padding: 14px; border: 7px solid #101828; border-radius: 38px; background: white; box-shadow: 0 28px 50px rgba(16,24,40,.2); }
.request-phone-head { padding: 25px 20px; border-radius: 23px 23px 13px 13px; color: white; background: var(--primary-dark); }
.request-phone-head small, .request-phone-head strong { display: block; }
.request-phone label { display: block; margin: 11px 6px 0; color: var(--muted); font-size: .72rem; }
.request-phone label span { display: block; margin-top: 5px; padding: 12px; border-radius: 10px; color: var(--navy); background: var(--surface); font-size: .83rem; font-weight: 700; }
.request-dates { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
.request-phone button { width: calc(100% - 12px); margin: 18px 6px 6px; padding: 14px; border: 0; border-radius: 11px; color: white; background: var(--accent); font-weight: 800; }
.text-link { display: inline-block; margin-top: 22px; color: var(--primary-dark); font-weight: 800; }
.time-integrations { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.time-integrations article { padding: 32px; border: 1px solid #344054; border-radius: 19px; background: #1d2939; }
.time-integrations article > span { color: #9de1ff; font-size: .72rem; font-weight: 800; letter-spacing: .12em; }
.time-integrations h3 { margin: 20px 0 10px; }
.time-integrations a { display: inline-block; margin-top: 18px; color: #9de1ff; font-weight: 700; }
.time-benefits { grid-template-columns: repeat(3, 1fr); }
.time-benefits article > span { display: flex; width: auto; height: auto; align-items: center; justify-content: space-between; margin: 0 0 18px; border-radius: 0; background: transparent; font-size: .8rem; letter-spacing: .12em; }
.time-benefits article > span i { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 15px; color: var(--primary-dark); background: #e8f6fb; font-size: 1.3rem; line-height: 1; }
.time-benefits article > span b { color: #aab9c1; font-size: .75rem; }

@media (max-width: 1024px) {
  .time-off-hero-grid { grid-template-columns: 1fr 1fr; gap: 38px; }
  .authorization-flow { grid-template-columns: repeat(4, 1fr); }
  .authorization-flow > i { display: none; }
}

@media (max-width: 760px) {
  .time-off-hero { padding: 70px 0 90px; }
  .time-off-hero-grid { grid-template-columns: 1fr; }
  .time-off-dashboard { margin-top: 15px; padding: 12px; }
  .time-off-calendar { padding: 18px 12px; }
  .calendar-days b, .calendar-days i { min-height: 34px; }
  .request-status { right: 8px; }
  .time-off-summary, .leave-types-grid, .authorization-flow, .policy-grid, .time-integrations, .time-benefits { grid-template-columns: 1fr; }
  .time-off-image img { height: auto; max-height: 570px; object-fit: contain; }
  .team-availability > div { grid-template-columns: 100px 1fr; }
}

/* Página Inteligencia Artificial y Automatización */
.ai-hero { overflow: hidden; padding: 100px 0; color: rgba(255,255,255,.9); background: radial-gradient(circle at 85% 25%, rgba(22,144,195,.35), transparent 35%), linear-gradient(120deg, #101828, #1d344b); }
.ai-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 65px; align-items: center; min-height: 630px; }
.ai-hero h1 { color: white; }
.ai-hero h1 span { color: var(--accent); }
.ai-hero .hero-lead { margin-top: 28px; }
.ai-chat-window { padding: 22px; border: 1px solid rgba(255,255,255,.15); border-radius: 28px; color: var(--navy); background: white; box-shadow: 0 35px 70px rgba(0,0,0,.32); transform: rotate(1.5deg); }
.ai-chat-head { display: grid; grid-template-columns: 48px 1fr auto; gap: 12px; align-items: center; padding-bottom: 18px; border-bottom: 1px solid var(--border); }
.ai-avatar { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 15px; color: white; background: linear-gradient(145deg, var(--primary), #6957d9); font-size: .75rem; font-weight: 800; }
.ai-chat-head strong, .ai-chat-head span { display: block; }
.ai-chat-head span { margin-top: 3px; color: var(--muted); font-size: .7rem; }
.ai-chat-head i { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: #12b76a; }
.ai-conversation { min-height: 380px; padding: 28px 4px; background-image: radial-gradient(#d0d5dd 1px, transparent 1px); background-size: 20px 20px; }
.chat-bubble { max-width: 85%; padding: 16px 18px; border-radius: 18px; box-shadow: 0 5px 15px rgba(16,24,40,.08); }
.user-bubble { margin-left: auto; color: white; background: var(--primary); border-bottom-right-radius: 5px; }
.bot-bubble { display: flex; gap: 11px; margin-top: 18px; background: white; border-bottom-left-radius: 5px; }
.bot-bubble > span { color: #6957d9; font-size: 1.2rem; }
.chat-options { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.chat-options span { padding: 9px 12px; border: 1px solid #b9e6f7; border-radius: 999px; color: var(--primary-dark); background: white; font-size: .72rem; font-weight: 700; }
.ai-input { display: flex; align-items: center; justify-content: space-between; padding: 13px 15px; border: 1px solid var(--border); border-radius: 13px; color: var(--muted); }
.ai-input b { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; color: white; background: var(--accent); }
.ai-question-list { display: grid; gap: 11px; }
.ai-question-list span { position: relative; padding: 18px 20px 18px 50px; border-radius: 14px; background: var(--surface); font-weight: 700; }
.ai-question-list span::before { position: absolute; top: 15px; left: 15px; display: grid; place-items: center; width: 27px; height: 27px; border-radius: 9px; color: white; background: var(--primary); content: "?"; }
.portal-ai-section, .ai-rh-section, .automation-section, .ai-experience-section { color: rgba(255,255,255,.88); background: #101828; }
.portal-ai-section h2, .ai-rh-section h2, .automation-section h2, .ai-experience-section h2 { color: white; }
.portal-ai-section .btn { margin-top: 25px; }
.portal-ai-visual { position: relative; display: grid; grid-template-columns: 125px 1fr; min-height: 430px; overflow: hidden; border: 1px solid #344054; border-radius: 24px; color: var(--navy); background: white; box-shadow: 0 25px 55px rgba(0,0,0,.25); }
.portal-ai-sidebar { display: flex; flex-direction: column; gap: 22px; padding: 25px 18px; color: white; background: var(--primary-dark); font-size: .72rem; }
.portal-ai-sidebar strong { margin-bottom: 20px; font-size: 1.2rem; }
.portal-ai-content { padding: 40px 28px; }
.portal-ai-content h3 { margin-top: 10px; }
.portal-ai-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin-top: 35px; }
.portal-ai-cards i { min-height: 100px; border-radius: 13px; background: var(--surface); }
.portal-ai-cards i:nth-child(2) { background: #e7f6fc; }
.portal-ai-chat { position: absolute; right: 18px; bottom: 18px; display: flex; align-items: center; gap: 12px; width: 270px; padding: 17px; border-radius: 16px; color: var(--navy); background: white; box-shadow: var(--shadow); }
.portal-ai-chat > span { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 13px; color: white; background: #6957d9; }
.portal-ai-chat strong, .portal-ai-chat small { display: block; }
.portal-ai-chat small { color: var(--muted); }
.ai-autonomy-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.ai-autonomy-grid article { position: relative; padding: 30px; border: 1px solid var(--border); border-radius: 18px; }
.ai-autonomy-grid article:not(:last-child)::after { position: absolute; top: 42px; right: -13px; z-index: 1; color: var(--accent); font-size: 1.35rem; content: "→"; }
.ai-autonomy-grid article > span { display: flex; align-items: center; justify-content: space-between; color: var(--primary); font-size: .75rem; font-weight: 800; }
.ai-autonomy-grid article > span i { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 14px; color: var(--primary-dark); background: #e8f6fb; font-size: 1.25rem; line-height: 1; }
.ai-autonomy-grid h3 { margin: 25px 0 10px; }
.ai-rh-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 30px; }
.ai-rh-metrics article { padding: 20px; border: 1px solid #344054; border-radius: 14px; background: #1d2939; }
.ai-rh-metrics strong, .ai-rh-metrics span { display: block; }
.ai-rh-metrics strong { color: #9de1ff; font-size: 1.7rem; }
.ai-rh-metrics span { margin-top: 6px; color: #98a2b3; font-size: .72rem; }
.ai-rh-media { display: grid; gap: 18px; min-width: 0; }
.ai-rh-media figure { position: relative; overflow: hidden; margin: 0; border: 1px solid #344054; border-radius: 22px; background: #1d2939; box-shadow: 0 24px 50px rgba(0,0,0,.25); }
.ai-rh-media figure::after { content: ''; position: absolute; inset: 0; border-radius: inherit; box-shadow: inset 0 0 0 1px rgba(255,255,255,.08); pointer-events: none; }
.ai-rh-media img { display: block; width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; }
.ai-rh-list { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
.ai-rh-list span { display: flex; align-items: center; gap: 13px; padding: 18px; border: 1px solid #344054; border-radius: 13px; color: white; background: #1d2939; }
.ai-rh-list span i { flex: 0 0 auto; display: grid; place-items: center; width: 38px; height: 38px; border-radius: 11px; color: #9de1ff; background: rgba(22,144,195,.16); font-size: 1.05rem; line-height: 1; }
.ai-availability { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.ai-availability article { padding: 27px; border-radius: 18px; background: white; box-shadow: 0 7px 18px rgba(16,24,40,.06); }
.ai-availability article > span { color: var(--primary); font-size: .8rem; font-weight: 800; letter-spacing: .12em; }
.ai-availability h3 { margin: 22px 0 10px; }
.automation-map { display: grid; grid-template-columns: 230px 1fr; gap: 35px; align-items: center; }
.automation-center { display: grid; place-items: center; aspect-ratio: 1; border-radius: 50%; color: white; background: linear-gradient(145deg, var(--primary), #6957d9); box-shadow: 0 0 0 18px rgba(22,144,195,.1); text-align: center; }
.automation-center > span { font-size: 2rem; }
.automation-center strong, .automation-center small { display: block; }
.automation-center strong { font-size: 2.2rem; }
.automation-nodes { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.automation-nodes article { padding: 20px; border: 1px solid #344054; border-radius: 14px; background: #1d2939; }
.automation-nodes article > i { display: grid; place-items: center; width: 40px; height: 40px; margin-bottom: 14px; border-radius: 11px; color: #9de1ff; background: rgba(22,144,195,.16); font-size: 1.05rem; line-height: 1; }
.automation-nodes span, .automation-nodes small { display: block; }
.automation-nodes span { color: white; font-weight: 700; }
.automation-nodes small { margin-top: 7px; color: #98a2b3; }
.ai-ecosystem-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 11px; }
.ai-ecosystem-grid span { display: flex; align-items: center; gap: 11px; padding: 12px; border-radius: 13px; background: var(--surface); font-weight: 700; }
.ai-ecosystem-grid span i { display: grid; flex: 0 0 38px; place-items: center; width: 38px; height: 38px; border-radius: 10px; color: var(--primary-dark); background: white; font-size: 1rem; line-height: 1; }
.ai-ecosystem-grid span:nth-child(3n) { color: white; background: linear-gradient(145deg, var(--primary), #6957d9); }
.ai-experience-words { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.ai-experience-words span { display: flex; align-items: center; gap: 10px; padding: 12px 18px 12px 12px; border: 1px solid #344054; border-radius: 999px; color: white; background: #1d2939; font-weight: 700; }
.ai-experience-words span i { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; color: #101828; background: #9de1ff; font-size: .95rem; line-height: 1; }
.ai-benefits { grid-template-columns: repeat(3, 1fr); }
.ai-benefits article > span { display: flex; width: auto; height: auto; align-items: center; justify-content: space-between; margin: 0 0 18px; border-radius: 0; background: transparent; font-size: .8rem; letter-spacing: .12em; }
.ai-benefits article > span i { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 15px; color: var(--primary-dark); background: #e8f6fb; font-size: 1.3rem; line-height: 1; }
.ai-benefits article > span b { color: #aab9c1; font-size: .75rem; }

@media (max-width: 1024px) {
  .ai-hero-grid { grid-template-columns: 1fr 1fr; gap: 38px; }
  .ai-autonomy-grid, .ai-availability { grid-template-columns: repeat(2, 1fr); }
  .automation-nodes { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .ai-hero { padding: 70px 0 90px; }
  .ai-hero-grid, .automation-map { grid-template-columns: 1fr; }
  .ai-chat-window { margin-top: 15px; padding: 15px; transform: none; }
  .ai-conversation { min-height: 330px; }
  .portal-ai-visual { grid-template-columns: 80px 1fr; min-height: 380px; }
  .portal-ai-sidebar { padding: 20px 11px; }
  .portal-ai-content { padding: 28px 16px; }
  .portal-ai-chat { right: 10px; bottom: 10px; width: 240px; }
  .ai-autonomy-grid, .ai-rh-metrics, .ai-rh-list, .ai-availability, .automation-nodes, .ai-ecosystem-grid, .ai-benefits { grid-template-columns: 1fr; }
  .ai-autonomy-grid article::after { display: none; }
  .automation-center { width: 210px; margin: auto; }
}

/* Página Nosotros */
.about-hero { padding: 100px 0; color: rgba(255,255,255,.9); background: linear-gradient(120deg, #203448, #40556b); }
.about-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 65px; align-items: center; min-height: 640px; }
.about-hero h1 { color: white; }
.about-hero h1 span { color: var(--accent); }
.about-hero .hero-lead { margin-top: 28px; }
.about-hero-visual { position: relative; }
.about-hero-visual img { width: 100%; min-height: 560px; border-radius: 28px; object-fit: cover; box-shadow: 0 32px 65px rgba(0,0,0,.3); }
.about-years { position: absolute; right: -18px; bottom: 25px; display: flex; align-items: center; gap: 13px; max-width: 280px; padding: 20px 22px; border-radius: 17px; color: white; background: var(--accent); box-shadow: var(--shadow); }
.about-years strong { font-size: 2rem; }
.about-years span { font-size: .78rem; line-height: 1.35; }
.about-focus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.about-focus-grid article { min-height: 150px; padding: 24px; border: 1px solid var(--border); border-radius: 17px; }
.about-focus-grid article > span { color: var(--primary); font-size: .72rem; font-weight: 800; }
.about-focus-grid h3 { margin-top: 28px; }
.about-focus-grid article:nth-child(4n+1), .about-focus-grid article:nth-child(4n) { color: white; background: var(--primary-dark); }
.about-focus-grid article:nth-child(4n+1) h3, .about-focus-grid article:nth-child(4n) h3 { color: white; }
.about-experience-section, .about-ecosystem, .custom-software-section, .about-principles-section { color: rgba(255,255,255,.88); background: #101828; }
.about-experience-section h2, .about-experience-section h3, .about-ecosystem h2, .custom-software-section h2, .about-principles-section h2, .about-principles-section h3 { color: white; }
.experience-track { display: grid; grid-template-columns: 1fr 80px 1fr 80px 1fr; gap: 12px; align-items: center; }
.experience-track article { min-height: 210px; padding: 28px; border: 1px solid #344054; border-radius: 18px; background: #1d2939; }
.experience-track article > span { color: var(--accent); font-size: .76rem; font-weight: 800; letter-spacing: .12em; }
.experience-track h3 { margin: 28px 0 10px; }
.experience-track > i { height: 2px; background: linear-gradient(90deg, var(--primary), var(--accent)); }
.experience-capabilities { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 28px; }
.experience-capabilities span { padding: 11px 14px; border: 1px solid #344054; border-radius: 999px; background: #1d2939; font-size: .78rem; }
.about-vision { background: #edf8fc; }
.about-vision-lead { margin-top: 24px; color: var(--navy); font-size: 1.25rem; font-weight: 700; }
.vision-links { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 13px; margin-top: 38px; }
.vision-links span, .vision-links strong { padding: 16px 20px; border-radius: 13px; background: white; box-shadow: 0 6px 16px rgba(16,24,40,.07); }
.vision-links i { color: var(--accent); font-size: 1.4rem; font-style: normal; }
.vision-links strong { color: white; background: var(--primary); }
.about-ecosystem .btn { margin-top: 28px; }
.about-ecosystem-map { display: grid; grid-template-columns: repeat(2, 1fr); gap: 11px; }
.about-ecosystem-map span, .about-ecosystem-center { display: grid; place-items: center; min-height: 80px; padding: 17px; border: 1px solid #344054; border-radius: 14px; color: white; background: #1d2939; text-align: center; }
.about-ecosystem-center { grid-column: 1 / -1; min-height: 110px; background: var(--primary); font-size: 1.2rem; font-weight: 800; }
.about-config-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.about-config-grid span { padding: 17px; border-radius: 12px; background: white; box-shadow: 0 5px 14px rgba(16,24,40,.05); font-weight: 700; }
.about-config-grid span:nth-child(3n) { color: white; background: var(--primary); }
.about-image-card { overflow: hidden; border-radius: 27px; box-shadow: var(--shadow); }
.about-image-card img { display: block; width: 100%; min-height: 420px; object-fit: cover; }
.tech-stack { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 28px; }
.tech-stack span { padding: 11px 13px; border: 1px solid #344054; border-radius: 9px; color: white; background: #1d2939; font-size: .78rem; }
.about-principles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.about-principles article { padding: 29px; border: 1px solid #344054; border-radius: 18px; background: #1d2939; }
.about-principles article > span { color: var(--accent); font-size: .75rem; font-weight: 800; }
.about-principles h3 { margin: 25px 0 10px; }
.support-journey { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr; gap: 9px; align-items: center; }
.support-journey article { min-height: 190px; padding: 23px 18px; border: 1px solid var(--border); border-radius: 16px; text-align: center; }
.support-journey article > span { display: grid; place-items: center; width: 38px; height: 38px; margin: 0 auto 22px; border-radius: 50%; color: white; background: var(--primary); font-weight: 800; }
.support-journey h3 { margin-bottom: 9px; }
.support-journey > i { color: var(--accent); font-style: normal; }
.about-benefits { grid-template-columns: repeat(3, 1fr); }
.about-benefits article > span { width: auto; height: auto; justify-content: start; margin: 0 0 18px; border-radius: 0; background: transparent; font-size: .8rem; letter-spacing: .12em; }
.about-closing { margin-top: 20px; color: white; font-size: 1.2rem; font-weight: 800; }

@media (max-width: 1024px) {
  .about-hero-grid { grid-template-columns: 1fr 1fr; gap: 38px; }
  .about-principles { grid-template-columns: repeat(2, 1fr); }
  .support-journey { grid-template-columns: repeat(5, 1fr); }
  .support-journey > i { display: none; }
}

@media (max-width: 760px) {
  .about-hero { padding: 70px 0 90px; }
  .about-hero-grid { grid-template-columns: 1fr; }
  .about-hero-visual { margin-top: 15px; }
  .about-hero-visual img { min-height: 430px; }
  .about-years { right: 8px; }
  .about-focus-grid, .experience-track, .about-ecosystem-map, .about-config-grid, .about-principles, .support-journey, .about-benefits { grid-template-columns: 1fr; }
  .experience-track > i, .support-journey > i { display: none; }
  .about-ecosystem-center { grid-column: auto; }
}

/* Página Contacto */
.contact-hero { padding: 100px 0; color: rgba(255,255,255,.9); background: linear-gradient(120deg, #193047, #35536b); }
.contact-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 65px; align-items: center; min-height: 590px; }
.contact-hero h1 { color: white; }
.contact-hero h1 span { color: var(--accent); }
.contact-hero .hero-lead { margin-top: 28px; }
.contact-hero-panel { overflow: hidden; padding: 22px; border: 1px solid rgba(255,255,255,.14); border-radius: 26px; background: rgba(255,255,255,.08); }
.contact-hero-head { display: flex; align-items: center; gap: 14px; padding: 17px; border-radius: 16px; color: var(--navy); background: white; }
.contact-hero-head > span { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 14px; color: white; background: var(--primary); font-weight: 800; }
.contact-hero-head strong, .contact-hero-head small { display: block; }
.contact-hero-head small { color: var(--muted); }
.contact-hero-options { display: grid; gap: 11px; margin-top: 18px; }
.contact-hero-options article { display: grid; grid-template-columns: 40px 1fr; gap: 13px; padding: 20px; border: 1px solid #475467; border-radius: 15px; background: #1d2939; }
.contact-hero-options i { color: var(--accent); font-style: normal; font-weight: 800; }
.contact-hero-options strong, .contact-hero-options span { display: block; }
.contact-hero-options strong { color: white; }
.contact-hero-options span { margin-top: 4px; color: #98a2b3; font-size: .8rem; }
.contact-solutions { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.contact-solutions a { min-height: 150px; padding: 24px; border: 1px solid var(--border); border-radius: 17px; transition: transform .2s, box-shadow .2s; }
.contact-solutions a:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.contact-solutions span { color: var(--primary); font-size: .7rem; font-weight: 800; letter-spacing: .12em; }
.contact-solutions h3 { margin-top: 30px; }
.contact-form-section { color: rgba(255,255,255,.88); background: #101828; }
.contact-form-section h2 { color: white; }
.contact-form-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 60px; align-items: start; }
.contact-form-copy { position: sticky; top: 110px; }
.contact-direct-mini { display: grid; gap: 10px; margin-top: 30px; }
.contact-direct-mini a { padding: 17px; border: 1px solid #344054; border-radius: 13px; color: white; background: #1d2939; }
.contact-direct-mini small, .contact-direct-mini strong { display: block; }
.contact-direct-mini small { margin-bottom: 5px; color: #98a2b3; }
.form-privacy-note { margin-top: 25px; color: #98a2b3; font-size: .78rem; }
.gn3-contact-form { padding: 34px; border-radius: 24px; color: var(--navy); background: white; box-shadow: 0 25px 55px rgba(0,0,0,.25); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.gn3-contact-form label { color: #344054; font-size: .78rem; font-weight: 700; }
.gn3-contact-form input, .gn3-contact-form select, .gn3-contact-form textarea { width: 100%; margin-top: 7px; padding: 13px 14px; border: 1px solid #d0d5dd; border-radius: 10px; color: var(--navy); background: white; font: inherit; font-size: .88rem; outline: none; }
.gn3-contact-form input:focus, .gn3-contact-form select:focus, .gn3-contact-form textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(22,144,195,.12); }
.gn3-contact-form textarea { resize: vertical; }
.form-full { grid-column: 1 / -1; }
.privacy-check { display: flex; align-items: flex-start; gap: 10px; margin-top: 20px; }
.privacy-check input { width: auto; margin: 2px 0 0; }
.privacy-check a { color: var(--primary-dark); text-decoration: underline; }
.form-submit { width: 100%; justify-content: center; margin-top: 22px; border: 0; }
.hubspot-contact-card { min-width: 0; }
.hubspot-form-loading { margin: 0; color: #667085; text-align: center; }
.hubspot-contact-form, .hubspot-contact-form .hbspt-form, .hubspot-contact-form form { width: 100%; max-width: none !important; }
.hubspot-contact-form fieldset { max-width: none !important; margin: 0 !important; }
.hubspot-contact-form .hs-form-field { margin-bottom: 18px !important; }
.hubspot-contact-form fieldset.form-columns-2 { display: grid !important; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.hubspot-contact-form fieldset.form-columns-2 .hs-form-field, .hubspot-contact-form fieldset.form-columns-1 .hs-form-field { float: none !important; width: 100% !important; }
.hubspot-contact-form .input { margin-right: 0 !important; }
.hubspot-contact-form label { display: block; margin-bottom: 7px; color: #344054; font-size: .78rem; font-weight: 700; }
.hubspot-contact-form .hs-form-required { color: #d63638; }
.hubspot-contact-form input[type="text"], .hubspot-contact-form input[type="email"], .hubspot-contact-form input[type="tel"], .hubspot-contact-form input[type="number"], .hubspot-contact-form select, .hubspot-contact-form textarea { display: block; width: 100% !important; min-height: 48px; margin: 0 !important; padding: 13px 14px !important; border: 1px solid #d0d5dd !important; border-radius: 10px !important; color: var(--navy) !important; background: white !important; box-shadow: none !important; font: inherit !important; font-size: .88rem !important; outline: none !important; }
.hubspot-contact-form textarea { min-height: 130px; resize: vertical; }
.hubspot-contact-form input:focus, .hubspot-contact-form select:focus, .hubspot-contact-form textarea:focus { border-color: var(--primary) !important; box-shadow: 0 0 0 3px rgba(22,144,195,.12) !important; }
.hubspot-contact-form .inputs-list { margin: 0; padding: 0; list-style: none; }
.hubspot-contact-form .inputs-list label { display: flex; align-items: flex-start; gap: 10px; font-weight: 400; }
.hubspot-contact-form input[type="checkbox"], .hubspot-contact-form input[type="radio"] { flex: 0 0 auto; width: auto; margin-top: 4px; }
.hubspot-contact-form .hs-error-msg, .hubspot-contact-form .hs-error-msgs label { color: #b42318; font-size: .76rem; }
.hubspot-contact-form .hs-submit { margin-top: 6px; }
.hubspot-contact-form .hs-button { display: inline-flex; justify-content: center; width: 100% !important; min-height: 50px; padding: 14px 24px !important; border: 0 !important; border-radius: 999px !important; color: white !important; background: var(--accent) !important; box-shadow: none !important; font-weight: 800 !important; cursor: pointer; }
.hubspot-contact-form .hs-button:hover { background: #d64d1a !important; transform: translateY(-1px); }
.hubspot-contact-form .submitted-message { padding: 24px; border-radius: 14px; color: #246b35; background: #eaf7ed; text-align: center; }
.hubspot-contact-form iframe { display: block; width: 100% !important; min-height: 760px; border: 0; }
.demo-contact-section { background: #edf8fc; }
.demo-contact-section .btn { margin-top: 27px; }
.demo-session-card { padding: 34px; border-radius: 22px; background: white; box-shadow: var(--shadow); }
.demo-session-card > strong { color: var(--navy); font-size: 1.25rem; }
.direct-contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.direct-contact-grid > a, .direct-social-card { padding: 30px; border-radius: 19px; background: white; box-shadow: 0 7px 20px rgba(16,24,40,.07); }
.direct-contact-grid span, .direct-contact-grid small, .direct-contact-grid strong, .direct-contact-grid i { display: block; }
.direct-contact-grid span { color: var(--primary); font-size: .72rem; font-weight: 800; letter-spacing: .12em; }
.direct-contact-grid small { margin-top: 26px; color: var(--muted); }
.direct-contact-grid strong { margin-top: 5px; color: var(--navy); font-size: 1.25rem; }
.direct-contact-grid i { margin-top: 24px; color: var(--primary-dark); font-size: .8rem; font-style: normal; font-weight: 700; }
.direct-social-links { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }
.direct-social-links a { display: grid; place-items: center; width: 38px; height: 38px; padding: 0; border-radius: 50%; color: white; background: var(--primary); box-shadow: none; transition: transform .2s ease, background-color .2s ease; }
.direct-social-links a:hover { color: white; background: var(--primary-dark); transform: translateY(-2px); }
.direct-social-links a i { display: block; margin: 0; color: inherit; font-size: 1rem; line-height: 1; }
.client-support-section { color: rgba(255,255,255,.88); background: #101828; }
.client-support-section h2 { color: white; }
.client-support-section .btn { margin-top: 27px; }
.support-data-card { padding: 30px; border: 1px solid #344054; border-radius: 20px; background: #1d2939; }
.support-data-card > strong { color: white; font-size: 1.25rem; }
.support-data-card > p { margin-top: 8px; }
.support-data-card > div { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.support-data-card span { padding: 10px 12px; border-radius: 9px; color: white; background: #344054; font-size: .78rem; }

@media (max-width: 1024px) {
  .contact-hero-grid { grid-template-columns: 1fr 1fr; gap: 38px; }
  .contact-solutions { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .contact-hero { padding: 70px 0 90px; }
  .contact-hero-grid, .contact-form-layout { grid-template-columns: 1fr; }
  .contact-hero-panel { margin-top: 15px; }
  .contact-solutions, .form-grid, .direct-contact-grid { grid-template-columns: 1fr; }
  .contact-form-copy { position: static; }
  .gn3-contact-form { padding: 24px 18px; }
  .hubspot-contact-form fieldset.form-columns-2 { grid-template-columns: 1fr; }
  .form-full { grid-column: auto; }
}

.form-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

/* Centro de descargas */
.downloads-hero { position: relative; overflow: hidden; padding: 130px 0 90px; color: rgba(255,255,255,.86); background: radial-gradient(circle at 82% 25%, rgba(22,144,195,.28), transparent 28%), linear-gradient(135deg, #101828, #1d2939); }
.downloads-hero::after { content: ''; position: absolute; right: -120px; bottom: -220px; width: 480px; height: 480px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; }
.downloads-hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: center; }
.downloads-hero h1 { max-width: 760px; color: white; font-size: clamp(2.8rem, 5vw, 4.7rem); line-height: 1.04; letter-spacing: -.045em; }
.downloads-hero h1 span { color: #78d2f2; }
.downloads-hero .hero-lead { max-width: 700px; }
.downloads-hero .btn { margin-top: 28px; }
.downloads-hero-panel { position: relative; min-height: 340px; perspective: 900px; }
.downloads-sheet { position: absolute; inset: 25px 25px 25px 55px; display: flex; flex-direction: column; justify-content: flex-end; padding: 36px; border-radius: 24px; transform-origin: bottom center; box-shadow: 0 28px 65px rgba(0,0,0,.3); }
.sheet-back { background: #1690c3; transform: rotate(11deg) translate(28px,-7px); opacity: .55; }
.sheet-middle { background: #fc5b1f; transform: rotate(5deg) translate(14px,-2px); opacity: .82; }
.sheet-front { color: var(--navy); background: #fff; transform: rotate(-2deg); }
.sheet-front b { color: var(--primary); font-size: 5.2rem; line-height: .9; }
.sheet-front strong { font-size: 1.7rem; }
.sheet-front small { margin-top: 10px; color: var(--muted); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.downloads-library { background: #f6f8fb; }
.downloads-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 50px; align-items: end; text-align: left; }
.downloads-heading > p { padding-bottom: 18px; }
.download-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 28px; }
.download-card { min-width: 0; overflow: hidden; border: 1px solid #e4e7ec; border-radius: 24px; background: white; box-shadow: 0 10px 30px rgba(16,24,40,.06); transition: transform .25s ease, box-shadow .25s ease; }
.download-card:hover { transform: translateY(-5px); box-shadow: 0 20px 42px rgba(16,24,40,.12); }
.download-cover { display: block; overflow: hidden; aspect-ratio: 16 / 9; background: #e9eef3; }
.download-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.download-card:hover .download-cover img { transform: scale(1.025); }
.download-body { display: flex; flex-direction: column; min-height: 338px; padding: 28px; }
.download-category { align-self: flex-start; padding: 6px 10px; border-radius: 99px; color: var(--primary-dark); background: #e8f6fb; font-size: .7rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.download-body h3 { margin-top: 18px; color: var(--navy); font-size: 1.42rem; line-height: 1.22; }
.download-body > p { color: var(--muted); font-size: .9rem; }
.download-meta { display: flex; flex-wrap: wrap; gap: 8px 16px; margin-top: auto; padding-top: 22px; color: #667085; font-size: .74rem; font-weight: 700; }
.download-meta span + span::before { content: '•'; margin-right: 16px; color: #98a2b3; }
.download-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 18px; }
.download-actions a { display: flex; justify-content: center; align-items: center; gap: 8px; min-height: 46px; padding: 10px 14px; border: 1px solid #d0d5dd; border-radius: 999px; color: var(--navy); font-size: .82rem; font-weight: 800; }
.download-actions a:hover { border-color: var(--primary); color: var(--primary-dark); }
.download-actions .download-button { border-color: var(--primary); color: white; background: var(--primary); }
.download-actions .download-button:hover { color: white; background: var(--primary-dark); }
.downloads-cta { padding: 70px 0; color: rgba(255,255,255,.85); background: linear-gradient(135deg, var(--primary-dark), #101828); }
.downloads-cta .container { display: flex; justify-content: space-between; align-items: center; gap: 50px; }
.downloads-cta h2 { max-width: 760px; color: white; }
.downloads-cta p { max-width: 720px; }
.downloads-cta .btn { flex: 0 0 auto; }

@media (max-width: 860px) {
  .downloads-hero-grid, .downloads-heading { grid-template-columns: 1fr; }
  .downloads-hero-panel { max-width: 520px; width: 100%; }
  .downloads-heading { gap: 8px; }
  .download-grid { grid-template-columns: 1fr; }
  .downloads-cta .container { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 560px) {
  .downloads-hero { padding: 105px 0 65px; }
  .downloads-hero-panel { min-height: 270px; }
  .downloads-sheet { inset: 20px 12px 20px 30px; padding: 26px; }
  .sheet-front b { font-size: 4rem; }
  .download-body { min-height: 0; padding: 22px 18px; }
  .download-actions { grid-template-columns: 1fr; }
  .download-meta span + span::before { margin-right: 8px; }
}

/* Confirmación de contacto */
.thanks-section { display: grid; place-items: center; min-height: 760px; padding: 110px 0; background: linear-gradient(180deg, #edf8fc, white); }
.thanks-icon { display: grid; place-items: center; width: 86px; height: 86px; margin: 0 auto 30px; border-radius: 50%; color: white; background: #12b76a; box-shadow: 0 0 0 16px rgba(18,183,106,.12); font-size: 2.2rem; font-weight: 800; }
.thanks-section h1 { max-width: 750px; margin-inline: auto; }
.thanks-section .container > p:not(.eyebrow) { max-width: 700px; margin: 22px auto 0; font-size: 1.08rem; }
.thanks-section .button-row { justify-content: center; }
.thanks-contact a { color: var(--primary-dark); font-weight: 800; }

/* Especiales */
.imagen {width: 100%;}

