:root {
    --master-blue: #0877e8;
    --master-blue-dark: #075cb5;
    --master-navy: #0b2442;
    --master-text: #18314f;
    --master-muted: #65778c;
    --master-surface: #ffffff;
    --master-soft: #f5f9fd;
    --master-border: #dce8f3;
    --master-radius: 18px;
    --master-shadow: 0 20px 60px rgba(19, 58, 96, .10);
    --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--master-text);
    background: #fff;
    font-family: "Raleway", Arial, sans-serif;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.visually-hidden { position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important; }
.skip-link { position: fixed; left: 12px; top: -80px; z-index: 9999; background: #fff; padding: 10px 16px; border-radius: 8px; box-shadow: var(--master-shadow); }
.skip-link:focus { top: 12px; }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.92); backdrop-filter: blur(14px); border-bottom: 1px solid transparent; transition: .25s ease; }
.site-header.is-scrolled { border-color: var(--master-border); box-shadow: 0 8px 30px rgba(19,58,96,.06); }
.header-inner { min-height: 78px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 11px; min-width: max-content; }
.brand-mark { position: relative; display: inline-flex; width: 46px; height: 34px; }
.brand-mark span { position: absolute; width: 12px; height: 34px; border-radius: 8px 8px 3px 3px; background: linear-gradient(180deg, #1294ff, #086bd3); transform: skew(-34deg); }
.brand-mark span:first-child { left: 8px; }
.brand-mark span:last-child { right: 8px; }
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { font-size: 1.42rem; letter-spacing: -.035em; color: var(--master-navy); }
.brand-copy small { font-size: .68rem; color: var(--master-muted); margin-top: 5px; }
.site-nav { justify-self: center; }
.site-nav ul { list-style: none; display: flex; align-items: center; gap: 30px; margin: 0; padding: 0; }
.site-nav a { position: relative; font-size: .92rem; font-weight: 650; color: #40556e; padding: 28px 0 24px; }
.site-nav a::after { content: ""; position: absolute; left: 50%; right: 50%; bottom: 17px; height: 2px; background: var(--master-blue); transition: .2s ease; }
.site-nav a:hover, .site-nav .active > a { color: var(--master-blue); }
.site-nav a:hover::after, .site-nav .active > a::after { left: 0; right: 0; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 46px; padding: 0 20px; border-radius: 9px; font-weight: 750; font-size: .9rem; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-1px); }
.button-primary { color: #fff; background: linear-gradient(135deg, var(--master-blue), #0b83fa); box-shadow: 0 12px 24px rgba(8,119,232,.22); }
.menu-toggle { display:none; border:0; background:transparent; padding:10px; }
.menu-toggle span:not(.visually-hidden) { display:block; width:24px; height:2px; margin:5px 0; background:var(--master-navy); }

.section-shell { position: relative; overflow: hidden; background: radial-gradient(circle at 80% 20%, rgba(37,157,255,.16), transparent 28%), linear-gradient(180deg, #f7fbff, #fff); }
.hero { min-height: 630px; display:flex; align-items:center; }
.hero::before { content:""; position:absolute; width:360px; height:360px; border:1px solid rgba(8,119,232,.12); border-radius:50%; left:-190px; top:80px; }
.hero-grid { display:grid; grid-template-columns: 1.02fr .98fr; gap:64px; align-items:center; padding:80px 0; }
.hero-copy h1 { max-width: 680px; margin: 0 0 24px; color: var(--master-navy); font-size: clamp(2.7rem, 5vw, 4.9rem); letter-spacing: -.055em; line-height: .98; }
.hero-copy h1 strong, .hero-copy h1 em { color: var(--master-blue); font-style: normal; }
.hero-copy p { max-width: 620px; font-size: 1.12rem; color: var(--master-muted); }
.hero-copy .custom > p:last-child { margin-bottom:0; }
.hero-copy .button + .button { margin-left:10px; }
.hero-visual { min-height: 430px; display:flex; align-items:center; }
.hero-visual .custom { width:100%; }
.hero-visual img { border-radius: 22px; box-shadow: var(--master-shadow); }

.home-section { padding: 92px 0; }
.services-section, .projects-section { background: var(--master-soft); }
.home-section h2 { margin:0 0 20px; color:var(--master-navy); font-size:clamp(2rem,3.2vw,3rem); line-height:1.05; letter-spacing:-.04em; }
.home-section h3 { color:var(--master-navy); }
.home-section p { color:var(--master-muted); }
.custom .eyebrow, .eyebrow { display:block; margin-bottom:12px; text-transform:uppercase; color:var(--master-blue); font-size:.76rem; font-weight:800; letter-spacing:.14em; }

.services-grid, .projects-grid, .benefits-grid { display:grid; gap:18px; }
.services-grid { grid-template-columns: repeat(3, 1fr); }
.service-card, .project-card, .benefit-card { background:#fff; border:1px solid var(--master-border); border-radius:var(--master-radius); padding:24px; box-shadow:0 10px 35px rgba(19,58,96,.04); }
.service-card { min-height:170px; transition:.2s ease; }
.service-card:hover, .project-card:hover { transform:translateY(-4px); box-shadow:var(--master-shadow); border-color:#bedbf5; }
.service-card h3, .project-card h3 { margin:12px 0 7px; font-size:1.05rem; }
.service-card p, .project-card p { margin:0; font-size:.92rem; }
.icon-badge { display:grid; place-items:center; width:48px; height:48px; border-radius:50%; background:#eaf4ff; color:var(--master-blue); font-weight:850; }

.about-section .custom { display:grid; grid-template-columns: .9fr 1.1fr; gap:70px; align-items:center; }
.about-section .custom img { border-radius:22px; box-shadow:var(--master-shadow); }
.projects-grid { grid-template-columns: repeat(3, 1fr); }
.project-card { padding:0; overflow:hidden; }
.project-card img { width:100%; aspect-ratio: 16/9; object-fit:cover; display:block; }
.project-card .card-body { padding:20px 22px 24px; }
.benefits-grid { grid-template-columns: repeat(4, 1fr); }
.benefit-card { border:0; box-shadow:none; padding:18px 12px; }

.component-section { padding: 42px 0; }
.master-site.home .component-section:has(.blog-featured:empty) { display:none; }

.cta-section { padding: 54px 0; color:#fff; background: radial-gradient(circle at 80% 20%, rgba(48,165,255,.35), transparent 35%), linear-gradient(110deg,#084d91,#086ecb); }
.cta-section .custom { display:flex; align-items:center; justify-content:space-between; gap:30px; }
.cta-section h2, .cta-section h3 { color:#fff; margin:0 0 8px; }
.cta-section p { margin:0; color:rgba(255,255,255,.82); }
.cta-section .button { background:#1fbb5f; color:#fff; box-shadow:0 12px 30px rgba(0,0,0,.18); }

.site-footer { padding:60px 0 20px; background:#fff; border-top:1px solid var(--master-border); }
.footer-grid { display:grid; grid-template-columns:1.35fr 1fr 1fr 1fr; gap:50px; }
.site-footer h3 { font-size:.92rem; margin-top:4px; color:var(--master-navy); }
.site-footer ul { list-style:none; padding:0; margin:0; }
.site-footer li { margin:8px 0; color:var(--master-muted); font-size:.9rem; }
.footer-brand p { max-width:310px; color:var(--master-muted); font-size:.9rem; }
.footer-bottom { display:flex; justify-content:space-between; gap:20px; margin-top:45px; padding-top:18px; border-top:1px solid var(--master-border); color:#7e8d9f; }
.whatsapp-float { position:fixed; z-index:90; right:22px; bottom:22px; display:grid; place-items:center; width:58px; height:58px; border-radius:50%; color:#fff; background:#20bd63; font-weight:900; box-shadow:0 12px 28px rgba(23,157,79,.3); }

.error-page { min-height:100vh; display:grid; place-items:center; padding:30px; background:var(--master-soft); }
.error-card { max-width:620px; padding:50px; border-radius:24px; background:#fff; box-shadow:var(--master-shadow); text-align:center; }
.error-card h1 { font-size:clamp(2rem,6vw,4rem); letter-spacing:-.05em; margin:8px 0 12px; }

@media (max-width: 960px) {
    .header-inner { grid-template-columns:auto auto; justify-content:space-between; }
    .menu-toggle { display:block; }
    .site-nav { display:none; position:absolute; left:20px; right:20px; top:70px; background:#fff; padding:14px 20px; border:1px solid var(--master-border); border-radius:14px; box-shadow:var(--master-shadow); }
    .site-nav.is-open { display:block; }
    .site-nav ul { flex-direction:column; align-items:stretch; gap:0; }
    .site-nav a { display:block; padding:12px 4px; }
    .site-nav a::after { display:none; }
    .header-cta { display:none; }
    .hero-grid, .about-section .custom { grid-template-columns:1fr; }
    .hero { min-height:auto; }
    .services-grid, .projects-grid { grid-template-columns:repeat(2,1fr); }
    .benefits-grid { grid-template-columns:repeat(2,1fr); }
    .footer-grid { grid-template-columns:repeat(2,1fr); }
}

@media (max-width: 620px) {
    .container { width:min(calc(100% - 28px), var(--container)); }
    .hero-grid { padding:58px 0; gap:38px; }
    .hero-copy h1 { font-size:2.75rem; }
    .home-section { padding:68px 0; }
    .services-grid, .projects-grid, .benefits-grid, .footer-grid { grid-template-columns:1fr; }
    .cta-section .custom { display:grid; }
    .footer-bottom { flex-direction:column; }
}

/* v0.2.0 - Hero editable */
.hero-copy .eyebrow { margin-bottom: 18px; }
.hero-lead { margin: 0; max-width: 610px; font-size: 1.08rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button-secondary { border: 1px solid #a9cdef; color: var(--master-blue); background: rgba(255,255,255,.78); }
.button-secondary:hover { background:#fff; box-shadow:0 10px 28px rgba(19,58,96,.08); }
.hero-points { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:16px; max-width:680px; margin-top:38px; }
.hero-points span { display:flex; align-items:center; gap:9px; color:#536a82; font-size:.82rem; line-height:1.25; }
.hero-points i { flex:0 0 26px; height:26px; display:grid; place-items:center; border:2px solid #2d92ee; border-radius:50%; color:#1683e8; font-style:normal; font-size:.75rem; font-weight:900; background:#fff; }
.hero-extra { margin-top:28px; }

.hero-showcase { position:relative; width:100%; min-height:470px; }
.showcase-glow { position:absolute; inset:8% 4% 12% 0; border-radius:50%; background:radial-gradient(circle,rgba(30,145,243,.22),rgba(30,145,243,0) 68%); filter:blur(8px); }
.dashboard-window { position:absolute; left:8%; top:13%; width:75%; aspect-ratio:1.48/1; display:grid; grid-template-columns:72px 1fr; overflow:hidden; border:8px solid #15324f; border-radius:20px 20px 12px 12px; background:#f8fbfe; box-shadow:0 30px 65px rgba(10,45,80,.25); transform:perspective(900px) rotateY(-3deg) rotateX(1deg); }
.dash-sidebar { padding:17px 14px; background:#0f416e; }
.mini-brand { display:flex; align-items:center; gap:7px; color:#fff; font-size:.7rem; margin-bottom:30px; }
.mini-brand b { display:grid; place-items:center; width:24px; height:24px; border-radius:7px; background:#1688ee; }
.dash-sidebar > i { display:block; width:100%; height:7px; margin:14px 0; border-radius:10px; background:rgba(255,255,255,.16); }
.dash-sidebar > i.active { background:#2e9dfc; }
.dash-main { min-width:0; padding:24px; }
.dash-top span { display:block; color:#15324f; font-size:1.15rem; font-weight:850; }
.dash-top small { display:block; margin-top:2px; color:#8191a2; font-size:.56rem; }
.metric-row { display:grid; grid-template-columns:repeat(3,1fr); gap:9px; margin-top:20px; }
.metric-row b { padding:11px; border:1px solid #e5edf5; border-radius:9px; background:#fff; color:#1c3e5d; font-size:.82rem; box-shadow:0 7px 16px rgba(21,61,94,.04); }
.metric-row small { display:block; margin-top:2px; color:#8695a5; font-size:.48rem; font-weight:600; }
.chart-card { position:relative; height:105px; margin-top:12px; overflow:hidden; border:1px solid #e5edf5; border-radius:10px; background:linear-gradient(180deg,#fff,#f7fbff); color:#1688ee; }
.chart-card > span { position:absolute; left:14px; right:14px; height:1px; background:#edf3f8; }
.chart-card > span:nth-child(1){top:22%}.chart-card > span:nth-child(2){top:44%}.chart-card > span:nth-child(3){top:66%}.chart-card > span:nth-child(4){top:88%}
.chart-card svg { position:absolute; left:12px; right:12px; bottom:12px; width:calc(100% - 24px); height:68%; }
.dash-list { display:grid; gap:7px; margin-top:11px; }
.dash-list span { display:flex; align-items:center; gap:7px; color:#546b82; font-size:.51rem; }
.dash-list i { width:7px; height:7px; border-radius:50%; background:#14b86b; }
.dash-list b { margin-left:auto; color:#3c8c66; font-size:.48rem; }
.phone-card { position:absolute; left:0; bottom:6%; width:115px; height:205px; padding:22px 13px; border:7px solid #12304c; border-radius:22px; color:#fff; background:linear-gradient(165deg,#0b67ac,#0d3159); box-shadow:0 20px 42px rgba(10,45,80,.28); transform:rotate(-2deg); }
.phone-card strong,.phone-card span{display:block}.phone-card strong{font-size:.72rem}.phone-card span{color:#78c6ff;font-size:.6rem}.phone-card div{display:flex;align-items:end;gap:5px;height:90px;margin-top:18px}.phone-card i{flex:1;border-radius:3px 3px 0 0;background:#30a7ff}.phone-card i:nth-child(1){height:30%}.phone-card i:nth-child(2){height:57%}.phone-card i:nth-child(3){height:44%}.phone-card i:nth-child(4){height:78%}
.float-card { position:absolute; right:0; width:180px; display:grid; grid-template-columns:38px 1fr; column-gap:10px; align-items:center; padding:13px; border:1px solid rgba(80,153,216,.18); border-radius:13px; background:rgba(255,255,255,.96); box-shadow:0 16px 35px rgba(16,58,94,.13); }
.float-card > span { grid-row:1/3; display:grid; place-items:center; width:38px; height:38px; border-radius:50%; color:#137fdc; background:#eaf5ff; font-weight:900; }
.float-card b { color:#183754; font-size:.73rem; }.float-card small{color:#798a9b;font-size:.56rem;line-height:1.2}
.float-web{top:5%}.float-system{top:36%;right:-3%}.float-support{top:67%;right:2%}

@media (max-width:960px){
    .hero-points{grid-template-columns:repeat(3,1fr)}
    .hero-showcase{max-width:650px;margin:0 auto;min-height:450px}
}
@media (max-width:620px){
    .hero-copy h1{font-size:2.55rem;line-height:1.02}
    .hero-points{grid-template-columns:1fr;gap:10px;margin-top:28px}
    .hero-showcase{min-height:360px;transform:scale(.92);transform-origin:top center;margin-bottom:-25px}
    .dashboard-window{left:8%;width:79%;grid-template-columns:54px 1fr;border-width:6px}
    .dash-main{padding:15px}.dash-sidebar{padding:12px 9px}.metric-row{gap:5px}.metric-row b{padding:7px;font-size:.65rem}
    .phone-card{width:88px;height:158px;padding:17px 9px;border-width:5px}
    .float-card{width:145px;padding:9px;grid-template-columns:30px 1fr}.float-card>span{width:30px;height:30px}.float-card b{font-size:.62rem}.float-card small{font-size:.5rem}
}

/* v0.3.0 - header + services */
.header-inner { min-height: 70px; }
.site-nav a { padding: 24px 0 20px; font-size: .86rem; }
.site-nav a::after { bottom: 14px; }
.hero { min-height: 570px; }
.hero-grid { padding: 60px 0 64px; gap: 54px; }
.hero-copy h1 { max-width: 630px; font-size: clamp(2.7rem, 4.45vw, 4.45rem); }
.hero-showcase { min-height: 440px; }

.section-heading { display:flex; align-items:flex-end; justify-content:space-between; gap:30px; margin-bottom:32px; }
.section-heading h2 { margin-bottom:0; }
.section-link { display:inline-flex; align-items:center; gap:10px; color:var(--master-blue); font-size:.86rem; font-weight:800; white-space:nowrap; }
.section-link:hover { gap:14px; }
.services-section { padding:70px 0 78px; }
.services-grid { gap:14px; }
.service-card { min-height:0; display:grid; grid-template-columns:52px 1fr 20px; align-items:center; gap:16px; padding:22px 20px; }
.service-card h3 { margin:0 0 4px; font-size:1rem; }
.service-card p { font-size:.82rem; line-height:1.45; }
.service-icon { display:grid; place-items:center; width:50px; height:50px; border-radius:50%; background:#eaf4ff; color:var(--master-blue); }
.service-icon svg { width:25px; height:25px; fill:none; stroke:currentColor; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.card-arrow { color:var(--master-blue); font-size:1.12rem; font-weight:900; transition:transform .2s ease; }
.service-card:hover .card-arrow { transform:translateX(3px); }

@media (max-width:960px){
  .header-inner { min-height:66px; }
  .section-heading { align-items:flex-start; flex-direction:column; gap:12px; }
  .services-section { padding:62px 0; }
}
@media (max-width:620px){
  .hero-grid { padding:48px 0 52px; }
  .service-card { grid-template-columns:48px 1fr 18px; padding:18px 16px; }
}


/* v0.4.0 - Sobre nosotros */
.about-section { padding: 82px 0; background:#fff; }
.about-grid { display:grid; grid-template-columns:minmax(0,.9fr) minmax(520px,1.1fr); gap:70px; align-items:center; }
.about-copy { max-width:560px; }
.about-copy h2 { max-width:520px; margin:12px 0 20px; font-size:clamp(2rem,3.15vw,3.25rem); line-height:1.02; letter-spacing:-.045em; color:var(--master-navy); }
.about-copy p { margin:0 0 28px; color:var(--master-muted); font-size:1rem; line-height:1.72; }
.about-visual { min-width:0; }
.about-scene { position:relative; min-height:370px; overflow:hidden; border-radius:24px; background:linear-gradient(135deg,#eaf5ff 0%,#f8fbfe 55%,#edf6fc 100%); box-shadow:0 24px 55px rgba(16,58,94,.12); }
.about-backdrop { position:absolute; inset:0; background:radial-gradient(circle at 75% 20%,rgba(22,136,238,.15),transparent 28%),linear-gradient(90deg,transparent 0 68%,rgba(255,255,255,.55) 68% 100%); }
.about-screen { position:absolute; left:7%; top:10%; width:46%; height:64%; border:7px solid #173a5b; border-radius:14px; background:#f8fbfe; box-shadow:0 18px 38px rgba(11,48,79,.18); transform:rotate(-1deg); }
.about-screen-bar { height:28px; display:flex; align-items:center; gap:6px; padding:0 10px; border-bottom:1px solid #dde8f1; }
.about-screen-bar span { width:7px; height:7px; border-radius:50%; background:#9ab4ca; }
.about-screen-content { padding:25px 22px; }
.about-kicker { color:#6f8192; font-size:.76rem; font-weight:750; }
.about-bigline { max-width:160px; margin-top:4px; color:#173a5b; font-size:1.45rem; font-weight:900; line-height:1.04; letter-spacing:-.03em; }
.about-bars { display:flex; align-items:end; gap:8px; height:78px; margin-top:24px; }
.about-bars i { width:20px; border-radius:5px 5px 0 0; background:linear-gradient(180deg,#38a7ff,#1585e9); }
.about-bars i:nth-child(1){height:36%}.about-bars i:nth-child(2){height:62%}.about-bars i:nth-child(3){height:50%}.about-bars i:nth-child(4){height:82%}
.about-people { position:absolute; left:35%; right:17%; bottom:0; height:68%; }
.person { position:absolute; bottom:30px; width:72px; height:145px; border-radius:40px 40px 18px 18px; background:linear-gradient(180deg,#e6eef5 0 32%,#294e70 32% 100%); box-shadow:0 12px 20px rgba(12,50,81,.08); }
.person:before { content:""; position:absolute; left:50%; top:-24px; width:48px; height:48px; transform:translateX(-50%); border-radius:50%; background:#e0b698; box-shadow:inset 0 14px 0 #263b4d; }
.person.p1 { left:3%; transform:rotate(4deg); }
.person.p2 { left:27%; height:162px; background:linear-gradient(180deg,#eef2f5 0 32%,#315f84 32% 100%); }
.person.p2:before { background:#d8a884; box-shadow:inset 0 15px 0 #3d2925; }
.person.p3 { left:53%; height:155px; background:linear-gradient(180deg,#f3f3f3 0 32%,#1f4668 32% 100%); }
.person.p3:before { background:#ddb08d; box-shadow:inset 0 15px 0 #2e241f; }
.person.p4 { left:76%; height:140px; background:linear-gradient(180deg,#fbfbfb 0 32%,#567995 32% 100%); }
.person.p4:before { background:#e7bd9e; box-shadow:inset 0 15px 0 #8a664d; }
.laptop { position:absolute; left:24%; bottom:13px; width:175px; height:80px; border-radius:8px 8px 2px 2px; border:6px solid #c6d3df; background:linear-gradient(135deg,#f9fbfd,#dfeaf2); box-shadow:0 10px 20px rgba(15,47,73,.18); z-index:4; }
.laptop:after { content:""; position:absolute; left:-18px; right:-18px; bottom:-12px; height:10px; border-radius:2px 2px 10px 10px; background:#9bb0c0; }
.about-values { position:absolute; top:18%; right:3%; display:grid; gap:10px; padding:16px 18px; border:1px solid rgba(65,136,198,.16); border-radius:14px; background:rgba(255,255,255,.94); box-shadow:0 14px 30px rgba(21,61,94,.12); }
.about-values span { display:flex; align-items:center; gap:10px; color:#3d5870; font-size:.72rem; font-weight:750; }
.about-values i { display:grid; place-items:center; width:20px; color:#1688ee; font-style:normal; }

@media (max-width: 960px){
  .about-grid { grid-template-columns:1fr; gap:40px; }
  .about-copy { max-width:700px; }
  .about-scene { min-height:390px; }
}
@media (max-width:620px){
  .about-section { padding:64px 0; }
  .about-scene { min-height:315px; border-radius:18px; }
  .about-screen { left:4%; top:8%; width:50%; height:58%; border-width:5px; }
  .about-screen-content { padding:16px 13px; }
  .about-bigline { font-size:1.08rem; }
  .about-bars { height:56px; margin-top:14px; }
  .about-people { left:30%; right:10%; height:61%; transform:scale(.82); transform-origin:bottom center; }
  .about-values { top:auto; right:4%; bottom:6%; gap:6px; padding:10px 12px; }
  .about-values span { font-size:.62rem; }
}


/* v0.5.0 - Proyectos y soluciones */
.projects-section { padding:82px 0 88px; background:#f7fbff; border-top:1px solid #edf4fa; border-bottom:1px solid #edf4fa; }
.projects-heading { margin-bottom:28px; }
.projects-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:22px; }
.project-card { display:block; overflow:hidden; border:1px solid #e3edf5; border-radius:18px; background:#fff; box-shadow:0 16px 36px rgba(20,64,100,.07); text-decoration:none; color:inherit; transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.project-card:hover { transform:translateY(-5px); box-shadow:0 24px 50px rgba(20,64,100,.12); border-color:#cfe3f5; }
.project-thumb { position:relative; display:block; height:210px; overflow:hidden; background:#eaf3fb; }
.project-body { position:relative; display:block; padding:20px 50px 22px 20px; min-height:168px; }
.project-category { display:block; margin-bottom:4px; color:#1688ee; font-size:.76rem; font-weight:800; }
.project-title { display:block; color:#163654; font-size:1.16rem; font-weight:900; letter-spacing:-.02em; }
.project-text { display:block; margin-top:8px; color:#6b7f91; font-size:.9rem; line-height:1.5; }
.project-arrow { position:absolute; right:20px; bottom:22px; color:#1688ee; font-size:1.2rem; font-weight:900; transition:transform .2s ease; }
.project-card:hover .project-arrow { transform:translateX(4px); }

/* Miniatura web */
.project-thumb-web { background:linear-gradient(145deg,#eef4f9,#dceaf4); }
.project-desk { position:absolute; left:0; right:0; bottom:0; height:38px; background:#d9e4ec; }
.project-monitor { position:absolute; left:20%; top:12%; width:58%; height:64%; border:7px solid #233f57; border-radius:10px; background:#fff; box-shadow:0 18px 30px rgba(17,57,91,.18); }
.project-monitor:after { content:""; position:absolute; left:42%; bottom:-30px; width:16%; height:30px; background:#879ba9; }
.project-monitor i { position:absolute; left:6%; top:10%; width:88%; height:16%; border-radius:5px; background:linear-gradient(90deg,#1688ee 0 35%,#e6f1fa 35%); }
.project-monitor b { position:absolute; left:6%; top:34%; width:53%; height:46%; border-radius:6px; background:linear-gradient(135deg,#dceefc,#f7fbfe); }
.project-monitor em { position:absolute; right:6%; top:34%; width:29%; height:46%; border-radius:6px; background:repeating-linear-gradient(#ecf4fa 0 10px,#fff 10px 18px); }
.project-pot { position:absolute; right:8%; bottom:32px; width:42px; height:48px; border-radius:4px 4px 12px 12px; background:#7e9a7d; box-shadow:inset 0 10px 0 #4e7654; }
.project-pot:before,.project-pot:after { content:""; position:absolute; width:28px; height:12px; border-radius:50%; background:#6b9d68; top:-10px; }
.project-pot:before { left:-8px; transform:rotate(-25deg); } .project-pot:after { right:-8px; transform:rotate(25deg); }

/* Miniatura portal */
.project-thumb-portal { background:#dcecf8; }
.portal-sky { position:absolute; inset:0 0 44%; background:linear-gradient(#bfe0f6,#eef7fd); }
.portal-land { position:absolute; inset:56% 0 0; background:linear-gradient(#77aa62,#4f7f48); }
.portal-building { position:absolute; left:26%; bottom:20px; width:48%; height:72px; background:#f3f3f1; border-top:12px solid #d7d5cf; box-shadow:0 10px 20px rgba(32,70,95,.16); }
.portal-building:before { content:""; position:absolute; left:8%; right:8%; top:18px; bottom:10px; background:repeating-linear-gradient(90deg,#91b9d1 0 10px,#eff5f7 10px 22px); }
.portal-browser { position:absolute; left:10%; top:11%; width:80%; height:68%; border:6px solid #1f3f59; border-radius:10px; background:rgba(255,255,255,.93); box-shadow:0 16px 30px rgba(21,58,87,.18); overflow:hidden; }
.portal-browser i { position:absolute; left:0; top:0; width:100%; height:21%; background:#1688ee; }
.portal-browser b { position:absolute; left:7%; top:31%; width:58%; height:12%; background:#d6eafa; border-radius:3px; }
.portal-browser em { position:absolute; left:7%; top:50%; width:86%; height:36%; background:linear-gradient(135deg,rgba(132,190,222,.45),rgba(96,146,86,.35)); border-radius:6px; }

/* Miniatura sistema */
.project-thumb-system { background:linear-gradient(145deg,#10283d,#183f5f); }
.system-sidebar { position:absolute; left:0; top:0; bottom:0; width:21%; background:#0c2235; }
.system-sidebar:after { content:""; position:absolute; left:18%; right:18%; top:18%; height:7px; background:#268ee6; box-shadow:0 28px 0 #36556d,0 56px 0 #36556d,0 84px 0 #36556d; border-radius:5px; }
.system-card { position:absolute; top:17%; width:19%; height:25%; border-radius:7px; background:#214b6b; border:1px solid rgba(104,188,246,.2); }
.system-card.s1{left:27%}.system-card.s2{left:49%}.system-card.s3{left:71%}
.system-card:after { content:""; position:absolute; left:13%; right:13%; bottom:18%; height:8px; background:#3b98dd; border-radius:5px; }
.system-table { position:absolute; left:27%; right:7%; bottom:14%; height:32%; border-radius:7px; background:repeating-linear-gradient(#173b57 0 16px,#214864 16px 17px); border:1px solid rgba(113,188,242,.16); }

@media (max-width:960px){ .projects-grid{grid-template-columns:1fr 1fr}.project-card:last-child{grid-column:1/-1}.project-thumb{height:200px} }
@media (max-width:620px){ .projects-section{padding:64px 0 68px}.projects-grid{grid-template-columns:1fr}.project-card:last-child{grid-column:auto}.project-thumb{height:190px}.project-body{min-height:0} }

/* v0.6.0 - Ventajas + CTA final */
.benefits-section { padding:68px 0 64px; background:#fff; }
.benefits-heading { margin-bottom:24px; }
.benefits-heading h2 { margin:0; font-size:clamp(1.9rem,2.8vw,2.7rem); }
.master-benefits { grid-template-columns:repeat(4,minmax(0,1fr)); gap:0; }
.master-benefit { display:grid; grid-template-columns:54px 1fr; gap:14px; align-items:start; padding:18px 22px; border-radius:0; border-right:1px solid #edf3f8; background:transparent; }
.master-benefit:first-child { padding-left:0; }
.master-benefit:last-child { padding-right:0; border-right:0; }
.benefit-icon { display:grid; place-items:center; width:48px; height:48px; border-radius:50%; background:#eaf4ff; color:#1187ee; font-size:1.25rem; font-weight:900; }
.master-benefit h3 { margin:1px 0 5px; font-size:.93rem; line-height:1.2; }
.master-benefit p { margin:0; font-size:.79rem; line-height:1.48; }

.cta-section { position:relative; overflow:hidden; padding:42px 0; background:linear-gradient(110deg,#07579f 0%,#0877cf 55%,#0a4f91 100%); }
.cta-section:after { content:""; position:absolute; width:460px; height:260px; right:-70px; top:-90px; transform:rotate(-9deg); background:linear-gradient(135deg,transparent 0 18%,rgba(255,255,255,.06) 18% 20%,transparent 20% 33%,rgba(255,255,255,.06) 33% 35%,transparent 35%); }
.home-cta-grid { position:relative; z-index:1; display:grid; grid-template-columns:1fr auto; gap:42px; align-items:center; }
.home-cta-copy h2 { margin:0 0 5px; color:#fff; font-size:clamp(1.8rem,3vw,2.7rem); letter-spacing:-.04em; }
.home-cta-copy p { margin:0; color:rgba(255,255,255,.84); }
.home-cta-actions { display:flex; align-items:center; gap:24px; }
.home-whatsapp-button { display:inline-flex; align-items:center; gap:10px; min-height:48px; padding:0 21px; border-radius:9px; background:#22bd62; color:#fff; font-weight:850; box-shadow:0 12px 26px rgba(0,0,0,.18); white-space:nowrap; }
.home-whatsapp-button span { display:grid; place-items:center; width:22px; height:22px; border:2px solid currentColor; border-radius:50%; font-size:.45rem; }
.home-whatsapp-button b { font-size:1.05rem; }
.cta-trust { display:flex; gap:14px; color:rgba(255,255,255,.8); font-size:.66rem; font-weight:700; }
.cta-trust span { white-space:nowrap; }

@media (max-width:960px){
  .master-benefits{grid-template-columns:repeat(2,1fr);gap:10px}
  .master-benefit,.master-benefit:first-child,.master-benefit:last-child{padding:16px;border:1px solid #edf3f8;border-radius:14px}
  .home-cta-grid{grid-template-columns:1fr;gap:24px}
  .home-cta-actions{justify-content:space-between;flex-wrap:wrap}
}
@media (max-width:620px){
  .benefits-section{padding:58px 0}
  .master-benefits{grid-template-columns:1fr}
  .home-cta-actions{align-items:flex-start;flex-direction:column}
  .cta-trust{flex-wrap:wrap}
}

/* v0.6.1 - portada continua + footer completo */
.home .benefits-section { border-bottom:0; }
.home .cta-section { margin-top:0; }
.site-footer { padding:58px 0 0; background:#fff; border-top:1px solid #e9f1f7; color:#5d7489; }
.footer-grid { display:grid; grid-template-columns:1.45fr .8fr .95fr 1.15fr; gap:52px; align-items:start; padding-bottom:42px; }
.footer-brand p { max-width:310px; margin:20px 0 0; font-size:.9rem; line-height:1.65; color:#6b8093; }
.brand-footer { display:inline-flex; }
.footer-column h3 { margin:2px 0 16px; color:#183653; font-size:.93rem; font-weight:850; }
.footer-links,.footer-contact { display:grid; gap:9px; margin:0; padding:0; list-style:none; }
.footer-links a,.footer-contact a { color:#557086; text-decoration:none; transition:color .18s ease; }
.footer-links a:hover,.footer-contact a:hover { color:#1688ee; }
.footer-contact li { display:flex; gap:9px; align-items:flex-start; font-size:.87rem; }
.footer-contact li > span:first-child { width:18px; color:#1688ee; font-weight:800; text-align:center; }
.footer-note { margin:0 0 14px; font-size:.87rem; line-height:1.6; color:#6b8093; }
.footer-cta { display:inline-flex; gap:8px; align-items:center; color:#1688ee; font-size:.86rem; font-weight:800; text-decoration:none; }
.footer-bottom { display:flex; justify-content:space-between; gap:20px; padding:18px 0 22px; border-top:1px solid #edf3f7; color:#8798a7; }
.footer-bottom small { font-size:.72rem; }
@media (max-width: 960px){
  .footer-grid { grid-template-columns:1fr 1fr; gap:34px 44px; }
}
@media (max-width: 620px){
  .site-footer { padding-top:44px; }
  .footer-grid { grid-template-columns:1fr; gap:28px; padding-bottom:34px; }
  .footer-bottom { flex-direction:column; gap:7px; }
}


/* v0.6.2 - copyright centrado */
.footer-bottom {
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
}
@media (max-width:620px){
  .footer-bottom { flex-direction:row; }
}

/* v0.7.0 - Pulido Header + Hero + copyright */
.site-header {
  background: rgba(255,255,255,.965);
  border-bottom: 1px solid rgba(220,232,243,.72);
}
.site-header.is-scrolled {
  background: rgba(255,255,255,.985);
  box-shadow: 0 10px 35px rgba(16,54,88,.075);
}
.header-inner {
  min-height: 72px;
  gap: 38px;
}
.brand-mark { width: 43px; height: 32px; }
.brand-mark span { height: 32px; width: 11px; }
.brand-copy strong { font-size: 1.32rem; }
.brand-copy small { margin-top: 4px; font-size: .65rem; letter-spacing: .015em; }
.site-nav ul { gap: 34px; }
.site-nav a {
  padding: 25px 0 21px;
  font-size: .855rem;
  font-weight: 680;
}
.site-nav a::after { bottom: 15px; height: 2px; border-radius: 3px; }
.header-cta {
  min-height: 43px;
  padding-inline: 18px;
  border-radius: 8px;
  font-size: .84rem;
  box-shadow: 0 9px 22px rgba(8,119,232,.18);
}

.hero {
  min-height: 550px;
  background:
    radial-gradient(circle at 78% 19%, rgba(37,157,255,.14), transparent 27%),
    radial-gradient(circle at 12% 62%, rgba(8,119,232,.055), transparent 22%),
    linear-gradient(180deg,#f8fbff 0%,#fff 100%);
}
.hero::before { opacity:.78; }
.hero-grid {
  grid-template-columns: 1.04fr .96fr;
  gap: 62px;
  padding: 54px 0 60px;
}
.hero-copy { padding-top: 2px; }
.hero-copy .eyebrow {
  margin-bottom: 15px;
  font-size: .71rem;
  letter-spacing: .17em;
}
.hero-copy h1 {
  max-width: 610px;
  margin-bottom: 21px;
  font-size: clamp(2.75rem,4.15vw,4.15rem);
  line-height: 1.005;
  letter-spacing: -.052em;
}
.hero-lead {
  max-width: 590px;
  font-size: 1.04rem;
  line-height: 1.64;
}
.hero-actions { margin-top: 27px; gap: 11px; }
.hero-actions .button { min-height: 45px; padding-inline: 19px; }
.hero-points {
  max-width: 630px;
  margin-top: 31px;
  gap: 12px;
}
.hero-points span { font-size: .77rem; }
.hero-points i { flex-basis: 24px; height: 24px; }
.hero-visual { min-height: 408px; }
.hero-showcase { min-height: 414px; }
.dashboard-window {
  left: 7%;
  top: 12%;
  width: 76%;
  border-width: 7px;
  box-shadow: 0 27px 58px rgba(10,45,80,.22);
}
.phone-card {
  bottom: 3%;
  transform: rotate(-1.5deg) scale(.94);
  transform-origin: bottom left;
}
.float-card {
  width: 171px;
  padding: 11px 12px;
  box-shadow: 0 13px 30px rgba(16,58,94,.11);
}
.float-web { top: 4%; }
.float-system { top: 35%; right: -1%; }
.float-support { top: 66%; right: 3%; }

/* centrado robusto: no depende de flex ni del ancho del texto */
.footer-bottom {
  display:block !important;
  width:min(calc(100% - 40px), var(--container));
  margin-inline:auto;
  text-align:center !important;
}
.footer-bottom small {
  display:block;
  width:100%;
  text-align:center;
}

@media (max-width:1080px){
  .header-inner { gap: 24px; }
  .site-nav ul { gap: 23px; }
  .hero-grid { gap: 38px; }
  .hero-copy h1 { font-size: clamp(2.65rem,4.4vw,3.8rem); }
}
@media (max-width:960px){
  .header-inner { min-height: 66px; }
  .hero { min-height: auto; }
  .hero-grid { padding: 55px 0 45px; }
  .hero-copy { max-width: 720px; }
  .hero-copy h1 { max-width: 680px; }
  .hero-lead { max-width: 640px; }
  .hero-points { max-width: 680px; }
  .hero-showcase { margin-top: 5px; }
}
@media (max-width:620px){
  .container { width:min(calc(100% - 30px),var(--container)); }
  .hero-grid { padding: 42px 0 34px; }
  .hero-copy .eyebrow { margin-bottom:12px; font-size:.65rem; }
  .hero-copy h1 { margin-bottom:18px; font-size:2.38rem; line-height:1.02; }
  .hero-lead { font-size:.96rem; line-height:1.58; }
  .hero-actions { margin-top:23px; }
  .hero-actions .button { width:100%; }
  .hero-points { margin-top:25px; }
  .footer-bottom { width:min(calc(100% - 30px),var(--container)); }
}

/* v0.8.0 - Identidad Master + pulido visual */
:root {
    --master-blue: #ef7108;
    --master-blue-dark: #c95800;
    --master-navy: #111111;
    --master-text: #252525;
    --master-muted: #686868;
    --master-soft: #fafafa;
    --master-border: #ece7e2;
    --master-shadow: 0 20px 55px rgba(36, 28, 20, .10);
}
.site-header {
    background: rgba(255,255,255,.95);
}
.site-header.is-scrolled {
    box-shadow: 0 9px 30px rgba(30,25,20,.07);
}
.header-inner {
    min-height: 76px;
    gap: 34px;
}
.brand { min-width: 245px; }
.brand-logo {
    display:block;
    width:auto;
    height:52px;
    max-width:265px;
    object-fit:contain;
}
.site-nav a { color:#3b3b3b; font-weight:700; }
.site-nav a::after { background:var(--master-blue); height:3px; border-radius:3px; }
.site-nav a:hover, .site-nav .active > a { color:var(--master-blue-dark); }
.button-primary {
    background:linear-gradient(135deg,#f27a0a,#df6100);
    box-shadow:0 12px 25px rgba(239,113,8,.25);
}
.button-primary:hover { box-shadow:0 16px 32px rgba(239,113,8,.30); }
.section-shell {
    background:
      radial-gradient(circle at 82% 18%, rgba(239,113,8,.10), transparent 27%),
      linear-gradient(180deg,#fffaf6 0%,#ffffff 76%);
}
.hero::before { border-color:rgba(239,113,8,.13); }
.hero-copy h1 strong, .hero-copy h1 em { color:var(--master-blue); }
.custom .eyebrow, .eyebrow { color:var(--master-blue); }
.hero-points i {
    border-color:rgba(239,113,8,.35)!important;
    color:var(--master-blue)!important;
    background:#fff7ef!important;
}
.hero-showcase .showcase-glow {
    background:radial-gradient(circle,rgba(239,113,8,.18),transparent 68%)!important;
}
.dash-sidebar { background:linear-gradient(180deg,#1c1c1c,#090909)!important; }
.dash-sidebar > i.active, .mini-brand b { background:#ef7108!important; }
.chart-card { color:#ef7108!important; }
.phone-card { background:linear-gradient(165deg,#383838,#111)!important; border-color:#202020!important; }
.phone-card span { color:#ffb066!important; }
.phone-card i { background:#ef7108!important; }
.float-card > span, .service-icon, .icon-badge {
    color:#df6100!important;
    background:#fff1e5!important;
}
.float-card { border-color:rgba(239,113,8,.16)!important; }
.section-link,.card-arrow { color:var(--master-blue)!important; }
.services-section { background:#fbfaf9; }
.service-card {
    border-color:#eee8e2;
    box-shadow:0 8px 28px rgba(38,28,20,.035);
}
.service-card:hover {
    border-color:#f0c49f;
    box-shadow:0 18px 40px rgba(78,42,12,.10);
}
.about-section { background:#fff; }
.about-scene {
    background:linear-gradient(135deg,#fff3e9 0%,#fffaf6 55%,#f6f4f2 100%)!important;
    box-shadow:0 24px 52px rgba(55,37,21,.10)!important;
}
.about-backdrop {
    background:radial-gradient(circle at 75% 20%,rgba(239,113,8,.12),transparent 30%),linear-gradient(90deg,transparent 0 68%,rgba(255,255,255,.62) 68% 100%)!important;
}
.about-bars i { background:linear-gradient(180deg,#ff9d4c,#ef7108)!important; }
.about-values { border-color:rgba(239,113,8,.15)!important; }
.projects-section { background:#fbfaf9; }
.cta-section {
    background:
      radial-gradient(circle at 80% 20%,rgba(239,113,8,.30),transparent 34%),
      linear-gradient(110deg,#1c1c1c,#0b0b0b 72%);
}
.cta-section .button { background:#1fbb5f; }
.site-footer { border-top-color:#eee7e0; }
.footer-brand .brand { display:inline-flex; }
.footer-logo { height:66px; max-width:330px; }
.footer-bottom {
    justify-content:center!important;
    text-align:center;
}
.footer-bottom > * { margin-inline:auto; }

/* Pulido Servicios */
.services-section { padding:76px 0 82px; }
.services-grid { gap:16px; }
.service-card { min-height:112px; border-radius:16px; padding:22px 22px; }
.service-card h3 { font-size:1.02rem; letter-spacing:-.015em; }
.service-card p { max-width:265px; color:#747474; }
.service-icon { width:52px; height:52px; }
.service-icon svg { width:26px; height:26px; stroke-width:1.9; }

/* Pulido Sobre nosotros */
.about-grid { gap:82px; }
.about-copy h2 { max-width:570px; font-size:clamp(2.2rem,3.25vw,3.45rem); }
.about-copy p { max-width:585px; font-size:1.02rem; }
.about-scene { min-height:390px; }

/* Afinado Hero */
.hero-grid { padding:64px 0 68px; }
.hero-copy h1 { color:#111; max-width:650px; }
.hero-copy p { color:#656565; }
.hero-actions .button-secondary {
    border-color:#ead4c2;
    color:#343434;
}
.hero-actions .button-secondary:hover { border-color:#ef7108; color:#cf5900; }

@media (max-width:960px){
    .brand { min-width:0; }
    .brand-logo { height:46px; max-width:230px; }
    .header-inner { min-height:70px; }
    .about-grid { gap:48px; }
}
@media (max-width:620px){
    .brand-logo { height:40px; max-width:205px; }
    .footer-logo { height:54px; max-width:280px; }
    .service-card { min-height:104px; }
}


/* v0.8.1 - Hero visual profesional + saludo dinámico */
.hero-visual {
  min-height: 430px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.hero-pro-visual {
  position:relative;
  width:min(100%,760px);
  margin-left:auto;
  transform:translateY(-4px) scale(1.035);
  transform-origin:center;
}
.hero-pro-visual > img {
  display:block;
  width:100%;
  height:auto;
  border-radius:0;
  box-shadow:none;
  user-select:none;
  pointer-events:none;
}
.hero-screen-greeting {
  position:absolute;
  left:39.55%;
  top:27.05%;
  width:31.6%;
  min-height:8.2%;
  padding:0.35% 0.75% 0.2%;
  background:linear-gradient(90deg,rgba(250,251,251,.99) 0%,rgba(249,250,250,.99) 78%,rgba(249,250,250,.82) 100%);
  color:#0f2740;
  text-align:left;
  pointer-events:none;
}
.hero-screen-greeting strong {
  display:block;
  font-size:clamp(.7rem,1.35vw,1.15rem);
  line-height:1.05;
  font-weight:900;
  letter-spacing:-.035em;
}
.hero-screen-greeting small {
  display:block;
  margin-top:5px;
  font-size:clamp(.42rem,.62vw,.61rem);
  line-height:1.2;
  color:#78889a;
  font-weight:500;
}
@media (max-width: 1100px) {
  .hero-pro-visual { transform:translateY(0) scale(1); }
  .hero-screen-greeting strong { font-size:clamp(.68rem,1.7vw,1.02rem); }
}
@media (max-width: 960px) {
  .hero-pro-visual { width:min(100%,720px); margin-inline:auto; }
  .hero-screen-greeting strong { font-size:clamp(.75rem,2.2vw,1.1rem); }
  .hero-screen-greeting small { font-size:clamp(.45rem,1.15vw,.64rem); }
}
@media (max-width: 620px) {
  .hero-visual { min-height:300px; }
  .hero-pro-visual { width:112%; margin-left:-6%; }
  .hero-screen-greeting { left:39.55%; top:27.05%; }
  .hero-screen-greeting strong { font-size:clamp(.58rem,3vw,.82rem); }
  .hero-screen-greeting small { margin-top:2px; font-size:clamp(.35rem,1.75vw,.5rem); }
}
\n\n/* v0.8.2 - Ajuste final de escala/posición del visual del Hero */
@media (min-width: 1101px) {
  .hero-visual {
    justify-content:flex-end;
    overflow:visible;
  }
  .hero-pro-visual {
    width:122%;
    max-width:none;
    margin-left:-10%;
    margin-right:-12%;
    transform:translateY(-12px);
  }
}
@media (min-width: 961px) and (max-width: 1100px) {
  .hero-pro-visual {
    width:112%;
    max-width:none;
    margin-left:-6%;
    margin-right:-6%;
    transform:translateY(-7px);
  }
}


/* v0.8.3 - Escala real del visual del Hero.
   La versión anterior agrandaba el bloque en porcentaje, pero la columna del grid
   seguía limitando visualmente el resultado. Acá usamos ancho real en desktop. */
@media (min-width: 1101px) {
  .hero-grid {
    grid-template-columns: .96fr 1.04fr;
    gap: 34px;
  }
  .hero-visual {
    position: relative;
    overflow: visible;
    justify-content: flex-start;
  }
  .hero-pro-visual {
    width: 860px;
    max-width: none;
    flex: 0 0 860px;
    margin: 0;
    transform: translate(42px,-10px);
    transform-origin: center center;
  }
}
@media (min-width: 1280px) {
  .hero-pro-visual {
    width: 910px;
    flex-basis: 910px;
    transform: translate(52px,-12px);
  }
}


/* v0.8.4 - Hero visual con PNG transparente para eliminar el recuadro blanco */
.hero-pro-visual > img {
  filter: drop-shadow(0 22px 34px rgba(17,28,44,.14));
}


/* v0.8.5 - forzar nuevo nombre de imagen del Hero para evitar caché */


/* v0.8.6 - saludo dinámico eliminado: la imagen del Hero ya incluye su propio contenido visual. */


/* v0.9.0 - Pulido final de Servicios */
.services-section {
  position:relative;
  padding:82px 0 88px;
  background:linear-gradient(180deg,#fff 0%,#fcfaf8 100%);
  border-top:1px solid rgba(239,113,8,.06);
  border-bottom:1px solid #f1ece7;
}
.services-heading {
  margin-bottom:34px;
  align-items:flex-end;
}
.services-heading .eyebrow {
  display:inline-block;
  margin-bottom:9px;
  font-size:.73rem;
  letter-spacing:.16em;
}
.services-heading h2 {
  margin:0;
  color:#151515;
  font-size:clamp(2rem,3vw,3.1rem);
  line-height:1.03;
  letter-spacing:-.045em;
}
.services-heading .section-link {
  margin-bottom:4px;
  color:#d95f00!important;
  font-size:.82rem;
}
.services-grid {
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}
.service-card {
  position:relative;
  min-height:126px;
  grid-template-columns:60px minmax(0,1fr) 34px;
  gap:17px;
  padding:24px 22px;
  overflow:hidden;
  border:1px solid #eee7e1;
  border-radius:18px;
  background:rgba(255,255,255,.94);
  box-shadow:0 10px 30px rgba(45,31,20,.045);
  transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease,background .22s ease;
}
.service-card::before {
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:3px;
  background:linear-gradient(180deg,#ff922f,#ef7108);
  opacity:0;
  transform:scaleY(.45);
  transform-origin:center;
  transition:opacity .22s ease,transform .22s ease;
}
.service-card:hover {
  transform:translateY(-4px);
  border-color:#efc39f;
  background:#fff;
  box-shadow:0 20px 42px rgba(78,42,12,.10);
}
.service-card:hover::before {
  opacity:1;
  transform:scaleY(1);
}
.service-icon {
  width:58px;
  height:58px;
  border:1px solid #f7d5ba;
  background:linear-gradient(145deg,#fff7ef,#ffead8)!important;
  color:#e96600!important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.9);
  transition:transform .22s ease,box-shadow .22s ease;
}
.service-card:hover .service-icon {
  transform:scale(1.045);
  box-shadow:0 9px 20px rgba(239,113,8,.12);
}
.service-icon svg {
  width:27px;
  height:27px;
  stroke-width:1.85;
}
.service-copy {
  align-self:center;
  min-width:0;
}
.service-card h3 {
  margin:0 0 6px;
  color:#1a1a1a;
  font-size:1.03rem;
  line-height:1.2;
  letter-spacing:-.018em;
}
.service-card p {
  max-width:290px;
  margin:0;
  color:#737373;
  font-size:.82rem;
  line-height:1.48;
}
.card-arrow {
  display:grid;
  place-items:center;
  width:32px;
  height:32px;
  border:1px solid #f1dfd0;
  border-radius:50%;
  background:#fffaf6;
  color:#df6100!important;
  font-size:.98rem;
  transition:transform .22s ease,background .22s ease,color .22s ease,border-color .22s ease;
}
.service-card:hover .card-arrow {
  transform:translateX(2px);
  border-color:#ef7108;
  background:#ef7108;
  color:#fff!important;
}
@media (max-width:960px) {
  .services-section { padding:68px 0 72px; }
  .services-heading { margin-bottom:28px; }
  .services-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .service-card { min-height:120px; }
}
@media (max-width:620px) {
  .services-section { padding:58px 0 62px; }
  .services-grid { grid-template-columns:1fr; gap:13px; }
  .service-card { min-height:0; grid-template-columns:54px minmax(0,1fr) 30px; padding:19px 17px; border-radius:15px; }
  .service-icon { width:52px; height:52px; }
  .service-icon svg { width:24px; height:24px; }
  .service-card h3 { font-size:.98rem; }
  .service-card p { font-size:.79rem; }
  .card-arrow { width:28px; height:28px; }
}


/* v0.9.1 - Pulido Sobre nosotros */
.about-section {
  padding:84px 0 90px;
  background:linear-gradient(180deg,#fff 0%,#fffaf6 100%);
}
.about-grid {
  grid-template-columns:minmax(0,.88fr) minmax(520px,1.12fr);
  gap:76px;
  align-items:center;
}
.about-copy { max-width:570px; }
.about-copy .eyebrow {
  color:#df6100;
  letter-spacing:.17em;
}
.about-copy h2 {
  max-width:540px;
  margin:13px 0 21px;
  color:#161616;
  font-size:clamp(2.15rem,3.2vw,3.32rem);
  line-height:1.01;
  letter-spacing:-.05em;
}
.about-copy p {
  max-width:540px;
  margin:0 0 30px;
  color:#6f6f6f;
  font-size:1rem;
  line-height:1.74;
}
.about-copy .button-primary {
  min-height:46px;
  padding-inline:20px;
  box-shadow:0 12px 26px rgba(239,113,8,.16);
}
.about-scene {
  min-height:390px;
  border:1px solid #f0ded0;
  border-radius:26px;
  background:
    radial-gradient(circle at 82% 16%,rgba(255,145,48,.20),transparent 29%),
    radial-gradient(circle at 18% 82%,rgba(239,113,8,.08),transparent 25%),
    linear-gradient(135deg,#fff8f1 0%,#fff 52%,#f7f3ef 100%);
  box-shadow:0 28px 60px rgba(66,37,15,.10);
}
.about-backdrop {
  background:
    linear-gradient(90deg,transparent 0 70%,rgba(255,255,255,.50) 70% 100%),
    linear-gradient(rgba(239,113,8,.035) 1px,transparent 1px),
    linear-gradient(90deg,rgba(239,113,8,.035) 1px,transparent 1px);
  background-size:auto,30px 30px,30px 30px;
}
.about-screen {
  left:7%;
  top:10%;
  width:47%;
  height:65%;
  border:7px solid #202020;
  border-radius:15px;
  background:#181818;
  box-shadow:0 20px 42px rgba(31,23,17,.20);
  transform:rotate(-1deg);
}
.about-screen-bar {
  height:30px;
  border-bottom:1px solid rgba(255,255,255,.08);
  background:#202020;
}
.about-screen-bar span { background:#6f6f6f; }
.about-screen-bar span:first-child { background:#ef7108; }
.about-screen-content { padding:25px 23px; }
.about-kicker { color:#f6a565; font-size:.75rem; font-weight:800; }
.about-bigline {
  max-width:175px;
  color:#fff;
  font-size:1.48rem;
  font-weight:900;
  line-height:1.02;
  letter-spacing:-.035em;
}
.about-bars { gap:9px; height:82px; margin-top:25px; }
.about-bars i {
  width:21px;
  border-radius:5px 5px 2px 2px;
  background:linear-gradient(180deg,#ff9a45,#ef7108);
  box-shadow:0 7px 14px rgba(239,113,8,.20);
}
.about-people { left:36%; right:16%; height:69%; }
.person {
  border:1px solid rgba(255,255,255,.5);
  background:linear-gradient(180deg,#f6f4f2 0 32%,#3b3b3b 32% 100%);
  box-shadow:0 14px 24px rgba(50,34,22,.10);
}
.person.p2 { background:linear-gradient(180deg,#f8f6f4 0 32%,#4a4a4a 32% 100%); }
.person.p3 { background:linear-gradient(180deg,#fbfaf9 0 32%,#292929 32% 100%); }
.person.p4 { background:linear-gradient(180deg,#fff 0 32%,#5b5b5b 32% 100%); }
.laptop {
  border-color:#d5d1cd;
  background:linear-gradient(135deg,#fafafa,#e7e4e1);
  box-shadow:0 12px 24px rgba(42,31,23,.15);
}
.laptop:before {
  content:"M";
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  color:#ef7108;
  font-size:1.3rem;
  font-weight:950;
}
.about-values {
  top:16%;
  right:3%;
  gap:8px;
  padding:15px 16px;
  border:1px solid #f0dfd2;
  border-radius:15px;
  background:rgba(255,255,255,.96);
  box-shadow:0 16px 34px rgba(66,37,15,.10);
}
.about-values span {
  gap:9px;
  color:#4f4f4f;
  font-size:.72rem;
  font-weight:800;
}
.about-values i { color:#ef7108; }
@media (max-width:960px) {
  .about-section { padding:72px 0 78px; }
  .about-grid { grid-template-columns:1fr; gap:42px; }
  .about-copy { max-width:700px; }
  .about-scene { min-height:395px; }
}
@media (max-width:620px) {
  .about-section { padding:60px 0 64px; }
  .about-copy h2 { font-size:clamp(2rem,10vw,2.65rem); }
  .about-copy p { font-size:.94rem; line-height:1.68; }
  .about-scene { min-height:320px; border-radius:20px; }
  .about-screen { left:4%; top:8%; width:52%; height:59%; border-width:5px; }
  .about-screen-content { padding:15px 13px; }
  .about-bigline { font-size:1.08rem; }
  .about-bars { height:55px; margin-top:14px; gap:6px; }
  .about-bars i { width:15px; }
  .about-people { left:30%; right:8%; height:61%; transform:scale(.82); transform-origin:bottom center; }
  .about-values { top:auto; right:4%; bottom:6%; padding:10px 11px; gap:5px; }
  .about-values span { font-size:.61rem; }
}


/* v0.9.2 - Reemplazo del visual de Nosotros por una escena más profesional, sin personajes */
.about-scene {
  min-height: 400px;
  background:
    radial-gradient(circle at 80% 18%, rgba(239,113,8,.18), transparent 26%),
    radial-gradient(circle at 24% 82%, rgba(239,113,8,.08), transparent 26%),
    linear-gradient(135deg,#fff9f4 0%,#ffffff 52%,#f8f4f0 100%);
}
.about-backdrop {
  background:
    linear-gradient(90deg,transparent 0 72%,rgba(255,255,255,.50) 72% 100%),
    radial-gradient(circle at 28% 28%, rgba(239,113,8,.08), transparent 9%);
}
.about-screen {
  left: 6%;
  top: 11%;
  width: 53%;
  height: 62%;
  border-width: 8px;
  border-radius: 18px;
  box-shadow: 0 24px 52px rgba(31,23,17,.18);
}
.about-screen-content { padding: 24px 22px; }
.about-bigline { max-width: 200px; }
.about-bars { margin-top: 22px; }
.about-workspace {
  position: absolute;
  right: 16%;
  bottom: 11%;
  width: 39%;
  height: 48%;
}
.about-mini-device {
  position: absolute;
  left: 8%;
  bottom: 0;
  width: 56%;
  height: 68%;
  border: 1px solid #e9ddd2;
  border-radius: 18px;
  background: linear-gradient(160deg,#ffffff,#f8f4ef);
  box-shadow: 0 16px 34px rgba(66,37,15,.10);
  overflow: hidden;
}
.mini-device-head {
  display:flex;
  align-items:center;
  gap:8px;
  height: 36px;
  padding: 0 13px;
  border-bottom: 1px solid #efe5dc;
  background: rgba(255,255,255,.9);
  color:#2f2f2f;
  font-size:.78rem;
  font-weight:800;
}
.mini-dot {
  width:9px;
  height:9px;
  border-radius:50%;
  background:#ef7108;
  box-shadow:14px 0 0 rgba(239,113,8,.35),28px 0 0 rgba(239,113,8,.18);
}
.mini-device-head b { margin-left: 32px; font-weight: 900; }
.mini-device-body { padding: 14px 14px 12px; }
.mini-device-body strong {
  display:block;
  color:#1b1b1b;
  font-size:1rem;
  line-height:1.15;
  font-weight:900;
}
.mini-device-body small {
  display:block;
  margin-top:8px;
  color:#666;
  font-size:.69rem;
  line-height:1.45;
}
.mini-bars {
  display:flex;
  align-items:flex-end;
  gap:7px;
  height:72px;
  margin-top:16px;
}
.mini-bars i {
  width: 16px;
  border-radius: 5px 5px 2px 2px;
  background: linear-gradient(180deg,#ffaf63,#ef7108);
  box-shadow: 0 7px 14px rgba(239,113,8,.16);
}
.mini-bars i:nth-child(1) { height: 34%; }
.mini-bars i:nth-child(2) { height: 58%; }
.mini-bars i:nth-child(3) { height: 46%; }
.mini-bars i:nth-child(4) { height: 78%; }
.about-stat-card {
  position:absolute;
  display:grid;
  gap:5px;
  min-width: 138px;
  padding: 14px 16px;
  border:1px solid #f0dfd2;
  border-radius: 16px;
  background: rgba(255,255,255,.97);
  box-shadow: 0 16px 34px rgba(66,37,15,.10);
}
.about-stat-card em {
  color:#ef7108;
  font-size:1.2rem;
  font-style:normal;
  font-weight:900;
  line-height:1;
}
.about-stat-card span {
  color:#565656;
  font-size:.73rem;
  line-height:1.35;
  font-weight:700;
}
.stat-one { right: -2%; top: 9%; }
.stat-two { right: 9%; bottom: 6%; }
.about-values {
  top: 16%;
  right: 3.5%;
  padding: 15px 16px;
}
@media (max-width:960px) {
  .about-scene { min-height: 420px; }
  .about-workspace { right: 12%; width: 44%; height: 50%; }
  .about-screen { width: 54%; }
}
@media (max-width:620px) {
  .about-scene { min-height: 350px; }
  .about-screen {
    left: 4%;
    top: 8%;
    width: 56%;
    height: 56%;
    border-width: 5px;
  }
  .about-workspace {
    right: 8%;
    bottom: 8%;
    width: 52%;
    height: 50%;
  }
  .about-mini-device {
    width: 65%;
    height: 66%;
    border-radius: 14px;
  }
  .mini-device-head {
    height: 29px;
    padding: 0 9px;
    font-size: .64rem;
  }
  .mini-dot { width:7px; height:7px; box-shadow:11px 0 0 rgba(239,113,8,.35),22px 0 0 rgba(239,113,8,.18); }
  .mini-device-head b { margin-left: 25px; }
  .mini-device-body { padding: 10px 10px 8px; }
  .mini-device-body strong { font-size: .78rem; }
  .mini-device-body small { margin-top: 5px; font-size: .56rem; }
  .mini-bars { height: 46px; gap: 4px; margin-top: 10px; }
  .mini-bars i { width: 10px; }
  .about-stat-card {
    min-width: 96px;
    padding: 10px 11px;
    border-radius: 13px;
  }
  .about-stat-card em { font-size: .92rem; }
  .about-stat-card span { font-size: .56rem; }
  .stat-one { top: 2%; right: -2%; }
  .stat-two { right: 5%; bottom: 2%; }
  .about-values {
    top: auto;
    right: 4%;
    bottom: auto;
    left: auto;
    transform:none;
    padding: 8px 10px;
  }
}


/* v0.9.3 - Nosotros más premium y tecnológico */
.about-scene {
  min-height: 405px;
  border-color: #f0ddd0;
  background:
    radial-gradient(circle at 79% 18%, rgba(239,113,8,.18), transparent 24%),
    radial-gradient(circle at 18% 82%, rgba(239,113,8,.09), transparent 24%),
    linear-gradient(135deg,#fff9f4 0%,#ffffff 54%,#f8f4ef 100%);
}
.about-backdrop {
  background:
    linear-gradient(90deg,transparent 0 72%,rgba(255,255,255,.45) 72% 100%),
    radial-gradient(circle at 30% 30%, rgba(239,113,8,.08), transparent 10%),
    linear-gradient(rgba(239,113,8,.03) 1px,transparent 1px),
    linear-gradient(90deg,rgba(239,113,8,.03) 1px,transparent 1px);
  background-size:auto,auto,26px 26px,26px 26px;
}
.about-screen {
  left: 6%;
  top: 12%;
  width: 50%;
  height: 63%;
  border-width: 8px;
  border-radius: 18px;
  box-shadow: 0 26px 54px rgba(31,23,17,.18);
}
.about-screen-content { padding: 26px 24px; }
.about-kicker { font-size:.78rem; }
.about-bigline { max-width: 210px; font-size:1.62rem; }
.about-bars { margin-top: 24px; gap:10px; }
.about-bars i { width:22px; }

.about-workspace {
  position:absolute;
  right: 13%;
  bottom: 8%;
  width: 44%;
  height: 50%;
}
.about-laptop-card {
  position:absolute;
  left: 2%;
  bottom: 0;
  width: 74%;
  height: 66%;
  border:1px solid #eadfd4;
  border-radius:18px 18px 14px 14px;
  background: linear-gradient(155deg,#ffffff,#f8f4ee);
  box-shadow: 0 18px 38px rgba(66,37,15,.10);
  overflow:hidden;
}
.about-laptop-card:after {
  content:"";
  position:absolute;
  left:10%;
  right:10%;
  bottom:-10px;
  height:10px;
  border-radius:0 0 16px 16px;
  background:linear-gradient(180deg,#c8cfd7,#a9b4c0);
}
.about-laptop-topbar {
  display:flex;
  align-items:center;
  gap:7px;
  height:34px;
  padding:0 12px;
  border-bottom:1px solid #efe5dc;
  background:#fff;
}
.about-laptop-topbar span {
  width:8px;height:8px;border-radius:50%;background:#ef7108;
}
.about-laptop-topbar span:nth-child(2){background:rgba(239,113,8,.45)}
.about-laptop-topbar span:nth-child(3){background:rgba(239,113,8,.22)}
.about-laptop-topbar b { margin-left:auto; color:#2c2c2c; font-size:.76rem; font-weight:900; }
.about-laptop-body {
  display:grid;
  grid-template-columns:1fr 94px;
  gap:14px;
  padding:15px 16px 14px;
}
.about-laptop-copy strong {
  display:block;
  color:#171717;
  font-size:1.02rem;
  line-height:1.1;
  font-weight:900;
}
.about-laptop-copy small {
  display:block;
  margin-top:9px;
  color:#666;
  font-size:.69rem;
  line-height:1.45;
}
.about-laptop-chart {
  display:flex;
  align-items:flex-end;
  justify-content:center;
  gap:8px;
  height:88px;
  padding-top:14px;
}
.about-laptop-chart i {
  width:15px;
  border-radius:5px 5px 2px 2px;
  background:linear-gradient(180deg,#ffab5c,#ef7108);
  box-shadow:0 8px 16px rgba(239,113,8,.16);
}
.about-laptop-chart i:nth-child(1){height:34%}
.about-laptop-chart i:nth-child(2){height:58%}
.about-laptop-chart i:nth-child(3){height:45%}
.about-laptop-chart i:nth-child(4){height:78%}

.about-phone-card {
  position:absolute;
  right:-2%;
  bottom:4%;
  width:95px;
  height:168px;
  padding:18px 12px 12px;
  border-radius:24px;
  background:linear-gradient(180deg,#171717,#0d0d0d 62%,#141414 100%);
  box-shadow:0 18px 36px rgba(35,23,15,.18);
  color:#fff;
}
.about-phone-notch {
  position:absolute;
  top:8px;
  left:50%;
  width:34px;
  height:8px;
  transform:translateX(-50%);
  border-radius:10px;
  background:#282828;
}
.about-phone-brand {
  width:34px;height:34px;margin:14px auto 10px;
  display:grid;place-items:center;
  border-radius:12px;
  background:linear-gradient(180deg,#ff9b46,#ef7108);
  color:#fff;font-weight:950;font-size:1.05rem;
}
.about-phone-card strong {
  display:block;text-align:center;font-size:.94rem;font-weight:900;line-height:1.1;
}
.about-phone-card small {
  display:block;margin-top:6px;text-align:center;color:#d2d2d2;font-size:.61rem;line-height:1.35;
}
.about-phone-bars {
  display:flex;align-items:flex-end;justify-content:center;gap:5px;height:46px;margin-top:16px;
}
.about-phone-bars i {
  width:10px;border-radius:4px 4px 2px 2px;background:linear-gradient(180deg,#ffab5c,#ef7108);
}
.about-phone-bars i:nth-child(1){height:38%}
.about-phone-bars i:nth-child(2){height:62%}
.about-phone-bars i:nth-child(3){height:82%}

.about-badge-strip {
  position:absolute;
  left: 10%;
  top: -8%;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.about-badge-strip span {
  display:inline-flex;
  align-items:center;
  gap:7px;
  min-height:36px;
  padding:0 12px;
  border:1px solid #f0dfd2;
  border-radius:999px;
  background:rgba(255,255,255,.96);
  box-shadow:0 12px 24px rgba(66,37,15,.08);
  color:#555;
  font-size:.68rem;
  font-weight:800;
  white-space:nowrap;
}
.about-badge-strip b { color:#ef7108; font-size:.92rem; }
.about-values {
  top: 16%;
  right: 3.5%;
  gap:8px;
  padding:15px 16px;
  z-index: 3;
}
.about-values span { color:#4e4e4e; font-size:.72rem; font-weight:800; }

@media (max-width:960px){
  .about-scene { min-height: 430px; }
  .about-screen { width: 52%; }
  .about-workspace { right: 10%; width: 47%; height: 51%; }
  .about-phone-card { width:88px; height:158px; }
}
@media (max-width:620px){
  .about-scene { min-height: 355px; }
  .about-screen {
    left:4%; top:8%; width:56%; height:57%; border-width:5px;
  }
  .about-screen-content { padding:16px 13px; }
  .about-bigline { font-size:1.12rem; max-width:145px; }
  .about-bars { height:54px; margin-top:14px; gap:6px; }
  .about-bars i { width:14px; }
  .about-workspace {
    right: 7%;
    bottom: 7%;
    width: 54%;
    height: 51%;
  }
  .about-laptop-card {
    width: 72%;
    height: 66%;
    border-radius:14px 14px 12px 12px;
  }
  .about-laptop-topbar { height:28px; padding:0 9px; }
  .about-laptop-topbar span { width:6px; height:6px; }
  .about-laptop-topbar b { font-size:.62rem; }
  .about-laptop-body { grid-template-columns:1fr 62px; gap:8px; padding:10px 10px 10px; }
  .about-laptop-copy strong { font-size:.76rem; }
  .about-laptop-copy small { margin-top:5px; font-size:.53rem; }
  .about-laptop-chart { height:52px; gap:4px; padding-top:6px; }
  .about-laptop-chart i { width:9px; }
  .about-phone-card {
    width:66px; height:122px; padding:14px 8px 9px; border-radius:18px;
  }
  .about-phone-notch { top:7px; width:24px; height:6px; }
  .about-phone-brand { width:24px; height:24px; margin:10px auto 7px; font-size:.72rem; border-radius:8px; }
  .about-phone-card strong { font-size:.65rem; }
  .about-phone-card small { margin-top:4px; font-size:.48rem; }
  .about-phone-bars { gap:4px; height:30px; margin-top:10px; }
  .about-phone-bars i { width:7px; }
  .about-badge-strip {
    left: 4%; top: -4%; gap:6px;
  }
  .about-badge-strip span {
    min-height:28px; padding:0 8px; font-size:.52rem;
  }
  .about-badge-strip b { font-size:.7rem; }
  .about-values { right:4%; top:auto; bottom:8%; padding:8px 10px; gap:5px; }
  .about-values span { font-size:.59rem; }
}


/* v0.9.4 - Nosotros con imagen protagonista más profesional */
.about-section {
  padding: 86px 0;
}
.about-grid {
  grid-template-columns: minmax(0,.9fr) minmax(560px,1.1fr);
  gap: 68px;
  align-items: center;
}
.about-copy h2 {
  max-width: 560px;
}
.about-copy p {
  max-width: 560px;
}
.about-visual { min-width: 0; }
.about-media-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid #efdccf;
  border-radius: 26px;
  background: linear-gradient(135deg,#fff8f1 0%,#ffffff 54%,#f7f2ed 100%);
  box-shadow: 0 28px 60px rgba(66,37,15,.10);
}
.about-media-bg {
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 79% 20%, rgba(239,113,8,.17), transparent 24%),
    radial-gradient(circle at 22% 82%, rgba(239,113,8,.09), transparent 22%),
    linear-gradient(90deg,transparent 0 70%, rgba(255,255,255,.40) 70% 100%);
}
.about-media-image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 760px;
  height: auto;
  margin: 18px auto 0;
  filter: drop-shadow(0 24px 34px rgba(21,21,21,.10));
}
.about-media-chip {
  position:absolute;
  left: 28px;
  bottom: 24px;
  z-index: 2;
  display:inline-flex;
  align-items:center;
  min-height:40px;
  padding:0 16px;
  border:1px solid #f0dfd2;
  border-radius:999px;
  background:rgba(255,255,255,.96);
  box-shadow:0 16px 32px rgba(66,37,15,.10);
  color:#535353;
  font-size:.74rem;
  font-weight:800;
  letter-spacing:.02em;
}
.about-values {
  position:absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  display:grid;
  gap:8px;
  padding:16px 18px;
  border:1px solid #f0dfd2;
  border-radius:16px;
  background:rgba(255,255,255,.97);
  box-shadow:0 16px 34px rgba(66,37,15,.10);
}
.about-values span {
  display:flex;
  align-items:center;
  gap:9px;
  color:#4f4f4f;
  font-size:.73rem;
  font-weight:800;
}
.about-values i { color:#ef7108; width:18px; display:grid; place-items:center; font-style:normal; }
@media (max-width: 960px) {
  .about-grid {
    grid-template-columns:1fr;
    gap:42px;
  }
  .about-media-card {
    min-height: 390px;
  }
  .about-media-image {
    max-width: 690px;
    margin-top: 16px;
  }
}
@media (max-width: 620px) {
  .about-section {
    padding: 64px 0;
  }
  .about-copy h2 {
    font-size: clamp(2rem,10vw,2.65rem);
  }
  .about-copy p {
    font-size:.95rem;
    line-height:1.68;
  }
  .about-media-card {
    min-height: 310px;
    border-radius: 20px;
  }
  .about-media-image {
    width: 118%;
    max-width: none;
    margin: 8px 0 0 -9%;
  }
  .about-media-chip {
    left: 12px;
    right: 12px;
    bottom: 12px;
    justify-content: center;
    min-height: 34px;
    padding: 0 10px;
    font-size: .58rem;
    text-align: center;
  }
  .about-values {
    top: 12px;
    right: 12px;
    padding: 10px 11px;
    gap: 5px;
  }
  .about-values span {
    font-size: .60rem;
    gap: 7px;
  }
}


/* v0.9.5 - Nosotros con imagen de oficina profesional distinta al Hero */
.about-office-card {
  min-height: 430px;
  padding: 0;
  overflow: hidden;
  background: #fff8f1;
  border: 1px solid #efdccf;
  border-radius: 26px;
  box-shadow: 0 28px 60px rgba(66,37,15,.10);
}
.about-office-image {
  display:block;
  width:100%;
  height:100%;
  min-height:430px;
  object-fit:cover;
  object-position:center;
}
@media (max-width:960px){
  .about-office-card,
  .about-office-image { min-height: 390px; }
}
@media (max-width:620px){
  .about-office-card { min-height: 300px; border-radius:20px; }
  .about-office-image { min-height:300px; object-position:center; }
}


/* v0.9.6 - Corrección final de Nosotros + pulido de Proyectos */

/* Nosotros: preservar la composición completa de la imagen sin recortar paneles */
.about-office-card {
  min-height: 0;
  aspect-ratio: 1135 / 713;
  background: #fff8f1;
  overflow: hidden;
}
.about-office-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center center;
}
@media (max-width:960px) {
  .about-office-card,
  .about-office-image { min-height: 0; }
}
@media (max-width:620px) {
  .about-office-card {
    min-height: 0;
    aspect-ratio: 1135 / 713;
    border-radius: 20px;
  }
  .about-office-image {
    min-height: 0;
    object-fit: contain;
    object-position: center center;
  }
}

/* Proyectos y soluciones: identidad Master naranja/grafito */
.projects-section {
  padding: 84px 0 92px;
  background: linear-gradient(180deg,#fbfaf9 0%,#fff 100%);
  border-top: 1px solid #f1ebe5;
  border-bottom: 1px solid #f1ebe5;
}
.projects-heading { margin-bottom: 30px; }
.projects-heading .eyebrow { color:#d95f00; }
.projects-heading h2 {
  color:#171717;
  letter-spacing:-.04em;
}
.projects-heading .section-link {
  color:#d95f00;
}
.projects-grid { gap: 24px; }
.project-card {
  position:relative;
  border:1px solid #eee3da;
  border-radius:20px;
  background:#fff;
  box-shadow:0 16px 40px rgba(51,31,16,.07);
  transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease;
}
.project-card::after {
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:3px;
  background:linear-gradient(90deg,#ef7108,#ff9d4c);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .22s ease;
}
.project-card:hover {
  transform:translateY(-6px);
  border-color:#f0c7a5;
  box-shadow:0 26px 58px rgba(65,38,17,.13);
}
.project-card:hover::after { transform:scaleX(1); }
.project-thumb {
  height:220px;
  border-bottom:1px solid #f0e8e1;
}
.project-body {
  min-height:172px;
  padding:22px 54px 24px 22px;
}
.project-category {
  margin-bottom:5px;
  color:#ef7108;
  font-size:.75rem;
  font-weight:900;
  letter-spacing:.035em;
  text-transform:uppercase;
}
.project-title {
  color:#1b1b1b;
  font-size:1.18rem;
  font-weight:900;
}
.project-text {
  color:#737373;
  font-size:.88rem;
  line-height:1.55;
}
.project-arrow {
  right:20px;
  bottom:22px;
  display:grid;
  place-items:center;
  width:34px;
  height:34px;
  border:1px solid #f0d4bd;
  border-radius:50%;
  background:#fff7f0;
  color:#ef7108;
  font-size:1rem;
}
.project-card:hover .project-arrow {
  transform:translateX(3px);
  background:#ef7108;
  color:#fff;
  border-color:#ef7108;
}

/* Miniaturas adaptadas a la identidad */
.project-thumb-web {
  background:linear-gradient(145deg,#fff8f1,#f5eee8);
}
.project-desk { background:#e5ddd6; }
.project-monitor {
  border-color:#252525;
  box-shadow:0 18px 30px rgba(38,26,17,.18);
}
.project-monitor i {
  background:linear-gradient(90deg,#ef7108 0 35%,#f5e7dc 35%);
}
.project-monitor b {
  background:linear-gradient(135deg,#ffe4cd,#fffaf6);
}
.project-monitor em {
  background:repeating-linear-gradient(#f4ebe4 0 10px,#fff 10px 18px);
}
.project-pot {
  background:#7e8b6d;
  box-shadow:inset 0 10px 0 #5d6f50;
}
.project-pot:before,.project-pot:after { background:#778f66; }

.project-thumb-portal {
  background:linear-gradient(180deg,#f4e2d2 0%,#fff7f0 55%,#d8e1cf 55%,#85966d 100%);
}
.portal-sky { background:linear-gradient(#f6d7bd,#fff7ef); }
.portal-land { background:linear-gradient(#8da177,#667954); }
.portal-browser {
  border-color:#2b2b2b;
  box-shadow:0 16px 30px rgba(42,28,17,.18);
}
.portal-browser i { background:#ef7108; }
.portal-browser b { background:#f3d8c2; }
.portal-browser em { background:linear-gradient(135deg,rgba(239,113,8,.18),rgba(113,139,91,.28)); }

.project-thumb-system {
  background:linear-gradient(145deg,#1b1b1b,#2b2b2b);
}
.system-sidebar { background:#111; }
.system-sidebar:after {
  background:#ef7108;
  box-shadow:0 28px 0 #4a4a4a,0 56px 0 #4a4a4a,0 84px 0 #4a4a4a;
}
.system-card {
  background:#303030;
  border-color:rgba(239,113,8,.22);
}
.system-card:after { background:#ef7108; }
.system-table {
  background:repeating-linear-gradient(#262626 0 16px,#323232 16px 17px);
  border-color:rgba(239,113,8,.16);
}
@media (max-width:960px) {
  .project-thumb { height:205px; }
}
@media (max-width:620px) {
  .projects-section { padding:66px 0 72px; }
  .project-thumb { height:192px; }
  .project-body { min-height:0; padding:20px 52px 22px 19px; }
}


/* v0.9.7 - Nosotros alineado a la lógica visual del Hero */
.about-section {
  padding: 88px 0;
}
.about-grid {
  grid-template-columns: minmax(0,.9fr) minmax(560px,1.1fr);
  gap: 72px;
  align-items: center;
}
.about-visual {
  position: relative;
  min-width: 0;
}
.about-office-card {
  position: relative;
  min-height: 430px;
  aspect-ratio: auto;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.about-office-card::before {
  content: "";
  position: absolute;
  inset: 8% 3% 7% 2%;
  border-radius: 34px;
  background:
    radial-gradient(circle at 82% 18%, rgba(239,113,8,.16), transparent 22%),
    radial-gradient(circle at 18% 82%, rgba(239,113,8,.10), transparent 22%),
    linear-gradient(135deg,#fff9f4 0%,#ffffff 54%,#f8f4ef 100%);
  box-shadow: 0 24px 56px rgba(66,37,15,.08);
}
.about-office-card::after {
  content: "";
  position: absolute;
  left: 18%;
  top: 18%;
  width: 64px;
  height: 64px;
  background-image: radial-gradient(circle, rgba(239,113,8,.45) 1.7px, transparent 1.7px);
  background-size: 16px 16px;
  opacity: .4;
}
.about-office-image {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  max-width: 780px;
  height: auto;
  min-height: 0;
  margin: 2px 0 0;
  object-fit: contain;
  object-position: center center;
  filter: drop-shadow(0 26px 38px rgba(20,20,20,.12));
}
@media (min-width: 1180px) {
  .about-office-image {
    width: 103%;
    max-width: none;
    margin-left: -1.5%;
  }
}
@media (max-width:960px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .about-office-card {
    min-height: 390px;
  }
  .about-office-card::before {
    inset: 7% 2% 6% 2%;
    border-radius: 28px;
  }
  .about-office-image {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
  }
}
@media (max-width:620px) {
  .about-section {
    padding: 64px 0;
  }
  .about-office-card {
    min-height: 300px;
  }
  .about-office-card::before {
    inset: 6% 0 4% 0;
    border-radius: 22px;
  }
  .about-office-card::after {
    left: 8%;
    top: 14%;
    width: 44px;
    height: 44px;
    background-size: 11px 11px;
  }
  .about-office-image {
    width: 108%;
    max-width: none;
    margin-left: -4%;
  }
}


/* v0.9.8 - Nosotros sin recuadro rígido, siguiendo la lógica visual del Hero */
.about-visual {
  position: relative;
  min-width: 0;
}
.about-visual::before {
  content: "";
  position: absolute;
  right: 4%;
  top: 11%;
  width: 62%;
  height: 66%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239,113,8,.16) 0%, rgba(239,113,8,.08) 38%, rgba(239,113,8,0) 72%);
  filter: blur(2px);
  z-index: 0;
}
.about-visual::after {
  content: "";
  position: absolute;
  left: 8%;
  top: 16%;
  width: 78px;
  height: 78px;
  background-image: radial-gradient(circle, rgba(239,113,8,.38) 1.8px, transparent 1.8px);
  background-size: 19px 19px;
  opacity: .55;
  z-index: 0;
}
.about-office-card {
  min-height: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.about-office-card::before,
.about-office-card::after {
  content: none !important;
  display: none !important;
}
.about-office-image {
  position: relative;
  z-index: 1;
  display: block;
  width: 103%;
  max-width: none;
  height: auto;
  min-height: 0;
  margin: 0 0 0 -1.5%;
  object-fit: contain;
  object-position: center center;
  filter: drop-shadow(0 26px 38px rgba(20,20,20,.10));
}
@media (max-width:960px) {
  .about-visual::before {
    right: 2%;
    top: 10%;
    width: 68%;
    height: 62%;
  }
  .about-visual::after {
    left: 5%;
    top: 14%;
    width: 62px;
    height: 62px;
    background-size: 15px 15px;
  }
  .about-office-image {
    width: 100%;
    margin-left: 0;
  }
}
@media (max-width:620px) {
  .about-visual::before {
    right: 0;
    top: 12%;
    width: 72%;
    height: 56%;
  }
  .about-visual::after {
    left: 2%;
    top: 12%;
    width: 42px;
    height: 42px;
    background-size: 10px 10px;
  }
  .about-office-image {
    width: 108%;
    margin-left: -4%;
  }
}


/* v0.9.9 - Imagen de Nosotros con transparencia real, sin lienzo blanco */
.about-office-card {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}
.about-office-image {
  width: 104%;
  max-width: none;
  margin-left: -2%;
  filter: drop-shadow(0 24px 34px rgba(20,20,20,.12));
}


/* v0.9.10 - Limpieza final del borde izquierdo de la imagen de Nosotros */
.about-office-image {
  width: 103%;
  margin-left: -1.5%;
}


/* v0.9.11 - Recurso de Nosotros reconstruido: solo escena visual, sin textos residuales */
.about-office-card {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}
.about-office-image {
  width: 103%;
  max-width: none;
  margin-left: -1.5%;
  filter: drop-shadow(0 24px 34px rgba(20,20,20,.12));
}


/* v0.9.12 - Nosotros: escena recortada exclusivamente del sector derecho */
.about-office-card {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}
.about-office-image {
  width: 106%;
  max-width: none;
  margin-left: -3%;
  filter: drop-shadow(0 24px 34px rgba(20,20,20,.11));
}


/* v0.9.13 - eliminar recuadro residual y dar un poco más de presencia a la imagen de Nosotros */
.about-office-image {
  width: 111%;
  max-width: none;
  margin-left: -5.5%;
  filter: drop-shadow(0 26px 36px rgba(20,20,20,.10));
}
@media (max-width: 960px) {
  .about-office-image { width: 106%; margin-left: -3%; }
}
@media (max-width: 620px) {
  .about-office-image { width: 110%; margin-left: -5%; }
}


/* v0.10.0 - Portfolio administrable mediante mod_master_proyectos */
.master-projects-module .projects-heading {
  margin-bottom: 30px;
}
.master-projects-module .project-card {
  position: relative;
}
.master-projects-module .project-thumb {
  height: 235px;
  background: linear-gradient(135deg,#f6efe9,#fff);
}
.master-projects-module .project-thumb-image {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:top center;
  transition:transform .45s ease;
}
.master-projects-module .project-card:hover .project-thumb-image {
  transform:scale(1.025);
}
.master-projects-module .project-thumb::after {
  content:"";
  position:absolute;
  inset:auto 0 0;
  height:42%;
  background:linear-gradient(180deg,transparent,rgba(17,17,17,.18));
  pointer-events:none;
}
.master-projects-module .project-logo-badge {
  position:absolute;
  left:18px;
  bottom:16px;
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:center;
  min-width:64px;
  min-height:46px;
  max-width:150px;
  padding:8px 12px;
  border:1px solid rgba(255,255,255,.8);
  border-radius:12px;
  background:rgba(255,255,255,.96);
  box-shadow:0 10px 24px rgba(20,20,20,.13);
}
.master-projects-module .project-logo-badge img {
  display:block;
  max-width:122px;
  max-height:34px;
  width:auto;
  height:auto;
  object-fit:contain;
}
.master-projects-module .project-year {
  display:inline-flex;
  align-items:center;
  min-height:25px;
  margin-left:8px;
  padding:0 8px;
  border-radius:999px;
  background:#fff4ea;
  color:#d96500;
  font-size:.67rem;
  font-weight:850;
  vertical-align:middle;
}
.master-projects-module .project-meta-line {
  display:flex;
  align-items:center;
  gap:4px;
  flex-wrap:wrap;
  margin-bottom:6px;
}
.master-projects-module .project-featured {
  border-color:#ef7108;
  box-shadow:0 18px 44px rgba(239,113,8,.12);
}
.master-projects-module .project-featured::before {
  content:"Destacado";
  position:absolute;
  top:14px;
  right:14px;
  z-index:3;
  min-height:27px;
  display:flex;
  align-items:center;
  padding:0 10px;
  border-radius:999px;
  background:#ef7108;
  color:#fff;
  font-size:.64rem;
  font-weight:850;
  letter-spacing:.02em;
  box-shadow:0 8px 20px rgba(239,113,8,.22);
}
.master-projects-module .project-placeholder {
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  background:
    radial-gradient(circle at 75% 20%,rgba(239,113,8,.16),transparent 30%),
    linear-gradient(135deg,#fff7f0,#f3eee9);
}
.master-projects-module .project-placeholder span {
  display:grid;
  place-items:center;
  width:78px;
  height:78px;
  border-radius:22px;
  background:#171717;
  color:#ef7108;
  font-size:2rem;
  font-weight:950;
  box-shadow:0 18px 36px rgba(20,20,20,.15);
}
.master-projects-module .projects-empty {
  padding:28px;
  border:1px dashed #e5d6ca;
  border-radius:16px;
  background:#fffaf6;
  color:#6b625b;
  text-align:center;
}
@media (max-width:960px){
  .master-projects-module .project-thumb { height:220px; }
}
@media (max-width:620px){
  .master-projects-module .project-thumb { height:205px; }
  .master-projects-module .project-logo-badge {
    left:14px;
    bottom:13px;
    min-height:42px;
  }
}


/* v0.10.1 - Proyectos administrables conservando el mismo estilo visual del mockup */
.master-projects-module .projects-grid {
  gap: 24px;
}
.master-projects-module .project-card {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid #eee3da;
  border-radius: 20px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 16px 40px rgba(51,31,16,.07);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.master-projects-module .project-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg,#ef7108,#ff9d4c);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}
.master-projects-module .project-card:hover {
  transform: translateY(-6px);
  border-color: #f0c7a5;
  box-shadow: 0 26px 58px rgba(65,38,17,.13);
}
.master-projects-module .project-card:hover::after { transform: scaleX(1); }
.master-projects-module .project-thumb {
  position: relative;
  display: block;
  height: 220px;
  overflow: hidden;
  border-bottom: 1px solid #f0e8e1;
}
.master-projects-module .project-body {
  position: relative;
  display: block;
  min-height: 172px;
  padding: 22px 54px 24px 22px;
}
.master-projects-module .project-category {
  display: block;
  margin-bottom: 5px;
  color: #ef7108;
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .035em;
  text-transform: uppercase;
}
.master-projects-module .project-title {
  display: block;
  color: #1b1b1b;
  font-size: 1.18rem;
  font-weight: 900;
}
.master-projects-module .project-text {
  display: block;
  color: #737373;
  font-size: .88rem;
  line-height: 1.55;
}
.master-projects-module .project-arrow {
  position: absolute;
  right: 20px;
  bottom: 22px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid #f0d4bd;
  border-radius: 50%;
  background: #fff7f0;
  color: #ef7108;
  font-size: 1rem;
  transition: transform .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
}
.master-projects-module .project-card:hover .project-arrow {
  transform: translateX(3px);
  background: #ef7108;
  color: #fff;
  border-color: #ef7108;
}
.master-projects-module .project-meta-line {
  display: block;
  margin-bottom: 0;
}
.master-projects-module .project-year {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  margin-left: 8px;
  padding: 0 8px;
  border-radius: 999px;
  background: #fff4ea;
  color: #d96500;
  font-size: .67rem;
  font-weight: 850;
  vertical-align: middle;
}
.master-projects-module .project-featured {
  border-color: #f0c7a5;
  box-shadow: 0 18px 46px rgba(239,113,8,.12);
}
.master-projects-module .project-featured::before {
  content: "Destacado";
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 4;
  min-height: 27px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: #ef7108;
  color: #fff;
  font-size: .64rem;
  font-weight: 850;
  letter-spacing: .02em;
  box-shadow: 0 8px 20px rgba(239,113,8,.22);
}
.master-projects-module .project-empty {
  padding: 28px;
  border: 1px dashed #e5d6ca;
  border-radius: 16px;
  background: #fffaf6;
  color: #6b625b;
  text-align: center;
}

/* escenas reutilizando la lógica visual aprobada */
.master-projects-module .project-thumb-web {
  background: linear-gradient(145deg,#fff8f1,#f5eee8);
}
.master-projects-module .project-thumb-portal {
  background: linear-gradient(180deg,#f4e2d2 0%,#fff7f0 55%,#d8e1cf 55%,#85966d 100%);
}
.master-projects-module .project-thumb-system {
  background: linear-gradient(145deg,#1b1b1b,#2b2b2b);
}
.master-projects-module .project-desk {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 40%;
  background: linear-gradient(180deg,#e9dfd6 0%,#d7cec7 52%,#cfc6bf 52%,#dcd4cd 100%);
}
.master-projects-module .project-monitor {
  position: absolute;
  left: 50%;
  top: 28px;
  width: 58%;
  height: 64%;
  transform: translateX(-50%);
  border: 6px solid #313131;
  border-radius: 11px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 18px 30px rgba(38,26,17,.18);
}
.master-projects-module .project-monitor::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -30px;
  width: 14%;
  height: 24px;
  transform: translateX(-50%);
  background: #9cadb9;
}
.master-projects-module .project-monitor-screen,
.master-projects-module .portal-browser-screen,
.master-projects-module .system-table-screen {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.master-projects-module .project-monitor i,
.master-projects-module .portal-browser i {
  position: absolute;
  left: 14px;
  top: 12px;
  width: 56px;
  height: 12px;
  border-radius: 4px;
  background: linear-gradient(90deg,#ef7108 0 35%,#f5e7dc 35%);
  z-index: 2;
}
.master-projects-module .project-monitor b,
.master-projects-module .portal-browser b {
  position: absolute;
  left: 16px;
  top: 42px;
  width: 42%;
  height: 54px;
  border-radius: 7px;
  background: linear-gradient(135deg,#ffe4cd,#fffaf6);
  z-index: 2;
}
.master-projects-module .project-monitor em {
  position: absolute;
  right: 16px;
  top: 42px;
  width: 33%;
  height: 66px;
  border-radius: 7px;
  background: repeating-linear-gradient(#f4ebe4 0 10px,#fff 10px 18px);
  z-index: 2;
}
.master-projects-module .project-pot {
  position: absolute;
  right: 15%;
  bottom: 32px;
  width: 38px;
  height: 52px;
  border-radius: 0 0 10px 10px;
  background: #7e8b6d;
  box-shadow: inset 0 10px 0 #5d6f50;
}
.master-projects-module .project-pot:before,
.master-projects-module .project-pot:after {
  content: "";
  position: absolute;
  width: 18px;
  height: 10px;
  border-radius: 12px 12px 0 12px;
  background: #778f66;
  top: -4px;
}
.master-projects-module .project-pot:before { left: -7px; transform: rotate(-24deg); }
.master-projects-module .project-pot:after { right: -7px; transform: rotate(24deg) scaleX(-1); }
.master-projects-module .portal-sky,
.master-projects-module .portal-land,
.master-projects-module .portal-building,
.master-projects-module .portal-browser,
.master-projects-module .system-sidebar,
.master-projects-module .system-card,
.master-projects-module .system-table {
  position: absolute;
}
.master-projects-module .portal-sky {
  inset: 0 0 42% 0;
  background: linear-gradient(#f6d7bd,#fff7ef);
}
.master-projects-module .portal-land {
  left: 0;
  right: 0;
  bottom: 0;
  height: 44%;
  background: linear-gradient(#8da177,#667954);
}
.master-projects-module .portal-building {
  left: 27%;
  bottom: 20px;
  width: 32%;
  height: 76px;
  background: linear-gradient(#fff,#f1f1f1);
  box-shadow: inset 0 -16px 0 #dfe6eb;
}
.master-projects-module .portal-building::before {
  content: "";
  position: absolute;
  inset: 16px 10px 16px;
  background: repeating-linear-gradient(90deg,#9fb2c0 0 8px,transparent 8px 18px);
}
.master-projects-module .portal-browser {
  left: 10%;
  top: 26px;
  width: 66%;
  height: 66%;
  border: 5px solid #2b2b2b;
  border-radius: 11px;
  background: #fff8f2;
  overflow: hidden;
  box-shadow: 0 16px 30px rgba(42,28,17,.18);
}
.master-projects-module .portal-browser b {
  width: 56%;
  height: 16px;
  top: 48px;
  border-radius: 4px;
  background: #f3d8c2;
}
.master-projects-module .portal-browser em {
  position: absolute;
  left: 16px;
  top: 74px;
  right: 16px;
  height: 50px;
  border-radius: 7px;
  background: linear-gradient(135deg,rgba(239,113,8,.18),rgba(113,139,91,.28));
  z-index: 2;
}
.master-projects-module .system-sidebar {
  left: 14px;
  top: 16px;
  bottom: 18px;
  width: 72px;
  border-radius: 10px;
  background: #111;
}
.master-projects-module .system-sidebar:after {
  content: "";
  position: absolute;
  left: 16px;
  top: 26px;
  width: 32px;
  height: 6px;
  border-radius: 999px;
  background: #ef7108;
  box-shadow: 0 28px 0 #4a4a4a, 0 56px 0 #4a4a4a, 0 84px 0 #4a4a4a;
}
.master-projects-module .system-card {
  top: 26px;
  width: 72px;
  height: 54px;
  border: 1px solid rgba(239,113,8,.22);
  border-radius: 8px;
  background: #303030;
}
.master-projects-module .system-card.s1 { left: 102px; }
.master-projects-module .system-card.s2 { left: 186px; }
.master-projects-module .system-card.s3 { left: 270px; }
.master-projects-module .system-card:after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  height: 7px;
  border-radius: 999px;
  background: #ef7108;
}
.master-projects-module .system-table {
  left: 102px;
  right: 28px;
  top: 108px;
  bottom: 30px;
  border: 1px solid rgba(239,113,8,.16);
  border-radius: 8px;
  overflow: hidden;
  background: repeating-linear-gradient(#262626 0 16px,#323232 16px 17px);
}
.master-projects-module .project-scene-logo {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  min-width: 54px;
  min-height: 40px;
  border: 1px solid rgba(255,255,255,.82);
  border-radius: 11px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 12px 24px rgba(20,20,20,.12);
}
.master-projects-module .project-scene-logo img {
  display: block;
  max-width: 94px;
  max-height: 26px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.master-projects-module .project-scene-logo.web {
  left: 18px;
  bottom: 16px;
}
.master-projects-module .project-scene-logo.portal {
  left: 18px;
  bottom: 16px;
}
.master-projects-module .project-scene-logo.system {
  right: 20px;
  bottom: 22px;
  background: rgba(20,20,20,.88);
  border-color: rgba(239,113,8,.28);
}
.master-projects-module .project-scene-logo.system img { filter: brightness(1.04) contrast(1.02); }
.master-projects-module .project-placeholder {
  position: absolute;
  inset: 0;
}
.master-projects-module .project-placeholder--web {
  background: linear-gradient(145deg,#eef4f9,#dceaf4);
}
.master-projects-module .project-placeholder--portal {
  background: linear-gradient(135deg,rgba(239,113,8,.15),rgba(113,139,91,.24));
}
.master-projects-module .project-placeholder--system {
  background: linear-gradient(145deg,#262626,#343434);
}
.master-projects-module .project-fallback-mark {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%,-50%);
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border-radius: 18px;
  background: #171717;
  color: #ef7108;
  font-size: 1.8rem;
  font-weight: 950;
  box-shadow: 0 18px 36px rgba(20,20,20,.15);
}
@media (max-width:960px) {
  .master-projects-module .project-thumb { height: 205px; }
}
@media (max-width:620px) {
  .master-projects-module .project-thumb { height: 192px; }
  .master-projects-module .project-body { min-height: 0; padding: 20px 52px 22px 19px; }
  .master-projects-module .portal-browser { width: 70%; }
  .master-projects-module .system-card { width: 58px; }
  .master-projects-module .system-card.s2 { left: 172px; }
  .master-projects-module .system-card.s3 { left: 242px; }
  .master-projects-module .system-table { left: 96px; }
}


/* v0.10.2 - Ajuste final de tarjetas de proyectos reales */
.master-projects-module .project-monitor {
  width: 62%;
  height: 66%;
  top: 24px;
}
.master-projects-module .project-monitor-screen,
.master-projects-module .portal-browser-screen,
.master-projects-module .system-table-screen {
  z-index: 1;
}
.master-projects-module .project-monitor.has-shot > i,
.master-projects-module .project-monitor.has-shot > b,
.master-projects-module .project-monitor.has-shot > em,
.master-projects-module .portal-browser.has-shot > i,
.master-projects-module .portal-browser.has-shot > b,
.master-projects-module .portal-browser.has-shot > em {
  display: none;
}
.master-projects-module .project-thumb.has-shot .project-pot {
  display: none !important;
}
.master-projects-module .project-scene-logo { z-index: 5; }
.master-projects-module .project-body { min-height: 154px; }
@media (max-width:960px){ .master-projects-module .project-monitor { width:64%; } }
@media (max-width:620px){
  .master-projects-module .project-monitor { width:66%; }
  .master-projects-module .project-body { min-height:0; }
}


/* v0.10.3 - Alineación de variante Institución / portal con Sitio web */
.master-projects-module .project-thumb-portal {
  overflow: hidden;
}

/* El monitor del portal usa el mismo eje visual que el monitor web */
.master-projects-module .portal-browser {
  left: 50%;
  top: 24px;
  width: 62%;
  height: 66%;
  transform: translateX(-50%);
  border-width: 5px;
}

/* Mantener la escena institucional como fondo, sin mover el monitor */
.master-projects-module .portal-building {
  left: 50%;
  bottom: 16px;
  width: 28%;
  height: 66px;
  transform: translateX(-50%);
}
.master-projects-module .portal-land {
  height: 40%;
}

/* Logo en la misma línea visual que en Sitio web */
.master-projects-module .project-scene-logo.portal {
  left: 18px;
  right: auto;
  bottom: 16px;
}

/* Cuando existe captura real, la captura manda */
.master-projects-module .project-thumb-portal.has-shot .portal-building {
  opacity: .72;
}
.master-projects-module .portal-browser-screen {
  object-position: top center;
}

@media (max-width: 960px) {
  .master-projects-module .portal-browser {
    width: 64%;
  }
}

@media (max-width: 620px) {
  .master-projects-module .portal-browser {
    left: 50%;
    width: 66%;
    transform: translateX(-50%);
  }
  .master-projects-module .portal-building {
    width: 30%;
  }
}


/* v0.10.4 - Tipografía global Raleway */
body, button, input, textarea, select {
  font-family: "Raleway", Arial, sans-serif;
}
.site-nav a { font-weight: 700; }
.button { font-weight: 700; }
h1, h2, h3, h4, h5, h6,
.hero-copy h1, .section-heading h2, .about-copy h2,
.project-title, .service-card h3, .master-benefit h3 {
  font-family: "Raleway", Arial, sans-serif;
  font-weight: 800;
}
.eyebrow { font-weight: 800; }


/* v0.10.5 - Pulido premium de ¿Por qué elegirnos? */
.benefits-section {
  position: relative;
  overflow: hidden;
  padding: 82px 0 88px;
  background:
    radial-gradient(circle at 86% 12%, rgba(239,113,8,.08), transparent 26%),
    linear-gradient(180deg,#fff 0%,#fffaf6 100%);
  border-top: 1px solid #f3ece6;
}
.benefits-section::before {
  content: "";
  position: absolute;
  right: 5%;
  top: 44px;
  width: 86px;
  height: 86px;
  background-image: radial-gradient(circle, rgba(239,113,8,.24) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  opacity: .55;
  pointer-events: none;
}
.benefits-heading {
  position: relative;
  z-index: 1;
  margin-bottom: 34px;
}
.benefits-heading .eyebrow {
  margin-bottom: 10px;
}
.benefits-heading h2 {
  max-width: 620px;
  margin: 0;
  color: #171717;
  font-size: clamp(2rem,3vw,2.9rem);
  line-height: 1.02;
  letter-spacing: -.04em;
}
.master-benefits {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 16px;
}
.master-benefit,
.master-benefit:first-child,
.master-benefit:last-child {
  position: relative;
  display: block;
  min-height: 238px;
  padding: 24px 22px 22px;
  overflow: hidden;
  border: 1px solid #eee2d8;
  border-radius: 18px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 14px 34px rgba(52,31,16,.055);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.master-benefit::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg,#ef7108,#ff9d4c);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}
.master-benefit:hover {
  transform: translateY(-5px);
  border-color: #f1c8a8;
  box-shadow: 0 24px 48px rgba(65,38,17,.105);
}
.master-benefit:hover::after {
  transform: scaleX(1);
}
.benefit-number {
  position: absolute;
  top: 18px;
  right: 18px;
  color: #eaded4;
  font-size: 1rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .08em;
}
.benefit-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  border: 1px solid #f2d8c3;
  border-radius: 15px;
  background: linear-gradient(145deg,#fff8f1,#fff);
  color: #ef7108;
  box-shadow: 0 10px 24px rgba(239,113,8,.08);
}
.benefit-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.master-benefit h3 {
  margin: 0 0 10px;
  color: #1b1b1b;
  font-size: 1.05rem;
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -.018em;
}
.master-benefit p {
  margin: 0;
  color: #717171;
  font-size: .86rem;
  line-height: 1.6;
}
@media (max-width:960px) {
  .benefits-section {
    padding: 72px 0 76px;
  }
  .master-benefits {
    grid-template-columns: repeat(2,1fr);
  }
  .master-benefit,
  .master-benefit:first-child,
  .master-benefit:last-child {
    min-height: 214px;
  }
}
@media (max-width:620px) {
  .benefits-section {
    padding: 62px 0 66px;
  }
  .benefits-heading {
    margin-bottom: 26px;
  }
  .master-benefits {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .master-benefit,
  .master-benefit:first-child,
  .master-benefit:last-child {
    min-height: 0;
    padding: 20px 19px 21px;
  }
  .benefit-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 18px;
  }
}


/* v0.10.6 - CTA final + Footer */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: 72px 0;
  background:
    radial-gradient(circle at 84% 18%, rgba(239,113,8,.26), transparent 26%),
    radial-gradient(circle at 12% 90%, rgba(239,113,8,.09), transparent 24%),
    linear-gradient(112deg,#191919 0%,#0e0e0e 68%,#19130f 100%);
}
.cta-section::before {
  content: "";
  position: absolute;
  left: 4%;
  top: 28px;
  width: 82px;
  height: 82px;
  background-image: radial-gradient(circle, rgba(255,255,255,.15) 1.4px, transparent 1.4px);
  background-size: 16px 16px;
  opacity: .55;
}
.cta-section::after {
  content: "";
  position: absolute;
  right: -110px;
  top: -130px;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(239,113,8,.13);
  border-radius: 50%;
  box-shadow:
    0 0 0 64px rgba(239,113,8,.025),
    0 0 0 128px rgba(239,113,8,.018);
  background: transparent;
}
.home-cta-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0,1fr) 390px;
  gap: 72px;
  align-items: center;
}
.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 13px;
  color: #ff9a45;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .13em;
}
.cta-eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #ef7108;
}
.home-cta-copy h2 {
  max-width: 720px;
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(2.15rem,3.5vw,3.5rem);
  line-height: 1;
  letter-spacing: -.045em;
}
.home-cta-copy p {
  max-width: 640px;
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 1rem;
  line-height: 1.65;
}
.cta-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 26px;
  color: rgba(255,255,255,.76);
  font-size: .72rem;
  font-weight: 700;
}
.cta-trust span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}
.cta-trust i {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(239,113,8,.45);
  border-radius: 50%;
  color: #ff9a45;
  font-style: normal;
  font-size: .68rem;
}
.home-cta-actions {
  display: block;
}
.cta-action-card {
  padding: 24px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  background: rgba(255,255,255,.055);
  box-shadow: 0 24px 50px rgba(0,0,0,.18);
  backdrop-filter: blur(8px);
}
.cta-action-kicker {
  display: block;
  margin-bottom: 6px;
  color: #ff9a45;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.cta-action-card strong {
  display: block;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.2;
}
.cta-action-card small {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,.66);
  font-size: .78rem;
  line-height: 1.55;
}
.home-whatsapp-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 50px;
  margin-top: 20px;
  padding: 0 18px;
  border-radius: 11px;
  background: #20b95b;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(0,0,0,.22);
  transition: transform .2s ease, filter .2s ease;
}
.home-whatsapp-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}
.home-whatsapp-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.home-whatsapp-button b {
  margin-left: auto;
  font-size: 1rem;
}

/* Footer */
.site-footer {
  padding: 64px 0 0;
  border-top: 0;
  background: #fff;
  color: #676767;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr .85fr 1.05fr 1.15fr;
  gap: 58px;
  align-items: start;
  padding-bottom: 48px;
}
.footer-brand {
  max-width: 340px;
}
.footer-logo {
  height: 64px;
  max-width: 315px;
}
.footer-brand p {
  max-width: 315px;
  margin: 18px 0 0;
  color: #747474;
  font-size: .88rem;
  line-height: 1.65;
}
.footer-eyebrow {
  display: block;
  margin-bottom: 8px;
  color: #ef7108;
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .12em;
}
.site-footer h3 {
  margin: 0 0 17px;
  color: #1c1c1c;
  font-size: .91rem;
  font-weight: 800;
  letter-spacing: -.01em;
}
.footer-links,
.footer-contact {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-footer li {
  margin: 0;
  color: #747474;
  font-size: .82rem;
}
.footer-links a,
.footer-contact a {
  color: #686868;
  transition: color .2s ease, transform .2s ease;
}
.footer-links a:hover,
.footer-contact a:hover {
  color: #ef7108;
}
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 9px;
}
.footer-contact-icon {
  display: grid;
  place-items: center;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #fff5ed;
  color: #ef7108;
}
.footer-contact-icon svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer-note {
  margin: 0 0 17px;
  color: #747474;
  font-size: .82rem;
  line-height: 1.62;
}
.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ef7108;
  font-size: .8rem;
  font-weight: 800;
}
.footer-cta:hover {
  gap: 12px;
}
.footer-bottom {
  display: flex !important;
  justify-content: center !important;
  align-items: center;
  width: 100%;
  margin-top: 0;
  padding: 20px 0 22px;
  border-top: 1px solid #eee8e2;
  color: #97908a;
  text-align: center;
}
.footer-bottom small {
  margin: 0 auto !important;
  font-size: .71rem;
  letter-spacing: .01em;
}

@media (max-width: 960px) {
  .cta-section {
    padding: 64px 0;
  }
  .home-cta-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .cta-action-card {
    max-width: 520px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px 48px;
  }
}

@media (max-width: 620px) {
  .cta-section {
    padding: 56px 0;
  }
  .home-cta-grid {
    gap: 28px;
  }
  .home-cta-copy h2 {
    font-size: clamp(2rem,10vw,2.8rem);
  }
  .cta-trust {
    display: grid;
    gap: 9px;
  }
  .cta-action-card {
    padding: 20px;
    border-radius: 17px;
  }
  .site-footer {
    padding-top: 48px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-bottom: 36px;
  }
  .footer-brand {
    max-width: 100%;
  }
  .footer-logo {
    height: 58px;
    max-width: 280px;
  }
}


/* v0.10.7 - Enlace de correo debajo del CTA de WhatsApp */
.cta-email-link {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 13px;
  padding: 11px 12px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  color: rgba(255,255,255,.82);
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.cta-email-link:hover {
  transform: translateY(-1px);
  border-color: rgba(239,113,8,.30);
  background: rgba(255,255,255,.035);
}
.cta-email-link svg {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #ff9a45;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cta-email-link span {
  min-width: 0;
  display: block;
}
.cta-email-link small,
.cta-email-link strong {
  display: block;
}
.cta-email-link small {
  color: rgba(255,255,255,.52);
  font-size: .66rem;
  line-height: 1.15;
  font-weight: 600;
}
.cta-email-link strong {
  margin-top: 3px;
  color: rgba(255,255,255,.88);
  font-size: .72rem;
  line-height: 1.25;
  font-weight: 700;
  overflow-wrap: anywhere;
}
@media (max-width:620px) {
  .cta-email-link {
    padding: 10px 11px;
  }
  .cta-email-link strong {
    font-size: .68rem;
  }
}


/* v0.10.8 - Modal de contacto + WhatsApp real */
.cta-email-link {
  width: 100%;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
}
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
}
.contact-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,.72);
  backdrop-filter: blur(7px);
}
.contact-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(720px,100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: 32px;
  border: 1px solid rgba(239,113,8,.24);
  border-radius: 22px;
  background:
    radial-gradient(circle at 90% 6%, rgba(239,113,8,.13), transparent 25%),
    #171717;
  box-shadow: 0 34px 80px rgba(0,0,0,.38);
  color: #fff;
}
.contact-modal-close {
  position: absolute;
  top: 15px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  color: #fff;
  font-family: inherit;
  font-size: 1.45rem;
  cursor: pointer;
}
.contact-modal-eyebrow {
  display: block;
  margin-bottom: 9px;
  color: #ff9340;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .13em;
}
.contact-modal h2 {
  margin: 0 46px 9px 0;
  color: #fff;
  font-size: clamp(1.75rem,3vw,2.45rem);
  line-height: 1.05;
  letter-spacing: -.04em;
}
.contact-modal-dialog > p {
  margin: 0 0 24px;
  color: rgba(255,255,255,.66);
  font-size: .86rem;
  line-height: 1.55;
}
.contact-modal-dialog > p strong {
  color: rgba(255,255,255,.88);
}
.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 15px;
}
.contact-form label {
  display: grid;
  gap: 7px;
}
.contact-form label > span {
  color: rgba(255,255,255,.72);
  font-size: .72rem;
  font-weight: 700;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  color: #fff;
  font: inherit;
  outline: none;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.contact-form input {
  height: 45px;
  padding: 0 13px;
}
.contact-form textarea {
  min-height: 125px;
  padding: 12px 13px;
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(239,113,8,.65);
  background: rgba(255,255,255,.08);
  box-shadow: 0 0 0 3px rgba(239,113,8,.10);
}
.contact-form-wide {
  grid-column: 1 / -1;
}
.contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  margin-top: 19px;
  padding: 0 20px;
  border: 0;
  border-radius: 10px;
  background: #ef7108;
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(239,113,8,.20);
}
.contact-submit span {
  font-size: 1rem;
}
.contact-form-status {
  margin-bottom: 18px;
  padding: 11px 13px;
  border-radius: 9px;
  font-size: .78rem;
  font-weight: 700;
}
.contact-form-status.is-success {
  border: 1px solid rgba(32,185,91,.28);
  background: rgba(32,185,91,.11);
  color: #77e39f;
}
.contact-form-status.is-error {
  border: 1px solid rgba(255,115,100,.28);
  background: rgba(255,115,100,.10);
  color: #ff9e94;
}
.contact-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
body.contact-modal-open {
  overflow: hidden;
}
@media (max-width:620px) {
  .contact-modal {
    padding: 10px;
  }
  .contact-modal-dialog {
    max-height: calc(100vh - 20px);
    padding: 25px 18px 20px;
    border-radius: 18px;
  }
  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }
  .contact-form-wide {
    grid-column: auto;
  }
  .contact-submit {
    width: 100%;
  }
}


/* v0.10.9 - Corrección visual del botón secundario de correo */
.cta-email-link {
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
  background: rgba(255,255,255,.045) !important;
  border: 1px solid rgba(255,255,255,.11) !important;
  color: rgba(255,255,255,.86) !important;
  outline: 0;
  box-shadow: none;
}
.cta-email-link:hover,
.cta-email-link:focus-visible {
  background: rgba(255,255,255,.075) !important;
  border-color: rgba(239,113,8,.42) !important;
}
.cta-email-link small {
  color: rgba(255,255,255,.55) !important;
}
.cta-email-link strong {
  color: rgba(255,255,255,.92) !important;
}
.cta-email-link svg {
  stroke: #ff9842 !important;
}


/* v0.10.11 - Footer final */
.site-footer {
  position: relative;
  overflow: hidden;
  padding-top: 58px;
  background:
    radial-gradient(circle at 12% 0%, rgba(239,113,8,.045), transparent 24%),
    linear-gradient(180deg,#fff 0%,#fdfbf9 100%);
  border-top: 1px solid #eee7e0;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(var(--container),calc(100% - 40px));
  height: 2px;
  transform: translateX(-50%);
  background: linear-gradient(90deg,transparent,#ef7108 20%,#ef7108 36%,transparent 68%);
  opacity: .8;
}
.footer-grid {
  grid-template-columns: 1.42fr .78fr 1fr 1.15fr;
  gap: 52px;
  padding-bottom: 42px;
}
.footer-brand {
  max-width: 355px;
}
.footer-logo {
  height: 62px;
}
.footer-brand p {
  margin-top: 16px;
  color: #69645f;
  font-size: .84rem;
  line-height: 1.68;
}
.footer-brand-pill {
  display: inline-flex;
  margin-top: 17px;
  padding: 7px 10px;
  border: 1px solid #eee5dd;
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  color: #8c8178;
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .015em;
}
.footer-eyebrow {
  margin-bottom: 7px;
  font-size: .61rem;
}
.site-footer h3 {
  margin-bottom: 15px;
  font-size: .88rem;
}
.footer-links {
  gap: 8px;
}
.footer-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #68635f;
  font-size: .79rem;
  text-decoration: none;
}
.footer-links a::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #d8cec5;
  transition: background .2s ease, transform .2s ease;
}
.footer-links a:hover::before {
  background: #ef7108;
  transform: scale(1.35);
}
.footer-contact {
  gap: 9px;
}
.footer-contact li {
  min-height: 30px;
  color: #6c6762;
  font-size: .79rem;
}
.footer-contact-icon {
  flex-basis: 27px;
  width: 27px;
  height: 27px;
  border: 1px solid #f2e5da;
  background: #fff8f2;
}
.footer-contact-button,
.footer-cta {
  -webkit-appearance: none;
  appearance: none;
  padding: 0;
  border: 0;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
}
.footer-contact-button {
  color: #68635f;
  font-size: .79rem;
  text-align: left;
}
.footer-contact-button:hover,
.footer-contact-button:focus-visible {
  color: #ef7108;
}
.footer-solutions {
  padding-left: 20px;
  border-left: 1px solid #eee8e2;
}
.footer-note {
  max-width: 255px;
  margin-bottom: 14px;
  color: #706a65;
  font-size: .79rem;
  line-height: 1.62;
}
.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ef7108;
  font-size: .78rem;
  font-weight: 800;
}
.footer-cta:hover {
  gap: 11px;
}
.footer-bottom {
  justify-content: space-between !important;
  width: min(var(--container),calc(100% - 40px));
  padding: 17px 0 20px;
  color: #938b84;
}
.footer-bottom small {
  margin: 0 !important;
}
.footer-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .68rem;
  font-weight: 600;
  color: #918981;
}
.footer-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ef7108;
  box-shadow: 0 0 0 4px rgba(239,113,8,.09);
}

@media (max-width:960px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px 44px;
  }
  .footer-solutions {
    padding-left: 0;
    border-left: 0;
  }
}
@media (max-width:620px) {
  .site-footer {
    padding-top: 44px;
  }
  .site-footer::before {
    width: calc(100% - 30px);
  }
  .footer-grid {
    gap: 27px;
    padding-bottom: 30px;
  }
  .footer-brand-pill {
    margin-top: 14px;
  }
  .footer-bottom {
    width: calc(100% - 30px);
    flex-direction: column !important;
    gap: 8px;
    padding: 16px 0 19px;
  }
}


/* v0.10.12 - Íconos de contacto más limpios */
.footer-contact-icon svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: #ef7108;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* v0.10.13 - Ajuste fino final del footer */
.site-footer {
  padding-top: 52px;
}

.footer-grid {
  padding-bottom: 34px;
}

.footer-logo {
  height: 57px;
}

.footer-solutions h3 {
  font-weight: 700;
  letter-spacing: -.015em;
}

.footer-bottom {
  justify-content: center !important;
  align-items: center;
  gap: 10px;
  padding: 14px 0 16px;
  text-align: center;
}

.footer-bottom small,
.footer-status {
  margin: 0 !important;
}

.footer-bottom-separator {
  color: #d2c8bf;
  font-size: .72rem;
  line-height: 1;
}

.footer-status {
  font-size: .67rem;
}

@media (max-width:620px) {
  .site-footer {
    padding-top: 40px;
  }

  .footer-grid {
    padding-bottom: 26px;
  }

  .footer-logo {
    height: 54px;
  }

  .footer-bottom {
    flex-direction: row !important;
    flex-wrap: wrap;
    gap: 6px 9px;
    padding: 13px 0 15px;
  }

  .footer-bottom-separator {
    display: none;
  }

  .footer-status {
    width: 100%;
    justify-content: center;
  }
}


/* v0.10.14 - Cierre limpio del footer */
.footer-bottom {
  justify-content: center !important;
  text-align: center;
}
.footer-bottom-separator,
.footer-status {
  display: none !important;
}


/* v0.10.15 - WhatsApp consistente con el resto del sitio */
.footer-contact-icon-wa {
  display: inline-grid;
  place-items: center;
  color: #ef7108;
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: 1;
}


/* v0.10.16 - Ícono real y limpio en el botón flotante de WhatsApp */
.floating-wa-icon {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
}


/* v0.10.17 - Corrección definitiva del botón flotante de WhatsApp */
.whatsapp-float {
  font-size: 0;
}
.whatsapp-float-icon {
  width: 28px;
  height: 28px;
  display: block;
  fill: none;
  stroke: #fff;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* v0.10.18 - Ícono real de WhatsApp también en el footer */
.footer-contact-icon-wa {
  font-size: 0;
}
.footer-wa-icon {
  width: 15px;
  height: 15px;
  display: block;
  fill: none;
  stroke: #ef7108;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* v0.10.19 - Responsive final + favicon */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

img, svg {
  max-width: 100%;
}

@media (max-width: 1180px) {
  .container {
    width: min(100% - 40px, var(--container));
  }

  .hero-inner,
  .about-grid,
  .cta-home-inner {
    gap: 36px;
  }

  .hero-copy h1 {
    font-size: clamp(2.55rem, 5vw, 4.6rem);
  }
}

@media (max-width: 960px) {
  .site-header .container,
  .header-inner {
    min-height: 72px;
  }

  .brand-logo {
    max-width: 205px;
    height: auto;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-inner,
  .about-grid,
  .cta-home-inner {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-visual,
  .about-visual {
    width: min(100%, 760px);
    margin-inline: auto;
  }

  .services-grid,
  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

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

  .cta-action-card {
    width: min(100%, 620px);
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  .brand-logo {
    max-width: 180px;
  }

  .hero {
    padding-top: 30px;
    padding-bottom: 46px;
  }

  .hero-copy h1 {
    font-size: clamp(2.25rem, 10vw, 3.5rem);
    line-height: .98;
  }

  .hero-copy p,
  .about-copy p,
  .cta-home-copy p {
    font-size: .94rem;
    line-height: 1.65;
  }

  .hero-actions {
    flex-wrap: wrap;
    gap: 10px;
  }

  .hero-actions .button,
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-benefits {
    gap: 11px 16px;
  }

  .services-grid,
  .projects-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding-block: 58px;
  }

  .section-title,
  .about-copy h2,
  .cta-home-copy h2 {
    font-size: clamp(1.9rem, 8vw, 2.8rem);
  }

  .service-card,
  .benefit-card,
  .project-card {
    min-width: 0;
  }

  .cta-home {
    padding-block: 58px;
  }

  .cta-home-inner {
    gap: 28px;
  }

  .cta-trust {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .cta-action-card {
    padding: 22px;
  }

  .home-whatsapp-button,
  .cta-email-link {
    width: 100%;
  }

  .contact-modal-dialog {
    width: min(100%, 620px);
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 22px, var(--container));
  }

  .brand-logo {
    max-width: 158px;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 11vw, 2.85rem);
  }

  .hero-eyebrow,
  .section-eyebrow,
  .footer-eyebrow {
    letter-spacing: .10em;
  }

  .hero-benefits {
    display: grid;
    grid-template-columns: 1fr;
  }

  .service-card,
  .benefit-card {
    padding: 21px;
  }

  .project-card {
    border-radius: 16px;
  }

  .contact-modal {
    padding: 8px;
  }

  .contact-modal-dialog {
    padding: 24px 16px 18px;
  }

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

  .footer-brand,
  .footer-note {
    max-width: none;
  }
}


/* v0.10.20 - Header siempre visible + compensación de anclas */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1200;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.site-header.is-scrolled {
  box-shadow: 0 8px 28px rgba(27,22,18,.08);
  border-bottom-color: rgba(230,223,217,.9);
}

/* Evita que el header tape el inicio de las secciones al navegar con anclas */
[id] {
  scroll-margin-top: 96px;
}

html {
  scroll-behavior: smooth;
}

@media (max-width:760px) {
  [id] {
    scroll-margin-top: 82px;
  }
}


/* v0.10.21 - Header fijo real */
.site-header {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 5000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Compensación para que el contenido no quede debajo del header */
body.master-site {
  padding-top: 76px;
}

/* Anclas: dejan aire suficiente debajo del header fijo */
[id] {
  scroll-margin-top: 94px;
}

/* Menú móvil desplegado por debajo del header */
@media (max-width: 760px) {
  body.master-site {
    padding-top: 72px;
  }

  [id] {
    scroll-margin-top: 86px;
  }

  .site-nav.is-open {
    top: 72px;
  }
}

@media (max-width: 520px) {
  body.master-site {
    padding-top: 68px;
  }

  [id] {
    scroll-margin-top: 82px;
  }
}


/* v0.10.22 - Página completa de Proyectos */
.projects-archive-hero {
  padding: 82px 0 34px;
  background:
    radial-gradient(circle at 88% 12%, rgba(239,113,8,.08), transparent 24%),
    linear-gradient(180deg,#fff 0%,#fcfaf8 100%);
  border-bottom: 1px solid #eee8e2;
}
.projects-archive-hero .container {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.projects-archive-hero h1 {
  margin: 10px 0 14px;
  font-size: clamp(2.6rem,5vw,4.7rem);
  line-height: .98;
  letter-spacing: -.045em;
  color: #1c1917;
}
.projects-archive-hero p {
  max-width: 760px;
  margin: 0 auto;
  color: #6e6862;
  font-size: .98rem;
  line-height: 1.72;
}
.projects-archive-section {
  padding: 54px 0 78px;
  background: #fff;
}
.projects-archive-section .master-projects-module .projects-heading {
  display: none;
}
.projects-archive-section .projects-grid {
  grid-template-columns: repeat(3,minmax(0,1fr));
}
.project-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 30px;
}
.project-filter {
  appearance: none;
  border: 1px solid #e9e1da;
  background: #fff;
  color: #716a64;
  border-radius: 999px;
  padding: 9px 14px;
  font: inherit;
  font-size: .73rem;
  font-weight: 800;
  cursor: pointer;
  transition: .2s ease;
}
.project-filter:hover,
.project-filter.is-active {
  border-color: #ef7108;
  background: #ef7108;
  color: #fff;
}
.project-card.is-filtered-out {
  display: none !important;
}

@media (max-width:960px) {
  .projects-archive-section .projects-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
}
@media (max-width:620px) {
  .projects-archive-hero {
    padding: 54px 0 28px;
  }
  .projects-archive-section {
    padding: 38px 0 58px;
  }
  .projects-archive-section .projects-grid {
    grid-template-columns: 1fr;
  }
  .project-filters {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
    scrollbar-width: thin;
  }
  .project-filter {
    flex: 0 0 auto;
  }
}


/* v0.10.23 - Slider de proyectos en Home */
.master-projects-slider {
  position: relative;
}

.master-projects-slider .projects-slider-viewport {
  overflow: hidden;
}

.master-projects-slider .projects-slider-track {
  display: flex;
  gap: 24px;
  transition: transform .42s ease;
  will-change: transform;
}

.master-projects-slider .project-card {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
}

.projects-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 26px;
}

.projects-slider-arrow {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid #eadfd6;
  border-radius: 50%;
  background: #fff;
  color: #ef7108;
  font: inherit;
  font-size: 1.1rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.projects-slider-arrow:hover {
  transform: translateY(-1px);
  border-color: #ef7108;
  background: #fff8f2;
}

.projects-slider-arrow:disabled {
  opacity: .35;
  cursor: default;
  transform: none;
}

.projects-slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.projects-slider-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #d7cdc5;
  cursor: pointer;
  transition: width .2s ease, border-radius .2s ease, background .2s ease;
}

.projects-slider-dot.is-active {
  width: 22px;
  border-radius: 999px;
  background: #ef7108;
}

@media (max-width:960px) {
  .master-projects-slider .project-card {
    flex-basis: calc((100% - 20px) / 2);
  }

  .master-projects-slider .projects-slider-track {
    gap: 20px;
  }
}

@media (max-width:620px) {
  .master-projects-slider .project-card {
    flex-basis: 100%;
  }

  .master-projects-slider .projects-slider-track {
    gap: 14px;
  }

  .projects-slider-controls {
    margin-top: 20px;
  }
}
