﻿/* ===================================================
   REFORMAS Y SANEAMIENTOS HUGO - STYLE.CSS
   =================================================== */

/* ========== RESET GENERAL ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Poppins", sans-serif;
  color: #0f172a;
  background: #f8fafc;
  line-height: 1.6;
  overflow-x: hidden;
}

:root {
  --primary: #007bff;
  --accent: #0ea5e9;
  --muted: #475569;
  --whatsapp: #25d366;
}

/* LINKS Y BOTONES */
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: var(--primary);
}

/* CONTENEDOR BASE */
.container {
  width: min(90%, 1200px);
  margin: 0 auto;
}

/* ========== HEADER MODERNO (GLASS + STICKY) ========== */
.hdr {
  position: sticky;
  top: 0;
  z-index: 1200;
  --bg: rgba(255, 255, 255, 0.75);
  backdrop-filter: saturate(1.2) blur(10px);
  border-bottom: 1px solid transparent;
  background: linear-gradient(var(--bg), var(--bg)) padding-box,
    linear-gradient(135deg, rgba(0, 123, 255, 0.5), rgba(14, 165, 233, 0.35), rgba(30, 221, 136, 0.35)) border-box;
  transition: all 0.25s ease;
}

.hdr.is-scrolled {
  --bg: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
}

.hdr__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
  transition: padding 0.25s ease;
}
.hdr.is-scrolled .hdr__inner {
  padding: 0.55rem 0;
}

.hdr__logo {
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
  font-weight: 800;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.hdr__brand {
  color: #0f172a;
}
.hdr__accent {
  color: var(--primary);
}

.hdr__nav {
  flex: 1 1 auto;
}
.hdr__list {
  display: flex;
  justify-content: center;
  gap: 1.4rem;
  align-items: center;
  list-style: none;
}
.hdr__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.1rem;
  font-weight: 600;
  color: #0f172a;
  transition: color 0.2s ease;
}
.hdr__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, #0ea5e9, #1ede88, #007bff);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
  border-radius: 2px;
}
.hdr__link:hover {
  color: #0ea5e9;
}
.hdr__link:hover::after {
  transform: scaleX(1);
}
.hdr__link[aria-current="page"],
.hdr__link--active {
  color: var(--accent);
}
.hdr__link[aria-current="page"]::after,
.hdr__link--active::after {
  transform: scaleX(1);
}

.hdr__cta {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.hdr__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.28rem;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.hdr__burger span {
  width: 1.2rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
  transition: transform 0.25s ease;
}
.hdr__burger:focus-visible {
  outline: 2px solid rgba(14, 165, 233, 0.5);
  outline-offset: 3px;
}
.hdr__burger:hover {
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.12);
  transform: translateY(-1px);
}
.hdr__overlay {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: flex-end;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(10px);
  z-index: 2200;
  width: 100vw;
}
.hdr__overlay[hidden] {
  display: none;
}
.hdr__panel {
  width: min(320px, 82vw);
  background: rgba(255, 255, 255, 0.97);
  padding: 1.6rem 1.4rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: -12px 0 36px rgba(15, 23, 42, 0.2);
  overflow-y: auto;
}
.hdr__panel-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}
.hdr__panel-link {
  display: block;
  padding: 0.8rem 0.6rem;
  border-radius: 12px;
  font-weight: 600;
  color: #0f172a;
  transition: background 0.2s ease, color 0.2s ease;
}
.hdr__panel-link:hover {
  background: rgba(14, 165, 233, 0.14);
  color: #2563eb;
}
.hdr__panel-link[aria-current="page"],
.hdr__panel-link--active {
  color: var(--accent);
  font-weight: 600;
}
.hdr__panel-cta {
  display: grid;
  gap: 0.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  border-radius: 14px;
  padding: 0.7rem 1rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}
.btn--ghost {
  background: #fff;
  color: #0f172a;
  border-color: rgba(15, 23, 42, 0.1);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}
.btn--ghost:hover {
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
}
.btn--wa {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 14px 36px rgba(18, 140, 126, 0.35);
}
.btn--wa:hover {
  box-shadow: 0 18px 42px rgba(18, 140, 126, 0.45);
}

/* Responsive header */
@media (max-width: 992px) {
  .hdr__nav {
    display: none;
  }
  .hdr__cta .btn--ghost {
    display: none;
  }
  .hdr__burger {
    display: inline-flex;
  }
}

/* ========== HERO CON VIDEO ========== */
.hero {
  position: relative;
  min-height: clamp(620px, 95vh, 880px);
  color: #0f172a;
  display: flex;
  align-items: stretch;
}
.hero-video-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: clamp(4rem, 8vw, 6rem) 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.55));
  backdrop-filter: blur(4px);
  z-index: 0;
}
.hero-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.hero-ambient__shape {
  position: absolute;
  border-radius: 999px;
  mix-blend-mode: screen;
  opacity: 0.45;
}
.hero-ambient__shape--1 {
  width: clamp(360px, 40vw, 460px);
  height: clamp(360px, 40vw, 460px);
  top: -18%;
  left: -10%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.65), rgba(59, 130, 246, 0));
}
.hero-ambient__shape--2 {
  width: clamp(300px, 36vw, 420px);
  height: clamp(300px, 36vw, 420px);
  bottom: -28%;
  right: -14%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.6), rgba(14, 165, 233, 0));
}
.hero-overlay > .container {
  position: relative;
  z-index: 2;
}
.hero-wrapper {
  display: grid;
  gap: clamp(1.8rem, 3vw, 2.6rem);
  grid-template-columns: minmax(280px, 1.3fr) minmax(260px, 1fr);
  align-items: stretch;
}
.hero-intro {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.94) 0%, rgba(241, 245, 249, 0.85) 100%);
  border-radius: 28px;
  padding: clamp(2rem, 3.2vw, 2.6rem);
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 32px 70px rgba(15, 23, 42, 0.22);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  gap: clamp(1.2rem, 2.2vw, 1.8rem);
  color: #0f172a;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.28rem 0.9rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.16);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}
.hero-eyebrow::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
}
.hero-intro h1 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.1rem);
  font-weight: 800;
  line-height: 1.15;
}
.hero-intro p {
  margin: 0;
  color: #1f2937;
  line-height: 1.75;
  font-weight: 500;
}
.hero-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}
.hero-points li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 600;
  color: #0f172a;
}
.hero-points li::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.16);
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.hero-btn:hover {
  transform: translateY(-3px);
}
.hero-btn--primary {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  box-shadow: 0 20px 42px rgba(37, 99, 235, 0.4);
}
.hero-btn--primary:hover {
  box-shadow: 0 24px 48px rgba(37, 99, 235, 0.5);
}
.hero-btn--ghost {
  background: rgba(255, 255, 255, 0.92);
  color: #1d4ed8;
  border-color: rgba(59, 130, 246, 0.35);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}
.hero-btn--ghost:hover {
  border-color: rgba(59, 130, 246, 0.8);
}
.hero-btn--link {
  background: transparent;
  color: #1d4ed8;
  padding-inline: 0;
}
.hero-btn--link::after {
  content: ">";
  font-size: 0.95rem;
  margin-left: 0.35rem;
  transition: transform 0.3s ease;
}
.hero-btn--link:hover::after {
  transform: translateX(4px);
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.hero-meta__item {
  background: rgba(148, 163, 184, 0.22);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1f2937;
  border: 1px solid rgba(148, 163, 184, 0.3);
}
.hero-panel {
  background: linear-gradient(160deg, rgba(15, 23, 42, 0.92) 0%, rgba(37, 99, 235, 0.78) 100%);
  color: #e2e8f0;
  border-radius: 26px;
  padding: clamp(1.8rem, 3vw, 2.4rem);
  border: 1px solid rgba(96, 165, 250, 0.32);
  box-shadow: 0 32px 70px rgba(15, 23, 42, 0.25);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.hero-panel__badge {
  align-self: flex-start;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.28);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: #bfdbfe;
}
.hero-panel h2 {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.3;
}
.hero-panel p {
  margin: 0;
  color: #dbeafe;
  line-height: 1.6;
}
.hero-panel__details {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.hero-panel__details div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.hero-panel__details dt {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.7);
  margin: 0;
}
.hero-panel__details dd {
  margin: 0;
  font-weight: 700;
  font-size: 1.05rem;
}
.hero-panel__details a {
  color: inherit;
  text-decoration: none;
}
.hero-panel__details a:hover {
  text-decoration: underline;
}
.hero-panel__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.hero-panel__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.3rem;
  border-radius: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hero-panel__btn:hover {
  transform: translateY(-3px);
}
.hero-panel__btn--primary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  box-shadow: 0 18px 36px rgba(59, 130, 246, 0.25);
}
.hero-panel__btn--whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 20px 40px rgba(18, 140, 126, 0.35);
}
.hero-panel__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.hero-panel__tags span {
  background: rgba(148, 163, 184, 0.25);
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #e2e8f0;
  border: 1px solid rgba(203, 213, 225, 0.2);
}
@media (max-width: 992px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
  }
  .hero-panel {
    max-width: 520px;
  }
}
@media (max-width: 640px) {
  .hero-overlay {
    padding: 3.5rem 0;
  }
  .hero-intro {
    padding: 1.8rem;
  }
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-btn {
    width: 100%;
  }
  .hero-btn--link {
    align-self: flex-start;
    width: auto;
  }
  .hero-panel__btn {
    width: 100%;
  }
}

/* ========== SERVICE PAGES (FONTANERÍA) ========== */
.service-hero {
  position: relative;
  padding: clamp(5rem, 10vw, 7.5rem) 0;
  background:
    radial-gradient(120% 120% at 0% 20%, rgba(59, 130, 246, 0.12) 0%, rgba(59, 130, 246, 0) 60%),
    radial-gradient(150% 150% at 100% 10%, rgba(37, 99, 235, 0.12) 0%, rgba(37, 99, 235, 0) 65%),
    #eef3fb;
  overflow: hidden;
}
.service-hero--fontaneria {
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.75) 40%, rgba(15, 23, 42, 0.82) 100%),
    url("../img/reformas3.jpg") center/cover no-repeat;
}
.service-hero--pintura {
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.82) 0%, rgba(59, 130, 246, 0.55) 45%, rgba(59, 130, 246, 0.7) 100%),
    url("../img/pintura2.jpg") center/cover no-repeat;
}
.service-hero--reformas {
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.7) 40%, rgba(15, 23, 42, 0.75) 100%),
    url("../img/reformaservicio1.jpg") center/cover no-repeat;
}
.service-hero__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.service-hero__shape {
  position: absolute;
  border-radius: 999px;
  mix-blend-mode: screen;
  opacity: 0.35;
  filter: blur(0);
}
.service-hero__shape--1 {
  width: clamp(280px, 40vw, 420px);
  height: clamp(280px, 40vw, 420px);
  top: -18%;
  left: -12%;
  background: linear-gradient(140deg, rgba(37, 99, 235, 0.6), rgba(37, 99, 235, 0));
}
.service-hero__shape--2 {
  width: clamp(240px, 36vw, 380px);
  height: clamp(240px, 36vw, 380px);
  bottom: -24%;
  right: -10%;
  background: linear-gradient(140deg, rgba(14, 165, 233, 0.55), rgba(14, 165, 233, 0));
}
.service-hero--pintura .service-hero__shape--1 {
  background: linear-gradient(140deg, rgba(236, 72, 153, 0.55), rgba(236, 72, 153, 0));
}
.service-hero--pintura .service-hero__shape--2 {
  background: linear-gradient(140deg, rgba(168, 85, 247, 0.55), rgba(14, 165, 233, 0));
}
.service-hero--reformas .service-hero__shape--1 {
  background: linear-gradient(140deg, rgba(37, 99, 235, 0.65), rgba(37, 99, 235, 0));
}
.service-hero--reformas .service-hero__shape--2 {
  background: linear-gradient(140deg, rgba(30, 221, 136, 0.45), rgba(14, 165, 233, 0));
}
.service-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  grid-template-columns: minmax(280px, 1.4fr) minmax(260px, 0.9fr);
  align-items: stretch;
}
.service-hero__content {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.95) 0%, rgba(226, 232, 240, 0.85) 100%);
  border-radius: 28px;
  padding: clamp(2.2rem, 3.3vw, 2.8rem);
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 34px 70px rgba(15, 23, 42, 0.2);
  display: flex;
  flex-direction: column;
  gap: clamp(1.2rem, 2.4vw, 2rem);
  color: #0f172a;
}
.service-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.28rem 0.9rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.15);
  color: #1d4ed8;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}
.service-hero__content h1 {
  margin: 0;
  font-size: clamp(2.1rem, 3.7vw, 3rem);
  line-height: 1.15;
  font-weight: 800;
}
.service-hero__content p {
  margin: 0;
  color: #1f2937;
  line-height: 1.75;
  font-weight: 500;
}
.service-hero__points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}
.service-hero__points li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  color: #0f172a;
}
.service-hero__points li::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.16);
}
.service-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}
.service-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.7rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.service-hero__btn:hover {
  transform: translateY(-3px);
}
.service-hero__btn--primary {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 22px 46px rgba(18, 140, 126, 0.35);
}
.service-hero__btn--outline {
  background: rgba(255, 255, 255, 0.92);
  color: #1d4ed8;
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}
.service-hero__btn--outline:hover {
  border-color: rgba(59, 130, 246, 0.7);
}
.service-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.service-hero__meta span {
  background: rgba(148, 163, 184, 0.2);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1f2937;
  border: 1px solid rgba(148, 163, 184, 0.32);
}
.service-hero__card {
  background: linear-gradient(165deg, rgba(15, 23, 42, 0.92) 0%, rgba(37, 99, 235, 0.78) 100%);
  color: #e2e8f0;
  border-radius: 26px;
  padding: clamp(1.8rem, 3vw, 2.4rem);
  border: 1px solid rgba(96, 165, 250, 0.35);
  box-shadow: 0 34px 70px rgba(15, 23, 42, 0.25);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.service-hero__badge {
  align-self: flex-start;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.28);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: #bfdbfe;
}
.service-hero__card h2 {
  margin: 0;
  font-size: 1.45rem;
}
.service-hero__card p {
  margin: 0;
  color: #dbeafe;
  line-height: 1.6;
}
.service-hero__card dl {
  margin: 0;
  display: grid;
  gap: 0.8rem;
}
.service-hero__card dl div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.service-hero__card dt {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.72);
}
.service-hero__card dd {
  margin: 0;
  font-weight: 700;
  font-size: 1.05rem;
}
.service-hero__card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.3rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-hero__card-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(59, 130, 246, 0.38);
}
@media (max-width: 1024px) {
  .service-hero__grid {
    grid-template-columns: 1fr;
  }
  .service-hero__card {
    max-width: 520px;
  }
}
@media (max-width: 640px) {
  .service-hero {
    padding: 4.2rem 0;
  }
  .service-hero__content {
    padding: 1.9rem;
  }
  .service-hero__cta {
    flex-direction: column;
    align-items: stretch;
  }
  .service-hero__btn {
    width: 100%;
  }
  .service-hero__card {
    padding: 1.8rem;
  }
  .service-hero__card-btn {
    width: 100%;
  }
}

.service-benefits {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background:
    radial-gradient(180% 160% at 0% 0%, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0) 55%),
    #f6f9ff;
}
.service-benefits__grid {
  display: grid;
  gap: clamp(2rem, 3vw, 2.8rem);
  grid-template-columns: minmax(260px, 1.2fr) minmax(260px, 1fr);
  align-items: center;
}
.service-benefits__copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 2.6vw, 2.4rem);
}
.service-benefits__copy p {
  margin: 0 0 1.6rem;
  color: #334155;
  line-height: 1.7;
}
.service-benefits__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
  color: #1f2937;
  font-weight: 500;
}
.service-benefits__list li strong {
  color: #0f172a;
}
.service-benefits__stats {
  display: grid;
  gap: 1.2rem;
}
.service-benefit {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.94) 0%, rgba(226, 232, 240, 0.8) 100%);
  border-radius: 22px;
  padding: 1.6rem 1.8rem;
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.14);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.service-benefit__value {
  font-size: 2.6rem;
  font-weight: 800;
  color: #1d4ed8;
  line-height: 1;
}
.service-benefit p {
  margin: 0;
  color: #475569;
  line-height: 1.5;
}
@media (max-width: 960px) {
  .service-benefits__grid {
    grid-template-columns: 1fr;
  }
  .service-benefits__stats {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

.service-solutions {
  padding: clamp(4.5rem, 8vw, 6.5rem) 0;
  background: #fff;
}
.service-solutions__head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.service-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.28rem 0.9rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.14);
  color: #1d4ed8;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
}
.service-solutions__head h2 {
  margin: 0;
  font-size: clamp(2rem, 2.8vw, 2.5rem);
  color: #0f172a;
}
.service-solutions__grid {
  display: grid;
  gap: clamp(1.2rem, 2.4vw, 1.8rem);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.solution-card {
  position: relative;
  border-radius: 24px;
  padding: clamp(1.6rem, 2.6vw, 2rem);
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.92) 0%, rgba(241, 245, 249, 0.78) 100%);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.12);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.18);
}
.solution-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(14, 165, 233, 0.3));
  color: #2563eb;
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.25);
}
.solution-card__icon svg {
  width: 26px;
  height: 26px;
}
.solution-card h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #0f172a;
}
.solution-card p {
  margin: 0;
  color: #475569;
  line-height: 1.6;
}
.solution-card ul {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.35rem;
  color: #1f2937;
  font-weight: 500;
}

.service-process {
  padding: clamp(4.5rem, 8vw, 6rem) 0;
  background:
    radial-gradient(160% 200% at 0% 0%, rgba(37, 99, 235, 0.09) 0%, rgba(37, 99, 235, 0) 55%),
    #f7f9fc;
}
.service-process h2 {
  text-align: center;
  margin: 0 0 clamp(2rem, 4vw, 3rem);
  font-size: clamp(2rem, 2.6vw, 2.4rem);
  color: #0f172a;
}
.service-process__timeline {
  display: grid;
  gap: clamp(1.2rem, 2.4vw, 1.8rem);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.service-step {
  position: relative;
  border-radius: 24px;
  padding: clamp(1.4rem, 2.6vw, 1.9rem);
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.94) 0%, rgba(226, 232, 240, 0.8) 100%);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.12);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.service-step__index {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  flex-shrink: 0;
}
.service-step h3 {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
  color: #0f172a;
}
.service-step p {
  margin: 0;
  color: #475569;
  line-height: 1.6;
}

.service-faq {
  padding: clamp(4.5rem, 8vw, 6.5rem) 0;
  background: #fff;
}
.service-faq__grid {
  display: grid;
  gap: clamp(2rem, 3vw, 2.8rem);
  grid-template-columns: minmax(260px, 1fr) minmax(320px, 1.4fr);
  align-items: start;
}
.service-faq__grid header h2 {
  margin: 0.8rem 0 1rem;
  font-size: clamp(2rem, 2.6vw, 2.4rem);
  color: #0f172a;
}
.service-faq__grid header p {
  margin: 0;
  color: #475569;
  line-height: 1.6;
}
.service-faq__items {
  display: grid;
  gap: 1rem;
}
.service-faq__item {
  border-radius: 20px;
  padding: clamp(1.2rem, 2.4vw, 1.7rem);
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.95) 0%, rgba(241, 245, 249, 0.82) 100%);
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.12);
}
.service-faq__item h3 {
  margin: 0 0 0.6rem;
  font-size: 1.05rem;
  color: #0f172a;
}
.service-faq__item p {
  margin: 0;
  color: #475569;
  line-height: 1.6;
}
@media (max-width: 960px) {
  .service-faq__grid {
    grid-template-columns: 1fr;
  }
}

/* ========== SERVICIOS ========== */
.servicios {
  position: relative;
  isolation: isolate;
  padding: clamp(4.5rem, 8vw, 6.8rem) 0;
  background:
    radial-gradient(130% 130% at 0% 16%, rgba(14, 165, 233, 0.12) 0%, rgba(14, 165, 233, 0) 56%),
    radial-gradient(160% 160% at 100% 6%, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0) 65%),
    #f4f8ff;
  overflow: hidden;
}
.servicios-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.servicios-ambient__shape {
  position: absolute;
  border-radius: 999px;
  mix-blend-mode: screen;
  opacity: 0.32;
}
.servicios-ambient__shape--1 {
  width: clamp(240px, 32vw, 360px);
  height: clamp(240px, 32vw, 360px);
  top: -20%;
  left: -12%;
  background: linear-gradient(145deg, rgba(59, 130, 246, 0.55), rgba(37, 99, 235, 0.12));
  transform: rotate(15deg);
}
.servicios-ambient__shape--2 {
  width: clamp(220px, 30vw, 340px);
  height: clamp(220px, 30vw, 340px);
  bottom: -26%;
  right: -8%;
  background: linear-gradient(145deg, rgba(14, 165, 233, 0.58), rgba(14, 165, 233, 0.12));
  transform: rotate(-18deg);
}
.servicios-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(2.4rem, 4vw, 3.6rem);
}
.servicios-head {
  max-width: 750px;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.servicios-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.14);
  color: #0f172a;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.servicios-eyebrow::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
}
.servicios-head h2 {
  margin: 0;
  font-size: clamp(2rem, 2.8vw, 2.6rem);
  color: #0f172a;
}
.servicios-head p {
  margin: 0;
  color: #334155;
  line-height: 1.6;
}
.servicios-feature {
  position: relative;
  border-radius: 32px;
  padding: clamp(2rem, 3.8vw, 3rem);
  padding-top: clamp(3.2rem, 5vw, 3.9rem);
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.95) 10%, rgba(226, 232, 240, 0.82) 100%);
  box-shadow: 0 32px 70px rgba(15, 23, 42, 0.15);
  display: grid;
  gap: clamp(1.8rem, 3vw, 2.4rem);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  overflow: hidden;
}
.servicios-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.12), transparent 55%);
  pointer-events: none;
}
.servicios-feature__badge {
  position: absolute;
  top: 1.6rem;
  left: 1.6rem;
  background: rgba(37, 99, 235, 0.85);
  color: #fff;
  font-weight: 700;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.7rem;
  box-shadow: 0 16px 30px rgba(37, 99, 235, 0.35);
  z-index: 2;
}
.servicios-feature__media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.2);
  margin-top: clamp(0.4rem, 1vw, 0.8rem);
}
.servicios-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.6s ease;
}
.servicios-feature:hover .servicios-feature__media img {
  transform: scale(1.06);
}
.servicios-feature__watermark {
  position: absolute;
  inset: auto 1.4rem 1.2rem 1.4rem;
  padding: 0.8rem 1.2rem;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.7);
  color: #e2e8f0;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.75rem;
  backdrop-filter: blur(6px);
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
}
.servicios-feature__body {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  z-index: 1;
  margin-top: clamp(0.4rem, 1vw, 0.8rem);
}
.servicios-feature__body h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  color: #0f172a;
}
.servicios-feature__body p {
  margin: 0;
  color: #1f2937;
  line-height: 1.7;
  font-weight: 500;
}
.servicios-feature__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}
.servicios-feature__list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #1f2937;
  font-weight: 600;
}
.servicios-feature__list li::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  box-shadow: 0 0 0 5px rgba(37, 99, 235, 0.18);
}
.servicios-feature__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.servicios-feature__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid transparent;
}
.servicios-feature__btn:hover {
  transform: translateY(-3px);
}
.servicios-feature__btn--primary {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.35);
}
.servicios-feature__btn--primary:hover {
  box-shadow: 0 22px 48px rgba(37, 99, 235, 0.45);
}
.servicios-feature__btn--whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 18px 40px rgba(18, 140, 126, 0.32);
}
.servicios-feature__btn--whatsapp::after {
  content: ">";
  font-size: 1rem;
}
.servicios-feature__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.servicios-feature__meta-item {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.2);
  color: #1f2937;
  font-weight: 600;
  font-size: 0.85rem;
  border: 1px solid rgba(148, 163, 184, 0.25);
}
.servicios-grid {
  display: grid;
  gap: clamp(1.2rem, 2.2vw, 1.8rem);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.servicio-card {
  position: relative;
  border-radius: 24px;
  padding: clamp(1.6rem, 2.8vw, 2rem);
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.94) 15%, rgba(226, 232, 240, 0.78) 100%);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.12);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.servicio-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -40% 50%;
  width: 160%;
  height: 160%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.18), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.servicio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.18);
}
.servicio-card:hover::after {
  opacity: 1;
}
.servicio-card--accent {
  border: 1px solid rgba(37, 99, 235, 0.3);
  background: linear-gradient(160deg, rgba(59, 130, 246, 0.2) 0%, rgba(148, 163, 184, 0.12) 100%);
}
.servicio-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(37, 99, 235, 0.12);
  color: #2563eb;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.2);
}
.servicio-card--accent .servicio-card__icon {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.3), rgba(14, 165, 233, 0.35));
  color: #0f172a;
}
.servicio-card__icon svg {
  width: 26px;
  height: 26px;
}
.servicio-card__body h3 {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
  color: #0f172a;
}
.servicio-card__body p {
  margin: 0 0 0.8rem;
  color: #475569;
  line-height: 1.6;
  font-weight: 500;
}
.servicio-card__link {
  font-weight: 700;
  color: #2563eb;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.servicio-card__link::after {
  content: ">";
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}
.servicio-card__link:hover::after {
  transform: translateX(3px);
}
@media (max-width: 1024px) {
  .servicios-feature {
    grid-template-columns: 1fr;
  }
  .servicios-feature__badge {
    position: static;
    align-self: flex-start;
  }
}
@media (max-width: 640px) {
  .servicios-feature__media {
    border-radius: 20px;
  }
  .servicios-feature__cta {
    flex-direction: column;
    align-items: stretch;
  }
  .servicios-feature__btn {
    width: 100%;
  }
  .servicio-card {
    align-items: center;
  }
}

/* ========== RAZONES ========== */
.reasons {
  position: relative;
  isolation: isolate;
  padding: clamp(4.5rem, 8vw, 6.5rem) 0;
  background:
    radial-gradient(140% 140% at 0% 10%, rgba(59, 130, 246, 0.12) 0%, rgba(59, 130, 246, 0) 60%),
    radial-gradient(160% 160% at 100% 6%, rgba(56, 189, 248, 0.1) 0%, rgba(56, 189, 248, 0) 65%),
    #f3f7ff;
  overflow: hidden;
}
.reasons-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.reasons-ambient__shape {
  position: absolute;
  border-radius: 999px;
  opacity: 0.32;
  mix-blend-mode: screen;
}
.reasons-ambient__shape--1 {
  width: clamp(260px, 36vw, 420px);
  height: clamp(260px, 36vw, 420px);
  top: -22%;
  left: -14%;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.55), rgba(15, 23, 42, 0.14));
  transform: rotate(18deg);
}
.reasons-ambient__shape--2 {
  width: clamp(220px, 30vw, 340px);
  height: clamp(220px, 30vw, 340px);
  bottom: -26%;
  right: -8%;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.55), rgba(14, 165, 233, 0.08));
  transform: rotate(-16deg);
}
.reasons-wrapper {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  grid-template-columns: minmax(260px, 1.1fr) minmax(280px, 1fr);
  align-items: start;
}
.reasons-statement {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.95) 0%, rgba(226, 232, 240, 0.85) 100%);
  border-radius: 28px;
  padding: clamp(2rem, 3.4vw, 2.6rem);
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  gap: clamp(1.4rem, 2.5vw, 2rem);
}
.reasons-statement__head {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.reasons-statement__head h2 {
  margin: 0;
  font-size: clamp(2rem, 2.8vw, 2.6rem);
  color: #0f172a;
}
.reasons-statement__head p {
  margin: 0;
  color: #334155;
  line-height: 1.7;
}
.reasons-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.32rem 0.95rem;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.14);
  color: #0f172a;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  font-weight: 700;
}
.reasons-eyebrow::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
}
.reasons-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.reasons-checklist li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 600;
  color: #1f2937;
}
.reasons-checklist li::before {
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.35);
  display: inline-block;
}
.reasons-kpis {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}
.reasons-kpi {
  border-radius: 18px;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.9) 0%, rgba(226, 232, 240, 0.7) 100%);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.reasons-kpi strong {
  font-size: clamp(1.8rem, 2.4vw, 2.3rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
}
.reasons-kpi span {
  font-size: 0.85rem;
  color: #475569;
  font-weight: 600;
}
.reasons-cards {
  display: grid;
  gap: clamp(1.2rem, 2.2vw, 1.8rem);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.reason-card {
  position: relative;
  border-radius: 24px;
  padding: clamp(1.4rem, 2.4vw, 1.9rem);
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.92) 0%, rgba(241, 245, 249, 0.78) 100%);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.12);
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.reason-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.16);
}
.reason-card--highlight {
  background: linear-gradient(165deg, rgba(59, 130, 246, 0.18) 0%, rgba(148, 163, 184, 0.08) 100%);
  border-color: rgba(59, 130, 246, 0.28);
}
.reason-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(14, 165, 233, 0.3));
  color: #2563eb;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.25);
}
.reason-card--highlight .reason-card__icon {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.35), rgba(14, 165, 233, 0.4));
  color: #0f172a;
}
.reason-card__icon svg {
  width: 24px;
  height: 24px;
}
.reason-card__body h3 {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
  color: #0f172a;
}
.reason-card__body p {
  margin: 0;
  color: #475569;
  line-height: 1.6;
  font-weight: 500;
}
@media (max-width: 980px) {
  .reasons-wrapper {
    grid-template-columns: 1fr;
  }
  .reasons-cards {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}
@media (max-width: 640px) {
  .reasons-statement {
    padding: 1.8rem;
  }
  .reason-card {
    align-items: center;
  }
}

/* ========== OPINIONES ========== */
.reviews {
  position: relative;
  isolation: isolate;
  padding: clamp(4rem, 7vw, 6rem) 0;
  background:
    radial-gradient(120% 120% at 0% 12%, rgba(37, 99, 235, 0.12) 0%, rgba(37, 99, 235, 0) 55%),
    radial-gradient(140% 140% at 100% 8%, rgba(14, 165, 233, 0.1) 0%, rgba(14, 165, 233, 0) 65%),
    #eef3fb;
  overflow: hidden;
}
.reviews-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.reviews-ambient__shape {
  position: absolute;
  border-radius: 999px;
  filter: blur(0);
  opacity: 0.35;
  mix-blend-mode: screen;
}
.reviews-ambient__shape--1 {
  width: clamp(240px, 34vw, 380px);
  height: clamp(240px, 34vw, 380px);
  top: -18%;
  left: -12%;
  background: linear-gradient(140deg, rgba(14, 165, 233, 0.5), rgba(59, 130, 246, 0.15));
  transform: rotate(18deg);
}
.reviews-ambient__shape--2 {
  width: clamp(200px, 30vw, 320px);
  height: clamp(200px, 30vw, 320px);
  bottom: -24%;
  right: -8%;
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.55), rgba(15, 23, 42, 0.18));
  transform: rotate(-16deg);
}
.reviews-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(2.2rem, 4vw, 3.2rem);
}
.reviews-head {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.reviews-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.14);
  color: #0f172a;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.reviews-eyebrow::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
}
.reviews-head h2 {
  font-size: clamp(1.9rem, 2.7vw, 2.6rem);
  margin: 0;
  color: #0f172a;
}
.reviews-head p {
  margin: 0;
  color: #334155;
  line-height: 1.6;
}
.reviews-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1.2rem, 2.4vw, 1.8rem);
}
.reviews-scorecard,
.reviews-cta-card {
  position: relative;
  border-radius: 22px;
  padding: clamp(1.6rem, 3vw, 2.1rem);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.92) 20%, rgba(226, 232, 240, 0.78) 100%);
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.4rem);
}
.reviews-score {
  display: flex;
  align-items: baseline;
  gap: 1.1rem;
}
.reviews-score strong {
  font-size: clamp(2.8rem, 4vw, 3.4rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
}
.reviews-stars {
  font-size: 1rem;
  letter-spacing: 0.15em;
  color: #fbbf24;
  display: inline-flex;
}
.reviews-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.reviews-points li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: #1f2937;
}
.reviews-points li::before {
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
}
.reviews-cta-card {
  background: linear-gradient(160deg, rgba(15, 23, 42, 0.92) 0%, rgba(37, 99, 235, 0.75) 100%);
  color: #e2e8f0;
  border: 1px solid rgba(96, 165, 250, 0.35);
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.35);
}
.reviews-cta-card h3 {
  margin: 0;
  font-size: 1.35rem;
}
.reviews-cta-card p {
  margin: 0;
  color: #bfdbfe;
  line-height: 1.6;
}
.reviews-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.4rem;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #38bdf8, #2563eb);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.reviews-cta-btn::after {
  content: ">";
  font-size: 1rem;
}
.reviews-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.35);
}
.reviews-cta-note {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.75);
}
.reviews-grid {
  display: grid;
  gap: clamp(1.4rem, 2.4vw, 2rem);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.review-card {
  position: relative;
  border-radius: 22px;
  padding: clamp(1.4rem, 2.6vw, 1.8rem);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.96) 10%, rgba(226, 232, 240, 0.82) 100%);
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.12);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.15);
}
.review-card--spotlight {
  background: linear-gradient(160deg, rgba(37, 99, 235, 0.12) 0%, rgba(148, 163, 184, 0.05) 100%);
  border: 1px solid rgba(37, 99, 235, 0.25);
}
.review-card--spotlight .review-card__text {
  font-size: 1.05rem;
  font-style: italic;
}
.review-card__header {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.review-card__avatar {
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.18);
}
.review-card__header strong {
  font-size: 1rem;
  color: #0f172a;
}
.review-card__header span {
  display: block;
  font-size: 0.85rem;
  color: #64748b;
}
.review-card__text {
  margin: 0;
  color: #1f2937;
  line-height: 1.6;
  font-weight: 500;
}
.review-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: #475569;
}
.review-card__footer time {
  font-weight: 600;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .reviews-metrics {
    grid-template-columns: 1fr;
  }
  .reviews-cta-card,
  .reviews-scorecard {
    padding: 1.6rem;
  }
}
@media (max-width: 640px) {
  .reviews-head {
    text-align: left;
  }
  .reviews-stars {
    letter-spacing: 0.2em;
  }
}


/* ========== CONTACTO ========== */
.contacto {
  position: relative;
  isolation: isolate;
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(0, 123, 255, 0.08) 0%, rgba(0, 123, 255, 0) 55%),
    radial-gradient(140% 140% at 100% 10%, rgba(15, 23, 42, 0.08) 0%, rgba(15, 23, 42, 0) 62%),
    #f3f5f9;
  overflow: hidden;
}
.contacto-ambient {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.contacto-ambient__shape {
  position: absolute;
  width: clamp(220px, 35vw, 380px);
  height: clamp(220px, 35vw, 380px);
  border-radius: 999px;
  opacity: 0.45;
  filter: blur(0);
  mix-blend-mode: screen;
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.55), rgba(0, 123, 255, 0.08));
}
.contacto-ambient__shape--1 {
  top: -12%;
  left: -14%;
  transform: rotate(18deg);
}
.contacto-ambient__shape--2 {
  bottom: -18%;
  right: -12%;
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.48), rgba(37, 99, 235, 0.18));
  transform: rotate(-24deg);
}
.contacto-wrapper {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: stretch;
}
.contacto-panel {
  position: relative;
  border-radius: 26px;
  padding: clamp(1.8rem, 3vw, 2.6rem);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.14);
  backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  gap: clamp(1.4rem, 2.6vw, 2rem);
  overflow: hidden;
  z-index: 0;
}
.contacto-panel--primary {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.95) 0%, rgba(241, 245, 249, 0.88) 55%, rgba(226, 232, 240, 0.92) 100%);
}
.contacto-panel--primary::before,
.contacto-panel--primary::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: -1;
  filter: blur(0);
}
.contacto-panel--primary::before {
  width: 320px;
  height: 320px;
  top: -120px;
  right: -140px;
  background: radial-gradient(circle, rgba(0, 123, 255, 0.38), rgba(0, 123, 255, 0));
}
.contacto-panel--primary::after {
  width: 260px;
  height: 260px;
  bottom: -160px;
  left: -120px;
  background: radial-gradient(circle, rgba(15, 23, 42, 0.22), rgba(15, 23, 42, 0));
}
.contacto-panel__header h2 {
  font-size: clamp(1.9rem, 2.6vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: #0f172a;
}
.contacto-panel__header p {
  margin: 0;
  color: #334155;
  line-height: 1.6;
}
.contacto-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.85rem;
  border-radius: 999px;
  background: rgba(0, 123, 255, 0.12);
  color: #0f172a;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.contacto-eyebrow::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
}
.contacto-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0;
}
.contacto-pill {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.7));
  border-radius: 999px;
  padding: 0.5rem 1.3rem;
  font-weight: 600;
  color: #0f172a;
  border: 1px solid rgba(148, 163, 184, 0.26);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}
.contacto-response {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, 0.25);
  background: rgba(37, 99, 235, 0.08);
  color: #1d4ed8;
  font-weight: 600;
  width: fit-content;
}
.contacto-response__ping {
  position: relative;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #2563eb;
  box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.45);
  animation: contacto-ping 2.6s ease-out infinite;
}
.contacto-response__ping::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.25);
}
@keyframes contacto-ping {
  0% {
    transform: scale(0.85);
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.45);
  }
  70% {
    transform: scale(1.3);
    opacity: 0.6;
    box-shadow: 0 0 0 10px rgba(37, 99, 235, 0);
  }
  100% {
    transform: scale(0.85);
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
  }
}
.contacto-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.contacto-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  border: 1px solid transparent;
  cursor: pointer;
}
.contacto-btn:hover {
  transform: translateY(-3px);
}
.contacto-btn__label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.contacto-btn__label::after {
  content: ">";
  font-size: 1rem;
  transition: transform 0.3s ease;
}
.contacto-btn:hover .contacto-btn__label::after {
  transform: translateX(4px);
}
.contacto-btn--whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 18px 36px rgba(18, 140, 126, 0.35);
}
.contacto-btn--whatsapp:hover {
  box-shadow: 0 22px 44px rgba(18, 140, 126, 0.45);
}
.contacto-btn--outline {
  background: #ffffff;
  color: var(--primary, #0f172a);
  border-color: rgba(15, 23, 42, 0.2);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}
.contacto-btn--outline:hover {
  border-color: var(--primary, #0f172a);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}
.contacto-details {
  display: grid;
  gap: 0.9rem;
  margin: 0;
}
.contacto-detail {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(226, 232, 240, 0.7));
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}
.contacto-detail dt {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #475569;
}
.contacto-detail dd {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
}
.contacto-detail a {
  color: inherit;
  text-decoration: none;
}
.contacto-detail a:hover {
  text-decoration: underline;
}
.contacto-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.2rem;
}
.contacto-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
  transition: transform 0.3s ease;
}
.contacto-step:hover {
  transform: translateY(-3px);
}
.contacto-step__index {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  flex-shrink: 0;
}
.contacto-step h3 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
  color: #0f172a;
}
.contacto-step p {
  margin: 0;
  color: #475569;
  line-height: 1.5;
}
.contacto-panel--map {
  background: linear-gradient(165deg, rgba(15, 23, 42, 0.92) 0%, rgba(30, 41, 59, 0.9) 100%);
  border: 1px solid rgba(30, 41, 59, 0.55);
  color: #e2e8f0;
  padding: clamp(1.4rem, 2.4vw, 2.1rem);
  gap: clamp(1rem, 2vw, 1.5rem);
  align-self: flex-start;
}
.contacto-panel--map::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -90px;
  top: -110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.5), rgba(59, 130, 246, 0));
  opacity: 0.7;
  z-index: -1;
}
.contacto-panel__floating {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  background: rgba(15, 23, 42, 0.66);
  border-radius: 18px;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.12), 0 18px 40px rgba(15, 23, 42, 0.25);
}
.contacto-panel__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.2);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #bfdbfe;
}
.contacto-panel__badge::before {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: #3b82f6;
}
.contacto-panel__floating h3 {
  margin: 0;
  font-size: 1.4rem;
}
.contacto-panel__floating p {
  margin: 0;
  color: #cbd5f5;
  line-height: 1.5;
}
.contacto-map .map-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(10, 15, 35, 0.5);
  aspect-ratio: 16 / 11;
}
.contacto-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.contacto-panel__footer {
  margin-top: clamp(0.6rem, 1.6vw, 1.2rem);
}
.contacto-badges {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.contacto-badges li {
  background: rgba(148, 163, 184, 0.2);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #e2e8f0;
  border: 1px solid rgba(203, 213, 225, 0.25);
}
@media (max-width: 820px) {
  .contacto-panel {
    padding: 1.6rem;
  }
  .contacto-step {
    align-items: stretch;
  }
}
@media (max-width: 640px) {
  .contacto {
    padding: 3.5rem 0;
  }
  .contacto-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .contacto-btn {
    width: 100%;
  }
  .contacto-detail {
    flex-direction: column;
    align-items: flex-start;
  }
  .contacto-detail dd {
    font-size: 0.95rem;
  }
  .contacto-map .map-frame {
    aspect-ratio: 4 / 3;
  }
}

/* ========== FOOTER ========== */
.footer {
  background: #0f172a;
  color: #fff;
  padding: 3rem 0 2rem;
}
.footer-wrapper {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.footer-logo span {
  color: var(--primary);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1rem;
}
.footer-legal {
  display: flex;
  gap: 0.5rem;
}
.footer-legal a {
  color: #ddd;
}
.footer-legal a:hover {
  color: #fff;
}

/* ========== BOTÓN WHATSAPP FLOTANTE ========== */
.wa-fab {
  position: fixed;
  bottom: clamp(18px, 4vw, 28px);
  right: clamp(16px, 4vw, 28px);
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem;
  box-shadow: 0 12px 28px rgba(18, 140, 126, 0.4);
  z-index: 999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.wa-fab:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(18, 140, 126, 0.48);
}
.wa-fab svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.wa-label {
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  display: none;
}
@media (min-width: 768px) {
  .wa-fab {
    padding: 0.85rem 1.35rem;
  }
  .wa-label {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
  }
}
@media (max-width: 767px) {
  .wa-fab {
    width: 62px;
    height: 62px;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .hdr__overlay {
    justify-content: center;
    align-items: flex-start;
    padding: clamp(68px, 12vw, 96px) 1.2rem 1.8rem;
  }
  .hdr__panel {
    width: min(480px, 100%);
    margin: 0;
    border-radius: 22px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.28);
    max-height: calc(100vh - clamp(68px, 12vw, 96px));
  }
}

/* ===================================================
   FOTOS REALES
   =================================================== */
.real-hero {
  position: relative;
  padding: clamp(4rem, 8vw, 6.5rem) 0 clamp(3.5rem, 6vw, 5rem);
  background: linear-gradient(145deg, rgba(14, 165, 233, 0.08), rgba(0, 123, 255, 0.05), rgba(30, 221, 136, 0.08));
  overflow: hidden;
}
.real-hero__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.real-hero__shape {
  position: absolute;
  background: radial-gradient(circle at center, rgba(14, 165, 233, 0.18), transparent 70%);
  border-radius: 999px;
  filter: blur(0);
}
.real-hero__shape--1 {
  width: 420px;
  height: 420px;
  top: -160px;
  right: -120px;
}
.real-hero__shape--2 {
  width: 260px;
  height: 260px;
  bottom: -100px;
  left: 10%;
  background: radial-gradient(circle at center, rgba(30, 221, 136, 0.2), transparent 70%);
}
.real-hero__shape--3 {
  width: 320px;
  height: 320px;
  bottom: -140px;
  right: 15%;
  background: radial-gradient(circle at center, rgba(14, 165, 233, 0.14), transparent 70%);
}
.real-hero__grid {
  position: relative;
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}
@media (min-width: 960px) {
  .real-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 320px);
  }
}
.real-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: #0ea5e9;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: rgba(14, 165, 233, 0.14);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  margin-bottom: 1.2rem;
}
.real-hero__intro h1 {
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  line-height: 1.15;
  margin-bottom: 1.2rem;
  color: #0f172a;
}
.real-hero__intro p {
  font-size: 1.05rem;
  color: #334155;
  margin-bottom: 1.8rem;
  max-width: 640px;
}
.real-hero__pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.real-hero__pills li {
  padding: 0.45rem 0.9rem;
  background: rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #1f2937;
}
.real-hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.9rem;
}
.real-hero__stat {
  background: rgba(255, 255, 255, 0.78);
  border-radius: 18px;
  padding: 1.1rem 1.2rem;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(14, 165, 233, 0.1);
}
.real-hero__stat-value {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
}
.real-hero__stat-label {
  display: block;
  font-size: 0.85rem;
  color: #475569;
  margin-top: 0.3rem;
}
.real-hero__note {
  background: rgba(255, 255, 255, 0.88);
  border-radius: 22px;
  padding: 1.8rem;
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.1);
  border: 1px solid rgba(0, 123, 255, 0.12);
  backdrop-filter: blur(14px);
  display: grid;
  gap: 0.9rem;
  position: relative;
}
.real-hero__badge {
  display: inline-block;
  padding: 0.35rem 0.7rem;
  background: rgba(0, 123, 255, 0.12);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #0369a1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.real-hero__note p {
  color: #475569;
  font-size: 0.95rem;
}
.real-hero__signature {
  font-weight: 600;
  color: #1e293b;
  margin-top: 0.4rem;
}

.real-gallery-controls {
  position: sticky;
  top: 72px;
  z-index: 100;
  background: rgba(248, 250, 252, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}
.real-gallery-controls__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
  padding: 1.2rem 0;
}
.real-gallery-controls__label {
  font-weight: 600;
  color: #1f2937;
}
.gallery-chip {
  border: none;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: #475569;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 1px solid rgba(148, 163, 184, 0.25);
}
.gallery-chip:hover {
  color: var(--primary);
  border-color: rgba(14, 165, 233, 0.4);
  box-shadow: 0 14px 30px rgba(14, 165, 233, 0.18);
}
.gallery-chip.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-color: transparent;
  box-shadow: 0 16px 32px rgba(59, 130, 246, 0.25);
}

.real-gallery {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}
.real-gallery__grid {
  display: grid;
  gap: clamp(1.4rem, 4vw, 2rem);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.real-gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  min-height: 320px;
  background: linear-gradient(145deg, rgba(148, 163, 184, 0.18), rgba(226, 232, 240, 0.25));
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.14);
  transition: transform 0.45s ease, box-shadow 0.45s ease, opacity 0.3s ease;
  display: flex;
}
.real-gallery__item.is-hidden {
  pointer-events: none;
  opacity: 0;
  transform: scale(0.95);
}
.real-gallery__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 72px rgba(15, 23, 42, 0.22);
}
.real-gallery__item--tall {
  min-height: 520px;
}
@media (min-width: 1100px) {
  .real-gallery__item--tall {
    grid-row: span 2;
  }
  .real-gallery__item--wide {
    grid-column: span 2;
  }
  .real-gallery__item--highlight {
    grid-column: span 2;
  }
}
.real-gallery__item--highlight {
  border: 2px solid rgba(14, 165, 233, 0.3);
}
.real-gallery__figure {
  position: relative;
  width: 100%;
  display: flex;
}
.real-gallery__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.real-gallery__item:hover .real-gallery__figure img {
  transform: scale(1.05);
}
.real-gallery__caption {
  position: absolute;
  inset: auto 0 0;
  padding: 1.4rem 1.3rem 1.6rem;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0));
  color: #fff;
  transform: translateY(45%);
  transition: transform 0.35s ease;
  display: grid;
  gap: 0.7rem;
}
.real-gallery__item:hover .real-gallery__caption {
  transform: translateY(0);
}
.real-gallery__title {
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.3;
}
.real-gallery__tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.real-gallery__tags li {
  background: rgba(255, 255, 255, 0.14);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.real-cta {
  padding: clamp(3.5rem, 6vw, 5rem) 0 clamp(3rem, 5vw, 4.2rem);
  background: linear-gradient(150deg, rgba(30, 221, 136, 0.08), rgba(14, 165, 233, 0.14), rgba(255, 255, 255, 0.95));
}
.real-cta__grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3.2rem);
  align-items: start;
}
@media (min-width: 960px) {
  .real-cta__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 360px);
  }
}
.real-cta__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #0f172a;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.real-cta h2 {
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: 1rem;
}
.real-cta p {
  color: #334155;
  margin-bottom: 1.6rem;
}
.real-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.real-cta__btn {
  min-width: 200px;
  justify-content: center;
}
.real-cta__list {
  list-style: none;
  display: grid;
  gap: 1rem;
}
.real-cta__list li {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 18px;
  padding: 1rem 1.1rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}
.real-cta__icon {
  font-size: 1.4rem;
  line-height: 1;
  margin-top: 0.35rem;
}
.real-cta__list h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
  color: #0f172a;
}
.real-cta__list p {
  margin: 0;
  color: #475569;
  font-size: 0.92rem;
}

@media (max-width: 640px) {
  .real-gallery-controls {
    top: 64px;
  }
  .real-gallery-controls__inner {
    gap: 0.6rem;
  }
  .gallery-chip {
    padding: 0.4rem 0.85rem;
    font-size: 0.85rem;
  }
  .real-gallery__caption {
    transform: translateY(0);
  }
  .real-gallery__item:hover .real-gallery__caption {
    transform: translateY(0);
  }
}
