:root {
  --bg: #f7fafc;
  --bg-soft: #edf5f8;
  --panel: rgba(255,255,255,.88);
  --panel-2: #ffffff;
  --text: #10202d;
  --muted: #607383;
  --line: rgba(16,32,45,.11);
  --green: #35c86f;
  --green-2: #20a85a;
  --blue: #278bd2;
  --red: #e55353;
  --orange: #f07c3d;
  --shadow: 0 20px 55px rgba(39,72,96,.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(1160px, calc(100% - 36px)); margin: 0 auto; }
.section { padding: 110px 0; position: relative; }
.noise {
  position: fixed; inset: 0; pointer-events: none; opacity: .035; z-index: 100;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  border-bottom: 1px solid transparent;
  transition: .3s ease;
}
.header.scrolled {
  background: rgba(255,255,255,.90);
  backdrop-filter: blur(18px);
  border-color: var(--line);
}
.nav { height: 78px; display: flex; align-items: center; justify-content: space-between; }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Space Grotesk", sans-serif;
  flex: 0 0 auto;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: 54px !important;
  height: 54px !important;
  min-width: 54px;
  max-width: 54px;
  min-height: 54px;
  max-height: 54px;
  object-fit: contain;
  object-position: center;
  border-radius: 50%;
  flex: 0 0 54px;
  overflow: hidden;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.35));
}

.footer .brand-logo {
  width: 66px !important;
  height: 66px !important;
  min-width: 66px;
  max-width: 66px;
  min-height: 66px;
  max-height: 66px;
  flex-basis: 66px;
}

.brand-mark {
  width: 42px; height: 42px; display: grid; place-items: center;
  border: 1px solid rgba(119,255,121,.45); border-radius: 12px;
  color: var(--green); font-weight: 800; background: rgba(119,255,121,.07);
  box-shadow: inset 0 0 20px rgba(119,255,121,.08);
}
.brand-text { font-size: .9rem; letter-spacing: .05em; }
.brand-text strong { color: var(--green); }
.nav-links { display: flex; align-items: center; gap: 26px; font-size: .92rem; }
.nav-links > a:not(.btn) { color: #425766; }
.nav-links > a:not(.btn):hover { color: var(--green); }
.menu-toggle {
  display: none; border: 0; background: transparent; color: var(--text); font-size: 1.7rem;
}

.hero {
  min-height: 100vh; padding-top: 110px; display: flex; align-items: center;
  background:
    radial-gradient(circle at 75% 30%, rgba(71,168,255,.14), transparent 30%),
    radial-gradient(circle at 20% 70%, rgba(119,255,121,.09), transparent 32%),
    linear-gradient(180deg, #080b10 0%, #0b1017 100%);
  overflow: hidden;
}
.hero-grid {
  position: absolute; inset: 0; opacity: .11;
  background-image: linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, transparent, black 15%, black 80%, transparent);
}
.hero-content {
  position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 70px; align-items: center;
}
.status-pill {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 13px;
  border: 1px solid var(--line); background: rgba(255,255,255,.035);
  border-radius: 999px; color: #334957; font-size: .82rem; margin-bottom: 26px;
}
.status-dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 14px var(--green);
}
.eyebrow {
  margin: 0 0 12px; color: var(--green); font-weight: 800; letter-spacing: .16em;
  font-size: .75rem;
}
.eyebrow.danger { color: #ff8a65; }
h1, h2, h3 { font-family: "Space Grotesk", sans-serif; line-height: 1.05; margin-top: 0; }
h1 { font-size: clamp(3.5rem, 7vw, 7rem); letter-spacing: -.065em; margin-bottom: 22px; }
h2 { font-size: clamp(2.2rem, 4.5vw, 4.3rem); letter-spacing: -.045em; margin-bottom: 18px; }
h3 { font-size: 1.45rem; margin-bottom: 14px; }
.hero-lead { max-width: 720px; color: #526b7b; font-size: 1.12rem; }
.hero-actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.btn {
  min-height: 50px; padding: 0 22px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid transparent; font-weight: 800; transition: .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--green); color: #061008; box-shadow: 0 14px 35px rgba(119,255,121,.18); }
.btn-primary:hover { background: #9aff9b; }
.btn-secondary { border-color: var(--line); background: rgba(255,255,255,.035); }
.btn-secondary:hover { border-color: rgba(119,255,121,.4); }
.btn-small { min-height: 42px; padding: 0 16px; }
.btn-whatsapp { background: var(--green); color: #071009; }
.btn-danger { background: linear-gradient(135deg, var(--red), var(--orange)); color: var(--text); }
.btn-full { width: 100%; }
.hero-meta {
  display: flex; gap: 36px; margin-top: 42px; flex-wrap: wrap;
}
.hero-meta div { display: flex; flex-direction: column; }
.hero-meta strong { font-size: .95rem; }
.hero-meta span { font-size: .78rem; color: var(--muted); }

.hero-panel { min-height: 520px; position: relative; display: grid; place-items: center; }
.terminal {
  width: min(100%, 500px); border: 1px solid var(--line); border-radius: 20px;
  background: rgba(9,14,20,.92); box-shadow: var(--shadow); overflow: hidden;
  transform: perspective(900px) rotateY(-5deg) rotateX(2deg);
}
.terminal-head {
  height: 48px; border-bottom: 1px solid var(--line); display: flex; align-items: center;
  gap: 8px; padding: 0 16px; position: relative;
}
.terminal-head span { width: 10px; height: 10px; border-radius: 50%; background: #ff5f57; }
.terminal-head span:nth-child(2) { background: #ffbd2e; }
.terminal-head span:nth-child(3) { background: #28c840; }
.terminal-head small { position: absolute; left: 50%; transform: translateX(-50%); color: #7f8b98; }
.terminal-body {
  min-height: 320px; padding: 30px; font-family: Consolas, monospace; color: #405666; position: relative;
}
.terminal-body p { margin: 0 0 20px; }
.cmd, .ok { color: var(--green); }
.warn { color: var(--orange); }
.scan-bar {
  height: 2px; background: linear-gradient(90deg, transparent, var(--green), transparent);
  box-shadow: 0 0 16px var(--green); animation: scan 3s linear infinite;
}
@keyframes scan { 0% { transform: translateY(-220px); } 100% { transform: translateY(80px); } }
.floating-card {
  position: absolute; display: flex; gap: 12px; align-items: center;
  background: rgba(20,28,39,.88); backdrop-filter: blur(14px);
  border: 1px solid var(--line); border-radius: 15px; padding: 14px 16px; box-shadow: var(--shadow);
  animation: float 4s ease-in-out infinite;
}
.floating-card span { font-size: 1.4rem; }
.floating-card div { display: flex; flex-direction: column; }
.floating-card small { color: var(--muted); font-size: .7rem; }
.fc-1 { left: -10px; bottom: 80px; }
.fc-2 { right: -15px; top: 80px; animation-delay: -2s; }
@keyframes float { 50% { transform: translateY(-10px); } }

.section-heading { max-width: 760px; margin-bottom: 50px; }
.section-heading > p:last-child { color: var(--muted); }
.problem-picker { background: transparent; }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.problem-card {
  text-align: left; border: 1px solid var(--line); color: var(--text); background: var(--panel);
  border-radius: 16px; padding: 22px; transition: .25s ease;
}
.problem-card:hover { transform: translateY(-5px); border-color: rgba(119,255,121,.42); background: #131d28; }
.problem-card span { font-size: 1.6rem; display: block; margin-bottom: 14px; }
.problem-card strong, .problem-card small { display: block; }
.problem-card small { color: var(--muted); margin-top: 4px; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  border: 1px solid var(--line); background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.018));
  border-radius: 22px; padding: 30px; min-height: 430px; display: flex; flex-direction: column;
  transition: .3s ease;
}
.service-card:hover { transform: translateY(-7px); border-color: rgba(71,168,255,.35); }
.service-card.featured { border-color: rgba(119,255,121,.25); }
.service-icon { font-size: 2rem; margin-bottom: 22px; }
.service-tag { font-size: .68rem; letter-spacing: .15em; color: var(--green); font-weight: 800; }
.service-card p, .service-card li { color: var(--muted); }
.service-card ul { padding-left: 18px; margin-bottom: 26px; }
.service-card a { margin-top: auto; color: var(--green); font-weight: 800; }

.vampire {
  background:
    radial-gradient(circle at 80% 50%, rgba(255,90,95,.16), transparent 30%),
    #090b10;
}
.vampire-wrap {
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; align-items: center;
  border: 1px solid rgba(255,90,95,.2); border-radius: 28px; padding: 60px;
  background: linear-gradient(135deg, rgba(255,90,95,.055), rgba(255,255,255,.015));
}
.vampire-lead { color: #526878; font-size: 1.1rem; }
.vampire-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 28px 0; }
.fine-print { color: var(--muted); font-size: .85rem; }
.clock-card {
  min-height: 360px; border: 1px solid rgba(255,90,95,.25); border-radius: 22px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: rgba(255,90,95,.035); text-align: center; padding: 30px;
  box-shadow: inset 0 0 80px rgba(255,90,95,.04);
}
.clock-card small { color: #ff9f9f; letter-spacing: .18em; }
.clock-card strong { font-family: "Space Grotesk"; font-size: 3.5rem; }
.clock-card span { color: var(--muted); }
.clock-card p { max-width: 280px; color: var(--muted); }

.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.steps article { border-top: 1px solid var(--line); padding: 22px 10px 0 0; }
.steps span { color: var(--green); font-family: "Space Grotesk"; font-weight: 800; }
.steps p { color: var(--muted); font-size: .9rem; }

.guarantee-card {
  border: 1px solid rgba(119,255,121,.18); border-radius: 24px; padding: 50px;
  background: linear-gradient(135deg, rgba(119,255,121,.07), rgba(71,168,255,.04));
  display: flex; gap: 30px; align-items: center;
}
.guarantee-badge {
  width: 110px; height: 110px; min-width: 110px; display: grid; place-items: center;
  border-radius: 50%; border: 1px solid rgba(119,255,121,.3); color: var(--green);
  font-size: 2.6rem; font-weight: 800; box-shadow: inset 0 0 30px rgba(119,255,121,.08);
}
.guarantee-card h2 { font-size: clamp(2rem, 4vw, 3.7rem); }

.contact { background: transparent; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: start; }
.contact-links { display: grid; gap: 14px; margin-top: 28px; }
.contact-link {
  border: 1px solid var(--line); border-radius: 15px; padding: 16px;
  display: flex; align-items: center; gap: 16px; background: rgba(255,255,255,.025);
}
.contact-link > span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; background: rgba(119,255,121,.08); color: var(--green); font-weight: 900; }
.contact-link div { display: flex; flex-direction: column; }
.contact-link small { color: var(--muted); }
.diagnostic-form {
  border: 1px solid var(--line); background: var(--panel); border-radius: 22px; padding: 30px;
}
.diagnostic-form label { display: block; font-size: .84rem; font-weight: 700; margin-bottom: 16px; }
.diagnostic-form input, .diagnostic-form select, .diagnostic-form textarea {
  width: 100%; margin-top: 8px; border: 1px solid var(--line); border-radius: 11px;
  background: #ffffff; color: var(--text); padding: 14px; outline: none;
}
.diagnostic-form input:focus, .diagnostic-form select:focus, .diagnostic-form textarea:focus { border-color: rgba(119,255,121,.45); }

.footer { padding: 60px 0 24px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; }
.footer p { color: var(--muted); }
.footer-bottom {
  border-top: 1px solid var(--line); margin-top: 40px; padding-top: 22px;
  display: flex; justify-content: space-between; gap: 20px; color: #74808d; font-size: .78rem;
}
.whatsapp-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 40; display: inline-flex;
  align-items: center; gap: 10px; background: var(--green); color: #061008;
  border-radius: 999px; padding: 14px 18px; box-shadow: 0 15px 40px rgba(0,0,0,.4);
  font-size: .88rem;
}
.whatsapp-float span { font-size: 1.2rem; }

.reveal { opacity: 0; transform: translateY(24px); transition: .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute; top: 78px; left: 18px; right: 18px; padding: 20px;
    background: rgba(10,15,22,.98); border: 1px solid var(--line); border-radius: 16px;
    flex-direction: column; align-items: stretch; display: none;
  }
  .nav-links.open { display: flex; }
  .hero-content, .vampire-wrap, .contact-grid { grid-template-columns: 1fr; }
  .hero-panel { min-height: 420px; }
  .problem-grid, .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .vampire-wrap { padding: 36px; }
}

@media (max-width: 640px) {
  .header .brand-text { font-size: .78rem; }
  .section { padding: 82px 0; }
  .hero { padding-top: 120px; min-height: auto; }
  .hero-content { gap: 30px; }
  h1 { font-size: 3.6rem; }
  .hero-meta { gap: 18px; }
  .hero-panel { min-height: 330px; }
  .terminal { transform: none; }
  .floating-card { display: none; }
  .problem-grid, .services-grid, .steps { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .vampire-wrap { padding: 28px 20px; }
  .vampire-list { grid-template-columns: 1fr; }
  .clock-card strong { font-size: 2.8rem; }
  .guarantee-card { flex-direction: column; align-items: flex-start; padding: 28px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .whatsapp-float strong { display: none; }
  .whatsapp-float { width: 56px; height: 56px; padding: 0; justify-content: center; }
}


.header .brand {
  height: 64px;
  max-height: 64px;
  overflow: hidden;
}

.header .brand img {
  width: 54px !important;
  height: 54px !important;
  max-width: 54px !important;
  max-height: 54px !important;
}

.nav {
  overflow: visible;
}

@media (max-width: 640px) {
  .header .brand {
    height: 56px;
    max-height: 56px;
  }

  .header .brand-logo,
  .header .brand img {
    width: 46px !important;
    height: 46px !important;
    min-width: 46px;
    max-width: 46px !important;
    min-height: 46px;
    max-height: 46px !important;
    flex-basis: 46px;
  }

  .brand-text {
    font-size: .74rem;
    line-height: 1.15;
  }
}


/* ===== TEMA CLARO CON FONDOS VISUALES ===== */
body {
  background: #f7fafc;
  color: #10202d;
}

.header.scrolled {
  background: rgba(255,255,255,.92);
  border-color: rgba(16,32,45,.10);
  box-shadow: 0 8px 30px rgba(28,62,86,.08);
}

.nav-links > a:not(.btn) { color: #314957; }
.nav-links > a:not(.btn):hover { color: #159453; }

.hero {
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.86), rgba(255,255,255,.42)),
    url("../img/fondos/hero-light.svg");
  background-size: cover;
  background-position: center;
  color: #10202d;
}

.hero-grid { display: none; }

.status-pill {
  background: rgba(255,255,255,.76);
  border-color: rgba(16,32,45,.10);
  color: #314957;
  box-shadow: 0 12px 30px rgba(31,76,103,.09);
}

.btn-secondary {
  color: #17303e;
  background: rgba(255,255,255,.78);
  border-color: rgba(16,32,45,.14);
}

.btn-secondary:hover {
  background: #ffffff;
  border-color: rgba(31,168,89,.35);
}

.terminal {
  background: rgba(255,255,255,.86);
  border-color: rgba(16,32,45,.12);
  box-shadow: 0 28px 70px rgba(33,75,101,.18);
}

.terminal-head {
  background: rgba(238,246,250,.92);
  border-color: rgba(16,32,45,.10);
}

.terminal-body { color: #405666; }

.floating-card {
  background: rgba(255,255,255,.92);
  border-color: rgba(16,32,45,.11);
  color: #17303e;
}

.problem-picker {
  background-image:
    linear-gradient(rgba(255,255,255,.88), rgba(255,255,255,.88)),
    url("../img/fondos/services-light.svg");
  background-size: cover;
  background-position: center;
}

.problem-card,
.service-card {
  background: rgba(255,255,255,.86);
  border-color: rgba(16,32,45,.10);
  box-shadow: 0 14px 38px rgba(35,75,98,.08);
  backdrop-filter: blur(10px);
}

.problem-card:hover,
.service-card:hover {
  background: #ffffff;
  border-color: rgba(38,154,98,.30);
  box-shadow: 0 22px 52px rgba(35,75,98,.14);
}

.services {
  background-image:
    linear-gradient(rgba(247,250,252,.90), rgba(247,250,252,.90)),
    url("../img/fondos/services-light.svg");
  background-size: cover;
  background-position: center;
}

.vampire {
  background-image:
    linear-gradient(rgba(255,255,255,.76), rgba(255,255,255,.76)),
    url("../img/fondos/vampire-light.svg");
  background-size: cover;
  background-position: center;
}

.vampire-wrap {
  background: rgba(255,255,255,.82);
  border-color: rgba(220,97,63,.18);
  box-shadow: 0 24px 65px rgba(110,67,43,.12);
  backdrop-filter: blur(10px);
}

.clock-card {
  background: linear-gradient(160deg, rgba(255,255,255,.96), rgba(255,243,237,.92));
  border-color: rgba(222,93,58,.20);
  box-shadow: 0 16px 42px rgba(126,76,49,.10);
}

.process {
  background-image:
    linear-gradient(rgba(255,255,255,.80), rgba(255,255,255,.80)),
    url("../img/fondos/process-light.svg");
  background-size: cover;
  background-position: center;
}

.steps article {
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(16,32,45,.09);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(35,75,98,.07);
}

.guarantee {
  background: #f7fbf8;
}

.guarantee-card {
  background: linear-gradient(135deg, rgba(255,255,255,.95), rgba(231,250,238,.92));
  border-color: rgba(51,183,103,.18);
  box-shadow: 0 20px 55px rgba(45,111,75,.10);
}

.contact {
  background-image:
    linear-gradient(rgba(255,255,255,.82), rgba(255,255,255,.82)),
    url("../img/fondos/contact-light.svg");
  background-size: cover;
  background-position: center;
}

.contact-link,
.diagnostic-form {
  background: rgba(255,255,255,.91);
  border-color: rgba(16,32,45,.10);
  box-shadow: 0 16px 42px rgba(35,75,98,.09);
}

.diagnostic-form input,
.diagnostic-form select,
.diagnostic-form textarea {
  background: #ffffff;
  color: #10202d;
  border-color: rgba(16,32,45,.14);
}

.footer {
  background: #eaf2f5;
  color: #10202d;
  border-color: rgba(16,32,45,.10);
}

.footer p,
.footer-bottom {
  color: #5f7382;
}

.noise { opacity: .018; }

@media (max-width: 980px) {
  .nav-links {
    background: rgba(255,255,255,.98);
    box-shadow: 0 20px 50px rgba(35,75,98,.16);
  }
}

@media (max-width: 640px) {
  .hero {
    background-image:
      linear-gradient(rgba(255,255,255,.91), rgba(255,255,255,.84)),
      url("../img/fondos/hero-light.svg");
    background-position: 55% center;
  }
}


/* ===== HERO CINEMATOGRÁFICO ===== */
.hero.hero-cinematic {
  min-height: 760px;
  padding: 108px 0 56px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 30%, rgba(0,201,148,.16), transparent 26%),
    radial-gradient(circle at 85% 28%, rgba(105,71,255,.20), transparent 28%),
    linear-gradient(120deg, #041116 0%, #07131a 43%, #0c1119 100%);
  color: #ffffff;
}

.hero.hero-cinematic::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.026) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, transparent, #000 15%, #000 85%, transparent);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4,17,22,.98) 0%, rgba(4,17,22,.87) 43%, rgba(4,17,22,.18) 72%, rgba(4,17,22,.12) 100%);
  z-index: 1;
}

.hero-content-cinematic {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 22px;
  align-items: center;
  width: min(1280px, calc(100% - 36px));
}

.hero-content-cinematic .hero-copy {
  position: relative;
  z-index: 3;
  max-width: 660px;
  padding: 16px 0;
}

.hero-status {
  color: #d8f9ee;
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
  box-shadow: none;
}

.hero-eyebrow {
  color: #61efb5;
  margin-bottom: 18px;
}

.hero-title {
  margin: 0 0 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(4rem, 7.2vw, 7.6rem);
  line-height: .82;
  letter-spacing: -.055em;
  text-transform: uppercase;
}

.hero-title span,
.hero-title strong {
  display: block;
}

.hero-title span {
  color: #ffffff;
}

.hero-title strong {
  color: #12c69c;
  font-weight: 800;
}

.hero-subtitle {
  margin: 18px 0 18px;
  color: #ff7a32;
  font-size: clamp(1.7rem, 3.2vw, 3rem);
  letter-spacing: -.02em;
  text-transform: uppercase;
}

.hero-lead-cinematic {
  max-width: 580px;
  margin: 0;
  color: #d8e1e8;
  font-size: 1.05rem;
  line-height: 1.65;
}

.hero-whatsapp {
  background: linear-gradient(135deg, #19d36a, #0bbf61);
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(11,191,97,.25);
}

.hero-whatsapp:hover {
  background: linear-gradient(135deg, #25e77b, #13ca69);
}

.hero-services-btn {
  color: #ffffff;
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.55);
}

.hero-services-btn:hover {
  color: #ffffff;
  background: rgba(255,255,255,.10);
  border-color: #ffffff;
}

.hero-schedule {
  display: flex;
  gap: 34px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.schedule-item {
  display: flex;
  gap: 12px;
  align-items: center;
  color: #ffffff;
}

.schedule-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(21,203,153,.65);
  border-radius: 50%;
  background: rgba(21,203,153,.08);
}

.schedule-item div {
  display: flex;
  flex-direction: column;
}

.schedule-item strong {
  font-size: .95rem;
}

.schedule-item small {
  color: #aebbc5;
}

.vampire-item strong {
  color: #ff5f47;
}

.vampire-item .schedule-icon {
  border-color: rgba(255,95,71,.65);
  background: rgba(255,95,71,.08);
}

.hero-visual {
  position: relative;
  min-height: 620px;
  align-self: stretch;
  overflow: hidden;
  border-radius: 0 0 28px 28px;
}

.hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  filter: saturate(1.08) contrast(1.06) brightness(.92);
}

.hero-visual-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #071319 0%, rgba(7,19,25,.36) 22%, transparent 48%),
    linear-gradient(180deg, rgba(7,19,25,.08), rgba(7,19,25,.22));
}

@media (max-width: 980px) {
  .hero.hero-cinematic {
    min-height: auto;
    padding-top: 118px;
  }

  .hero-content-cinematic {
    grid-template-columns: 1fr;
  }

  .hero-content-cinematic .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    min-height: 480px;
    margin-top: 12px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(4,17,22,.96) 0%, rgba(4,17,22,.82) 54%, rgba(4,17,22,.25) 100%);
  }
}

@media (max-width: 640px) {
  .hero.hero-cinematic {
    padding-top: 105px;
    padding-bottom: 34px;
  }

  .hero-title {
    font-size: 3.65rem;
  }

  .hero-subtitle {
    font-size: 1.55rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-schedule {
    flex-direction: column;
    gap: 16px;
  }

  .hero-visual {
    min-height: 330px;
    border-radius: 18px;
  }

  .hero-visual img {
    object-position: 66% center;
  }
}


/* ===== REDISEÑO CLARO PREMIUM ===== */
.header-light {
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(16,32,45,.08);
  box-shadow: 0 8px 28px rgba(37,78,104,.06);
}

.header-light.scrolled {
  background: rgba(255,255,255,.97);
}

.nav-wide {
  height: 92px;
  width: min(1320px, calc(100% - 32px));
}

.brand-main {
  gap: 14px;
}

.brand-main .brand-logo {
  width: 62px !important;
  height: 62px !important;
  min-width: 62px;
  max-width: 62px !important;
  min-height: 62px;
  max-height: 62px !important;
  flex-basis: 62px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.12;
}

.brand-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: .015em;
}

.brand-title strong {
  color: #1cad60;
}

.brand-copy small {
  margin-top: 5px;
  color: #718493;
  font-size: .76rem;
}

.nav-whatsapp {
  min-width: 170px;
  min-height: 56px;
  flex-direction: column;
  align-items: flex-start;
  padding: 9px 16px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg,#19bd67,#079f55);
}

.nav-whatsapp span {
  font-size: .78rem;
  opacity: .92;
}

.nav-whatsapp strong {
  font-size: .86rem;
}

.hero-premium-light {
  min-height: 780px;
  padding: 132px 0 70px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 55%, rgba(45,201,111,.12), transparent 28%),
    radial-gradient(circle at 88% 25%, rgba(50,148,232,.15), transparent 35%),
    linear-gradient(135deg,#ffffff 0%,#f6fbfd 55%,#eef7ff 100%);
  color: #10202d;
}

.hero-premium-light::before {
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(23,92,121,.035) 1px, transparent 1px),
    linear-gradient(90deg,rgba(23,92,121,.035) 1px, transparent 1px);
  background-size:58px 58px;
  mask-image:linear-gradient(to bottom,transparent,#000 14%,#000 86%,transparent);
}

.hero-light-bg {
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,rgba(255,255,255,.96) 0%,rgba(255,255,255,.84) 43%,rgba(255,255,255,.20) 72%,rgba(255,255,255,.06) 100%);
  z-index:1;
}

.hero-content-premium {
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:.93fr 1.07fr;
  gap:30px;
  align-items:center;
  width:min(1320px,calc(100% - 36px));
}

.hero-copy-light {
  max-width:650px;
  position:relative;
  z-index:4;
}

.status-light {
  color:#304b5a;
  background:rgba(255,255,255,.90);
  border-color:rgba(16,32,45,.10);
  box-shadow:0 12px 30px rgba(43,83,108,.10);
}

.light-eyebrow {
  color:#19ac5d;
  margin-top:24px;
}

.hero-title-light {
  margin:0 0 24px;
  font-family:"Space Grotesk",sans-serif;
  font-size:clamp(4.3rem,7vw,7.3rem);
  line-height:.88;
  letter-spacing:-.065em;
}

.hero-title-light span,
.hero-title-light strong {
  display:block;
}

.hero-title-light span {
  color:#10202d;
}

.hero-title-light strong {
  color:#19b765;
}

.light-lead {
  max-width:610px;
  color:#526b7b;
  font-size:1.08rem;
  line-height:1.66;
}

.btn-whatsapp-main {
  color:#fff;
  background:linear-gradient(135deg,#20c76d,#0aa656);
  box-shadow:0 14px 32px rgba(20,174,91,.20);
}

.btn-light-outline {
  background:rgba(255,255,255,.90);
  color:#10202d;
  border-color:rgba(16,32,45,.15);
}

.premium-meta {
  display:flex;
  gap:34px;
  margin-top:42px;
  flex-wrap:wrap;
}

.premium-meta > div {
  display:flex;
  flex-direction:row;
  align-items:center;
  gap:12px;
}

.meta-icon {
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border-radius:50%;
  border:2px solid #1bb466;
  color:#139553;
  font-size:1.15rem;
}

.meta-icon.moon {
  border-color:#273949;
  color:#273949;
}

.meta-icon.shield {
  border-radius:12px;
}

.premium-meta p {
  margin:0;
  display:flex;
  flex-direction:column;
}

.premium-meta strong {
  color:#10202d;
  font-size:.92rem;
}

.premium-meta small {
  color:#6a7e8d;
  font-size:.77rem;
}

.hero-visual-premium {
  min-height:600px;
  position:relative;
}

.pc-stage {
  position:absolute;
  inset:20px 0 0 140px;
  overflow:hidden;
  border-radius:34px;
  box-shadow:0 32px 70px rgba(39,83,111,.16);
}

.pc-stage img {
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:70% center;
  filter:saturate(1.05) brightness(1.06);
}

.pc-fade {
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,#f5fbfd 0%,rgba(245,251,253,.20) 25%,transparent 48%),
    linear-gradient(180deg,rgba(255,255,255,.04),rgba(12,37,50,.08));
}

.diagnostic-window {
  position:absolute;
  left:0;
  top:95px;
  width:470px;
  border-radius:22px;
  overflow:hidden;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(23,68,92,.10);
  box-shadow:0 26px 65px rgba(36,78,105,.17);
  backdrop-filter:blur(14px);
}

.diagnostic-head {
  height:50px;
  display:flex;
  align-items:center;
  gap:8px;
  padding:0 18px;
  border-bottom:1px solid rgba(16,32,45,.08);
  background:rgba(242,248,251,.90);
}

.diagnostic-head small {
  margin-left:auto;
  color:#8393a0;
}

.dot {
  width:10px;
  height:10px;
  border-radius:50%;
}

.dot.red { background:#ff625b; }
.dot.yellow { background:#f8bd2d; }
.dot.green { background:#2ecb64; }

.diagnostic-body {
  padding:28px 30px 30px;
  font-family:Consolas,monospace;
  color:#4f6574;
}

.diagnostic-body p {
  margin:0 0 22px;
}

.diagnostic-body .ok { color:#23b565; }
.diagnostic-body .warn { color:#ed7a3b; }

.float-card {
  position:absolute;
  display:flex;
  align-items:center;
  gap:14px;
  padding:15px 18px;
  border-radius:16px;
  background:rgba(255,255,255,.95);
  border:1px solid rgba(16,32,45,.09);
  box-shadow:0 18px 40px rgba(35,76,100,.14);
}

.float-card > span {
  font-size:1.55rem;
}

.float-card div {
  display:flex;
  flex-direction:column;
}

.float-card small {
  color:#7a8b98;
  font-size:.72rem;
}

.float-vampire {
  right:20px;
  top:62px;
}

.float-ssd {
  left:20px;
  bottom:70px;
}

.services-showcase {
  background:
    linear-gradient(rgba(255,255,255,.88),rgba(255,255,255,.88)),
    url("../img/fondos/services-light.svg");
  background-size:cover;
  background-position:center;
}

.services-showcase .services-grid {
  grid-template-columns:repeat(3,1fr);
}

.services-showcase .service-card {
  background:rgba(255,255,255,.94);
  border:1px solid rgba(16,32,45,.09);
  box-shadow:0 14px 35px rgba(39,78,102,.08);
}

@media (max-width:1050px) {
  .hero-content-premium {
    grid-template-columns:1fr;
  }

  .hero-visual-premium {
    min-height:520px;
  }

  .pc-stage {
    inset:30px 0 0 180px;
  }
}

@media (max-width:980px) {
  .nav-wide {
    height:80px;
  }

  .brand-copy small {
    display:none;
  }

  .brand-main .brand-logo {
    width:52px !important;
    height:52px !important;
    min-width:52px;
    max-width:52px !important;
    min-height:52px;
    max-height:52px !important;
    flex-basis:52px;
  }

  .hero-premium-light {
    padding-top:115px;
  }
}

@media (max-width:640px) {
  .brand-title {
    font-size:.92rem;
  }

  .hero-premium-light {
    min-height:auto;
    padding-top:110px;
  }

  .hero-title-light {
    font-size:3.6rem;
  }

  .hero-actions {
    flex-direction:column;
  }

  .hero-actions .btn {
    width:100%;
  }

  .premium-meta {
    flex-direction:column;
    gap:18px;
  }

  .hero-visual-premium {
    min-height:390px;
  }

  .pc-stage {
    inset:90px 0 0 65px;
    border-radius:22px;
  }

  .diagnostic-window {
    top:0;
    width:82%;
  }

  .float-vampire {
    right:0;
    top:40px;
  }

  .float-ssd {
    left:10px;
    bottom:18px;
  }
}


/* ==========================================================
   RESPONSIVE MÓVIL COMPLETO — V7
   ========================================================== */

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

img,
svg,
video,
canvas {
  max-width: 100%;
  height: auto;
}

button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

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

  .header {
    min-height: 76px;
  }

  .nav-wide {
    width: calc(100% - 24px);
    height: 76px;
  }

  .brand-main {
    max-width: calc(100% - 62px);
  }

  .brand-copy {
    min-width: 0;
  }

  .brand-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 12px;
    border: 1px solid rgba(16,32,45,.10);
    background: #ffffff;
    color: #10202d;
    box-shadow: 0 8px 22px rgba(35,75,98,.10);
    font-size: 1.45rem;
    line-height: 1;
  }

  .nav-links {
    position: fixed;
    top: 84px;
    left: 12px;
    right: 12px;
    z-index: 100;
    display: none;
    max-height: calc(100dvh - 100px);
    overflow-y: auto;
    padding: 16px;
    gap: 6px;
    border-radius: 18px;
    background: rgba(255,255,255,.98);
    border: 1px solid rgba(16,32,45,.10);
    box-shadow: 0 24px 60px rgba(24,59,82,.20);
    backdrop-filter: blur(18px);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links > a:not(.btn) {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 10px 14px;
    border-radius: 11px;
    font-size: .98rem;
  }

  .nav-links > a:not(.btn):hover {
    background: #f0f8f4;
  }

  .nav-whatsapp {
    width: 100%;
    min-height: 56px;
    align-items: center;
    text-align: center;
    margin-top: 6px;
  }

  .hero-premium-light {
    min-height: auto;
    padding: 108px 0 64px;
  }

  .hero-content-premium {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-copy-light {
    max-width: none;
  }

  .hero-title-light {
    max-width: 720px;
  }

  .light-lead {
    max-width: 700px;
  }

  .hero-visual-premium {
    min-height: 510px;
    width: 100%;
  }

  .pc-stage {
    inset: 70px 0 0 145px;
  }

  .diagnostic-window {
    left: 0;
    top: 20px;
    width: min(470px, 70%);
  }

  .float-vampire {
    right: 0;
    top: 10px;
  }

  .float-ssd {
    left: 30px;
    bottom: 30px;
  }

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

  .vampire-wrap {
    grid-template-columns: 1fr;
  }

  .clock-card {
    min-height: 300px;
  }

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

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

@media (max-width: 640px) {
  :root {
    --mobile-pad: 16px;
  }

  .container {
    width: calc(100% - 28px);
  }

  .section {
    padding: 68px 0;
  }

  .header {
    min-height: 70px;
  }

  .nav-wide {
    height: 70px;
    width: calc(100% - 20px);
  }

  .brand-main {
    gap: 9px;
    max-width: calc(100% - 54px);
  }

  .brand-main .brand-logo {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px;
    max-width: 44px !important;
    min-height: 44px;
    max-height: 44px !important;
    flex-basis: 44px;
  }

  .brand-title {
    font-size: .82rem;
    line-height: 1.05;
  }

  .brand-copy small {
    display: none;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }

  .nav-links {
    top: 77px;
    left: 10px;
    right: 10px;
    max-height: calc(100dvh - 90px);
  }

  .hero-premium-light {
    padding: 96px 0 48px;
    background:
      radial-gradient(circle at 20% 25%, rgba(45,201,111,.12), transparent 32%),
      radial-gradient(circle at 85% 55%, rgba(50,148,232,.13), transparent 38%),
      linear-gradient(150deg,#ffffff 0%,#f6fbfd 58%,#eef7ff 100%);
  }

  .hero-light-bg {
    background: linear-gradient(
      180deg,
      rgba(255,255,255,.96) 0%,
      rgba(255,255,255,.88) 54%,
      rgba(255,255,255,.48) 100%
    );
  }

  .status-light {
    max-width: 100%;
    margin-bottom: 20px;
    padding: 8px 11px;
    font-size: .74rem;
    line-height: 1.3;
  }

  .light-eyebrow {
    margin-top: 0;
    font-size: .66rem;
    letter-spacing: .12em;
    line-height: 1.55;
  }

  .hero-title-light {
    margin-bottom: 18px;
    font-size: clamp(3.25rem, 18vw, 4.5rem);
    line-height: .90;
    letter-spacing: -.06em;
  }

  .hero-title-light span {
    max-width: 100%;
  }

  .light-lead {
    font-size: .98rem;
    line-height: 1.65;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 11px;
    margin-top: 26px;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 54px;
    padding: 0 18px;
    font-size: .88rem;
  }

  .premium-meta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 13px;
    margin-top: 28px;
  }

  .premium-meta > div {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid rgba(16,32,45,.08);
    border-radius: 14px;
    background: rgba(255,255,255,.70);
  }

  .meta-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
  }

  .hero-visual-premium {
    min-height: 430px;
    margin-top: 4px;
  }

  .pc-stage {
    inset: 112px 0 0 42px;
    border-radius: 20px;
  }

  .pc-stage img {
    object-position: 69% center;
  }

  .diagnostic-window {
    left: 0;
    top: 0;
    width: 82%;
    border-radius: 16px;
  }

  .diagnostic-head {
    height: 42px;
    padding: 0 12px;
  }

  .diagnostic-head small {
    max-width: 150px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: .68rem;
  }

  .diagnostic-body {
    padding: 17px 18px 18px;
    font-size: .76rem;
  }

  .diagnostic-body p {
    margin-bottom: 13px;
  }

  .float-card {
    padding: 10px 12px;
    gap: 9px;
    border-radius: 13px;
  }

  .float-card > span {
    font-size: 1.15rem;
  }

  .float-card strong {
    font-size: .78rem;
  }

  .float-card small {
    max-width: 145px;
    font-size: .62rem;
    line-height: 1.25;
  }

  .float-vampire {
    right: 0;
    top: 46px;
  }

  .float-ssd {
    left: 6px;
    bottom: 14px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2 {
    font-size: 2.35rem;
  }

  .problem-grid,
  .services-showcase .services-grid,
  .services-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .problem-card {
    min-height: 116px;
    padding: 19px;
  }

  .service-card {
    min-height: auto;
    padding: 24px 21px;
    border-radius: 18px;
  }

  .service-card h3 {
    font-size: 1.35rem;
  }

  .vampire-wrap {
    padding: 26px 19px;
    gap: 32px;
    border-radius: 20px;
  }

  .vampire-list {
    grid-template-columns: 1fr;
  }

  .clock-card {
    min-height: 280px;
  }

  .clock-card strong {
    font-size: 2.65rem;
  }

  .guarantee-card {
    padding: 26px 20px;
    gap: 20px;
  }

  .guarantee-badge {
    width: 84px;
    height: 84px;
    min-width: 84px;
    font-size: 2rem;
  }

  .diagnostic-form {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .diagnostic-form input,
  .diagnostic-form select,
  .diagnostic-form textarea {
    min-height: 48px;
    font-size: 16px;
  }

  .diagnostic-form textarea {
    min-height: 124px;
  }

  .contact-link {
    min-height: 64px;
  }

  .footer {
    padding-bottom: calc(28px + env(safe-area-inset-bottom));
  }

  .footer-grid {
    gap: 28px;
  }

  .footer-bottom {
    font-size: .72rem;
  }

  .whatsapp-float {
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    width: 58px;
    height: 58px;
    min-width: 58px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 14px 32px rgba(10,93,51,.28);
  }

  .whatsapp-float strong {
    display: none;
  }

  .whatsapp-float span {
    font-size: 1.45rem;
  }
}

@media (max-width: 390px) {
  .container {
    width: calc(100% - 22px);
  }

  .brand-title {
    font-size: .74rem;
  }

  .hero-title-light {
    font-size: 3.05rem;
  }

  .hero-visual-premium {
    min-height: 395px;
  }

  .diagnostic-window {
    width: 88%;
  }

  .pc-stage {
    inset: 104px 0 0 28px;
  }

  .float-vampire {
    top: 52px;
  }

  .float-card small {
    max-width: 112px;
  }
}

@media (orientation: landscape) and (max-height: 500px) and (max-width: 950px) {
  .nav-links {
    max-height: calc(100dvh - 82px);
  }

  .hero-premium-light {
    padding-top: 92px;
  }

  .hero-content-premium {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .hero-title-light {
    font-size: 3.2rem;
  }

  .hero-visual-premium {
    min-height: 330px;
  }

  .pc-stage {
    inset: 74px 0 0 70px;
  }

  .diagnostic-window {
    width: 76%;
  }

  .premium-meta {
    display: none;
  }
}

@media (max-width: 980px) { body.menu-open { overflow: hidden; } }

/* Mejora iconografia profesional v8 */
.bi { line-height: 1; }
.problem-card span i,
.service-icon i,
.float-card span i,
.meta-icon i {
  font-style: normal;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.problem-card span i { font-size: 1.8rem; }
.service-icon i { font-size: 2.1rem; }
.float-card span i { font-size: 1.4rem; }

.service-section{padding:60px 0}
.service-section .services-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:20px}
.service-section .service-card{padding:24px;border-radius:18px;text-align:center}
.service-section .service-card i{font-size:2rem}


/* ============================
   ANIMACIONES PREMIUM v6
   ============================ */

/* Hero entrada cinematográfica */
.hero-content {
  animation: heroEntrance 1.1s cubic-bezier(.22,1,.36,1) both;
}

.hero-grid {
  animation: gridMove 18s linear infinite;
}

@keyframes heroEntrance {
  from {
    opacity: 0;
    transform: translateY(35px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gridMove {
  from { background-position: 0 0; }
  to { background-position: 52px 52px; }
}

/* Tarjetas de servicios */
.service-card {
  position: relative;
  overflow: hidden;
  transition:
    transform .45s cubic-bezier(.22,1,.36,1),
    box-shadow .45s ease,
    border-color .45s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255,255,255,.18),
    transparent 70%
  );
  transform: translateX(-120%);
  transition: transform .8s ease;
}

.service-card:hover::before {
  transform: translateX(120%);
}

.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 28px 65px rgba(39,72,96,.25);
}

/* Iconos con movimiento suave */
.service-icon {
  transition: transform .35s ease;
}

.service-card:hover .service-icon {
  transform: translateY(-8px) rotate(4deg);
}

/* Botones */
.btn,
.service-link {
  transition: transform .3s ease, box-shadow .3s ease;
}

.btn:hover,
.service-link:hover {
  transform: translateY(-3px);
}

/* Imagen hero */
.hero img {
  animation: heroImageFloat 5s ease-in-out infinite;
}

@keyframes heroImageFloat {
  0%,100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* Respeto accesibilidad */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}
