/* ============================================================
   DE LA ROSA SERVEIS — Hoja de estilos principal
   Diseño moderno 2026: variables CSS, tipografía fluida,
   grid/flex, glassmorphism, animaciones de scroll.
   ============================================================ */

/* ---------- Variables ---------- */
:root {
  --c-primary: #e71f75;
  --c-primary-dark: #b8145c;
  --c-primary-light: #ff5da0;
  --c-dark: #14181f;
  --c-dark-2: #1d232d;
  --c-gray: #5b6472;
  --c-gray-light: #eef1f5;
  --c-bg: #ffffff;
  --c-bg-soft: #f7f8fa;
  --c-white: #ffffff;
  --c-anthracite: #383e42;

  --grad-primary: linear-gradient(135deg, #e71f75 0%, #ff5da0 100%);
  --grad-dark: linear-gradient(180deg, rgba(10, 12, 16, .55) 0%, rgba(10, 12, 16, .75) 100%);

  --font-head: "Sora", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  --fs-h1: clamp(2.1rem, 4.5vw + .5rem, 4rem);
  --fs-h2: clamp(1.6rem, 2.6vw + .5rem, 2.6rem);
  --fs-h3: clamp(1.15rem, 1.2vw + .6rem, 1.45rem);
  --fs-body: clamp(1rem, .3vw + .9rem, 1.075rem);

  --radius: 18px;
  --radius-sm: 10px;
  --shadow-1: 0 6px 24px rgba(20, 24, 31, .08);
  --shadow-2: 0 18px 50px rgba(20, 24, 31, .16);
  --container: 1200px;
  --header-h: 76px;
  --transition: .35s cubic-bezier(.25, .8, .35, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--c-dark);
  background: var(--c-bg);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; font-weight: 700; }

.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }

section { padding-block: clamp(3.5rem, 7vw, 6.5rem); }

/* ---------- Utilidades ---------- */
.section-tag {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .8rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--c-primary); margin-bottom: 1rem;
}
.section-tag::before { content: ""; width: 34px; height: 2px; background: var(--grad-primary); border-radius: 2px; }

.section-title { font-size: var(--fs-h2); margin-bottom: 1.1rem; }
.section-title em { font-style: normal; color: var(--c-primary); }
.section-lead { color: var(--c-gray); max-width: 62ch; }
.center { text-align: center; }
.center .section-lead { margin-inline: auto; }
.center .section-tag { justify-content: center; }
.center .section-tag::before { display: none; }

/* ---------- Contenido legal ---------- */
.legal-content { max-width: 820px; margin-inline: auto; }
.legal-content h2 { font-size: 1.35rem; margin: 2.4rem 0 1rem; padding-top: 1.4rem; border-top: 1px solid rgba(20,24,31,.08); }
.legal-content h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.legal-content h3 { font-size: 1.05rem; margin: 1.6rem 0 .6rem; color: var(--c-primary); }
.legal-content p { color: var(--c-gray); margin-bottom: 1rem; line-height: 1.7; }
.legal-content ul { color: var(--c-gray); margin: 0 0 1rem 1.2rem; line-height: 1.7; }
.legal-content li { margin-bottom: .4rem; }
.legal-content a { color: var(--c-primary); text-decoration: underline; }
.legal-content strong { color: var(--c-dark); }
.legal-updated { color: var(--c-gray); font-size: .85rem; font-style: italic; margin-top: 2.5rem; }
.legal-box { background: var(--c-bg-soft); border-radius: var(--radius-sm); padding: 1.3rem 1.5rem; margin-bottom: 1.6rem; }
.legal-box p:last-child { margin-bottom: 0; }

/* ---------- Aviso de cookies ---------- */
.cookie-banner {
  position: fixed; left: 1.2rem; right: 1.2rem; bottom: 1.2rem; z-index: 999;
  max-width: 720px; margin-inline: auto;
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-2); border: 1px solid rgba(20,24,31,.07);
  padding: 1.3rem 1.5rem; display: flex; flex-wrap: wrap; gap: 1.2rem; align-items: center; justify-content: space-between;
  transform: translateY(140%); opacity: 0; transition: transform .4s ease, opacity .4s ease; pointer-events: none;
}
.cookie-banner.show { transform: translateY(0); opacity: 1; pointer-events: auto; }
.cookie-banner-text { flex: 1 1 260px; }
.cookie-banner-text p { font-size: .87rem; color: var(--c-gray); margin: 0; line-height: 1.55; }
.cookie-banner-text a { color: var(--c-primary); text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: .7rem; flex: none; }
.cookie-banner-actions .btn { padding: .65rem 1.3rem; font-size: .87rem; white-space: nowrap; }
.btn-outline { background: transparent; color: var(--c-dark); border: 1.5px solid rgba(20,24,31,.18); }
.btn-outline:hover { background: var(--c-bg-soft); transform: translateY(-3px); }
@media (max-width: 560px) {
  .cookie-banner { left: .8rem; right: .8rem; bottom: .8rem; flex-direction: column; align-items: stretch; padding: 1.2rem; }
  .cookie-banner-actions { justify-content: stretch; }
  .cookie-banner-actions .btn { flex: 1; }
}

/* ---------- Botones ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .95rem 2rem; border-radius: 999px;
  font-weight: 600; font-size: .95rem; letter-spacing: .01em;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-primary { background: var(--grad-primary); color: #fff; box-shadow: 0 10px 26px rgba(231, 31, 117, .38); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(231, 31, 117, .48); }
.btn-ghost { background: rgba(255, 255, 255, .12); color: #fff; border: 1px solid rgba(255, 255, 255, .35); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: rgba(255, 255, 255, .22); transform: translateY(-3px); }
.btn-dark { background: var(--c-dark); color: #fff; }
.btn-dark:hover { background: var(--c-dark-2); transform: translateY(-3px); }

/* ---------- Barra superior ---------- */
.topbar {
  background: var(--c-anthracite); color: #cdd4de; font-size: .82rem;
  position: relative; z-index: 60;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; min-height: 38px; gap: 1rem; }
.topbar a { display: inline-flex; align-items: center; gap: .4rem; transition: color .2s; }
.topbar a:hover { color: #fff; }
.topbar svg { width: 14px; height: 14px; fill: var(--c-primary); }
.topbar-links { display: flex; gap: 1.4rem; }
.topbar-badge { display: inline-flex; align-items: center; gap: .45rem; color: #fff; font-weight: 600; }
.topbar-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #3ddc84; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(61, 220, 132, .5); } 50% { box-shadow: 0 0 0 6px rgba(61, 220, 132, 0); } }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(20, 24, 31, .06);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: var(--shadow-1); }
.nav { display: flex; align-items: center; justify-content: space-between; min-height: var(--header-h); gap: 1.5rem; }
.brand img { height: 66px; width: auto; display: block; }
.nav-menu > li > a { font-size: 1rem; }

.nav-menu { display: flex; align-items: center; gap: .25rem; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: flex; align-items: center; gap: .35rem;
  padding: .6rem .95rem; border-radius: 999px;
  font-weight: 500; font-size: .95rem; color: var(--c-dark);
  transition: background .25s, color .25s;
}
.nav-menu > li > a:hover, .nav-menu > li > a.active { background: rgba(231, 31, 117, .1); color: var(--c-primary); }
.nav-menu .caret { width: 14px; height: 14px; transition: transform .25s; }
.nav-menu li:hover .caret { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: calc(100% + 10px); left: 0; min-width: 250px;
  background: #fff; border-radius: var(--radius-sm); box-shadow: var(--shadow-2);
  padding: .55rem; opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .25s, transform .25s, visibility .25s;
}
.nav-menu li:hover > .dropdown, .nav-menu li.open > .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block; padding: .6rem .9rem; border-radius: 8px;
  font-size: .92rem; color: var(--c-dark); transition: background .2s, color .2s, padding-left .2s;
}
.dropdown a:hover { background: rgba(231, 31, 117, .08); color: var(--c-primary); padding-left: 1.15rem; }

.nav-cta { display: inline-flex; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: .5rem; }
.nav-toggle span { width: 26px; height: 2.5px; background: var(--c-dark); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; display: grid; place-items: center; text-align: center;
  min-height: min(88vh, 760px); padding: 6rem 0; color: #fff; overflow: hidden; isolation: isolate;
}
.hero.hero-sub { min-height: min(62vh, 540px); text-align: left; place-items: center start; }
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; animation: heroZoom 18s ease-in-out infinite alternate; }
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.08); } }
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: var(--grad-dark); }

.hero-content { max-width: 850px; }
.hero.hero-sub .hero-content { max-width: 720px; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: .6rem;
  background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .25);
  backdrop-filter: blur(8px); border-radius: 999px; padding: .45rem 1.1rem;
  font-size: .82rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 1.6rem;
}
.hero-kicker .dot { width: 8px; height: 8px; border-radius: 50%; background: #3ddc84; animation: pulse 2s infinite; }
.hero h1 { font-size: var(--fs-h1); margin-bottom: 1.3rem; letter-spacing: -.02em; }
.hero h1 em { font-style: normal; background: var(--grad-primary); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p { font-size: clamp(1.02rem, 1vw + .8rem, 1.25rem); color: rgba(255, 255, 255, .85); max-width: 64ch; margin-inline: auto; margin-bottom: 2.2rem; }
.hero.hero-sub p { margin-inline: 0; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero.hero-sub .hero-actions { justify-content: flex-start; }

.breadcrumbs { display: flex; gap: .5rem; align-items: center; font-size: .85rem; color: rgba(255,255,255,.7); margin-bottom: 1.4rem; flex-wrap: wrap; }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs span { color: var(--c-primary-light); }

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  width: 26px; height: 44px; border: 2px solid rgba(255,255,255,.5); border-radius: 999px;
}
.hero-scroll::before { content: ""; position: absolute; top: 8px; left: 50%; width: 4px; height: 9px; margin-left: -2px; border-radius: 4px; background: #fff; animation: wheel 1.8s infinite; }
@keyframes wheel { 0% { opacity: 1; transform: translateY(0); } 100% { opacity: 0; transform: translateY(14px); } }

/* ---------- Stats ---------- */
.stats { background: var(--c-anthracite); color: #fff; padding-block: 3rem; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 2rem; text-align: center; }
.stat h3 { font-size: clamp(2.2rem, 3.5vw, 3.2rem); background: var(--grad-primary); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat p { color: #9aa4b2; font-size: .92rem; margin-top: .3rem; }

/* ---------- Cards de servicios ---------- */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(265px, 1fr)); gap: 1.6rem; margin-top: 3rem; }
.card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: #fff; box-shadow: var(--shadow-1);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-2); }
.card-img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.card:hover .card-img img { transform: scale(1.08); }
.card-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(10,12,16,.45)); }
.card-body { padding: 1.5rem 1.5rem 1.7rem; display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.card-body h3 { font-size: var(--fs-h3); }
.card-body p { color: var(--c-gray); font-size: .93rem; flex: 1; }
.card-link { display: inline-flex; align-items: center; gap: .45rem; color: var(--c-primary); font-weight: 600; font-size: .92rem; margin-top: .4rem; transition: gap .25s; }
.card:hover .card-link { gap: .8rem; }
.card-link svg { width: 16px; height: 16px; }

/* ---------- Bloque split (imagen + texto) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split + .split { margin-top: clamp(3rem, 6vw, 5rem); }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow-2); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.split-media::before {
  content: ""; position: absolute; inset: 1.4rem -1.4rem -1.4rem 1.4rem;
  border-radius: var(--radius); background: var(--grad-primary); opacity: .12; z-index: -1;
}
.split-body h2, .split-body h3 { font-size: var(--fs-h2); margin-bottom: 1rem; }
.split-body p { color: var(--c-gray); margin-bottom: 1rem; }
.split-body .btn { margin-top: .8rem; }

/* ---------- Features (por qué elegirnos) ---------- */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.6rem; margin-top: 3rem; }
.feature {
  background: #fff; border: 1px solid rgba(20,24,31,.06); border-radius: var(--radius);
  padding: 2rem 1.7rem; transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-1); border-color: rgba(231,31,117,.35); }
.feature-icon {
  width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center;
  background: rgba(231, 31, 117, .1); color: var(--c-primary); margin-bottom: 1.2rem;
}
.feature-icon svg { width: 28px; height: 28px; }
.feature h3 { font-size: 1.15rem; margin-bottom: .55rem; }
.feature p { color: var(--c-gray); font-size: .92rem; }

/* ---------- Listas con check ---------- */
.check-list { display: grid; gap: .7rem; margin: 1.2rem 0; }
.check-list li { display: flex; gap: .7rem; align-items: flex-start; color: var(--c-gray); }
.check-list svg { width: 20px; height: 20px; flex: none; color: var(--c-primary); margin-top: .2rem; }
.check-list strong { color: var(--c-dark); }

/* ---------- Precios ---------- */
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.6rem; margin-top: 3rem; }
.price-card {
  background: #fff; border-radius: var(--radius); padding: 2.1rem 1.8rem;
  border: 1px solid rgba(20,24,31,.07); box-shadow: var(--shadow-1); position: relative; overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-2); }
.price-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--grad-primary); }
.price-card h3 { font-size: 1.05rem; margin-bottom: .8rem; min-height: 2.4em; }
.price-card .price { font-family: var(--font-head); font-size: 2.3rem; font-weight: 700; color: var(--c-primary); margin-bottom: .6rem; }
.price-card .price small { font-size: .85rem; color: var(--c-gray); font-weight: 500; }
.price-card p { color: var(--c-gray); font-size: .9rem; flex: 1; }
.price-note { margin-top: 1.8rem; color: var(--c-gray); font-size: .88rem; background: var(--c-bg-soft); border-left: 3px solid var(--c-primary); padding: 1rem 1.3rem; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }

/* ---------- Galería ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.1rem; margin-top: 3rem; }
.gallery-item { position: relative; border-radius: var(--radius-sm); overflow: hidden; cursor: zoom-in; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item::after {
  content: "+"; position: absolute; inset: 0; display: grid; place-items: center;
  font-size: 2.6rem; color: #fff; background: rgba(231, 31, 117, .55);
  opacity: 0; transition: opacity .3s;
}
.gallery-item:hover::after { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 100; display: grid; place-items: center;
  background: rgba(10, 12, 16, .92); backdrop-filter: blur(6px);
  opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: min(92vw, 1100px); max-height: 84vh; border-radius: var(--radius-sm); box-shadow: var(--shadow-2); object-fit: contain; }
.lightbox button { position: absolute; color: #fff; background: rgba(255,255,255,.1); border-radius: 50%; width: 52px; height: 52px; display: grid; place-items: center; transition: background .25s; }
.lightbox button:hover { background: var(--c-primary); }
.lightbox button svg { width: 24px; height: 24px; }
.lb-close { top: 1.4rem; right: 1.4rem; }
.lb-prev { left: 1.2rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 1.2rem; top: 50%; transform: translateY(-50%); }

/* ---------- Clientes ---------- */
.clients { background: var(--c-bg-soft); overflow: hidden; }
.marquee { display: flex; gap: 3rem; margin-top: 2.6rem; width: max-content; animation: marquee 58s linear infinite; }
.marquee:hover { animation-play-state: paused; }
.marquee img {
  height: 74px; width: auto; border-radius: var(--radius-sm);
  filter: grayscale(1); opacity: .65; transition: filter .3s, opacity .3s, transform .3s;
}
.marquee img:hover { filter: none; opacity: 1; transform: scale(1.06); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Testimonios ---------- */
.testimonials { background: var(--c-anthracite); color: #fff; position: relative; overflow: hidden; }
.testimonials::before {
  content: ""; position: absolute; top: -120px; right: -120px; width: 380px; height: 380px;
  border-radius: 50%; background: radial-gradient(circle, rgba(231,31,117,.25), transparent 70%);
}
.testimonials .section-lead { color: #9aa4b2; }
.testi-slider { position: relative; margin-top: 3rem; overflow: hidden; }
.testi-track { display: flex; transition: transform .55s cubic-bezier(.25,.8,.35,1); }
.testi-slide { flex: 0 0 100%; padding-inline: min(4vw, 3rem); }
.testi-card { max-width: 780px; margin-inline: auto; text-align: center; }
.testi-card .quote-mark { font-family: var(--font-head); font-size: 4.5rem; line-height: 1; color: var(--c-primary); }
.testi-card blockquote { font-size: clamp(1.02rem, 1vw + .85rem, 1.2rem); color: #d7dde6; font-style: italic; margin-bottom: 1.8rem; }
.testi-author { display: flex; align-items: center; justify-content: center; gap: 1rem; }
.testi-author img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; border: 3px solid var(--c-primary); }
.testi-author strong { display: block; font-family: var(--font-head); }
.testi-author span { font-size: .85rem; color: #9aa4b2; }
.testi-dots { display: flex; gap: .55rem; justify-content: center; margin-top: 2.4rem; }
.testi-dots button { width: 10px; height: 10px; border-radius: 999px; background: rgba(255,255,255,.25); transition: width .3s, background .3s; }
.testi-dots button.active { width: 30px; background: var(--c-primary); }

/* ---------- CTA banner ---------- */
.cta-banner { position: relative; isolation: isolate; color: #fff; text-align: center; overflow: hidden; }
.cta-banner .bg { position: absolute; inset: 0; z-index: -2; }
.cta-banner .bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-banner::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(120deg, rgba(184,20,92,.92), rgba(231,31,117,.82)); }
.cta-banner h2 { font-size: var(--fs-h2); max-width: 22ch; margin-inline: auto; margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,.9); max-width: 58ch; margin: 0 auto 2rem; }
.cta-banner .btn-primary { background: #fff; color: var(--c-primary); box-shadow: 0 10px 30px rgba(0,0,0,.25); }

/* ---------- Formulario / contacto ---------- */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.25fr; gap: clamp(2rem, 5vw, 4rem); align-items: stretch; margin-top: 3rem; }
.contact-info { display: flex; flex-direction: column; gap: 1.1rem; }
.info-card {
  display: flex; gap: 1.1rem; align-items: center;
  background: #fff; border: 1px solid rgba(20,24,31,.07); border-radius: var(--radius);
  padding: 1.3rem 1.5rem; box-shadow: var(--shadow-1); transition: transform var(--transition), box-shadow var(--transition);
}
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.info-card .feature-icon { margin: 0; flex: none; }
.info-card strong { font-family: var(--font-head); display: block; font-size: .95rem; }
.info-card a, .info-card span { color: var(--c-gray); font-size: .95rem; }
.info-card a:hover { color: var(--c-primary); }
.map-card { flex: 1; align-items: stretch; flex-direction: column; gap: 1.1rem; min-height: 220px; }
.map-card-header { display: flex; gap: 1.1rem; align-items: center; }
.map-embed { flex: 1; min-height: 200px; border-radius: var(--radius-sm); overflow: hidden; }
.map-embed iframe { display: block; width: 100%; height: 100%; }

.form-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-2); padding: clamp(1.6rem, 3vw, 2.6rem); }
.form-card h3 { font-size: 1.4rem; margin-bottom: .4rem; }
.form-card > p { color: var(--c-gray); font-size: .92rem; margin-bottom: 1.6rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-field { display: grid; gap: .4rem; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: .85rem; font-weight: 600; }
.form-field input, .form-field textarea {
  font: inherit; font-size: .95rem; width: 100%;
  padding: .85rem 1.1rem; border-radius: var(--radius-sm);
  border: 1.5px solid rgba(20,24,31,.12); background: var(--c-bg-soft);
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.form-field input:focus, .form-field textarea:focus {
  outline: none; border-color: var(--c-primary); background: #fff;
  box-shadow: 0 0 0 4px rgba(231, 31, 117, .12);
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-check { display: flex; gap: .6rem; align-items: flex-start; font-size: .85rem; color: var(--c-gray); grid-column: 1 / -1; }
.form-check input { width: 17px; height: 17px; margin-top: .2rem; accent-color: var(--c-primary); }

.captcha-box {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  border: 1px solid rgba(20,24,31,.14); border-radius: var(--radius-sm);
  background: var(--c-bg-soft); padding: .9rem 1.2rem; max-width: 320px;
}
.captcha-check { display: flex; align-items: center; gap: .8rem; cursor: pointer; user-select: none; }
.captcha-check input { position: absolute; opacity: 0; width: 22px; height: 22px; cursor: pointer; }
.captcha-checkmark {
  width: 22px; height: 22px; flex: none; border-radius: 4px; border: 2px solid rgba(20,24,31,.3);
  background: #fff; position: relative; transition: background .2s, border-color .2s;
}
.captcha-check input:checked ~ .captcha-checkmark { background: var(--c-primary); border-color: var(--c-primary); }
.captcha-checkmark::after {
  content: ""; position: absolute; display: none; left: 7px; top: 3px;
  width: 6px; height: 11px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg);
}
.captcha-check input:checked ~ .captcha-checkmark::after { display: block; }
.captcha-check input:focus-visible ~ .captcha-checkmark { outline: 2px solid var(--c-primary); outline-offset: 2px; }
.captcha-text { font-size: .92rem; font-weight: 500; color: var(--c-dark); }
.captcha-badge { width: 34px; height: 34px; flex: none; color: rgba(20,24,31,.25); }
.form-msg { grid-column: 1 / -1; font-size: .9rem; font-weight: 600; color: var(--c-primary); display: none; }
.form-msg.show { display: block; }

/* ---------- Footer ---------- */
.site-footer { background: var(--c-anthracite); color: #9aa4b2; padding-top: 4.5rem; font-size: .93rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer-grid h4 { color: #fff; font-size: 1rem; margin-bottom: 1.2rem; }
.footer-brand img { height: 78px; margin-bottom: 1.2rem; }
.footer-brand p { max-width: 32ch; }
.footer-grid ul { display: grid; gap: .6rem; }
.footer-grid ul a { transition: color .2s, padding-left .2s; }
.footer-grid ul a:hover { color: #fff; padding-left: .4rem; }
.footer-contact li { display: flex; gap: .7rem; align-items: flex-start; margin-bottom: .8rem; }
.footer-contact svg { width: 18px; height: 18px; flex: none; color: var(--c-primary); margin-top: .25rem; }
.footer-contact a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-block: 1.4rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .82rem; }
.footer-bottom a:hover { color: #fff; }

/* ---------- WhatsApp flotante ---------- */
.whatsapp-float {
  position: fixed; bottom: 1.6rem; right: 1.6rem; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366; display: grid; place-items: center;
  box-shadow: 0 10px 26px rgba(37, 211, 102, .45);
  transition: transform var(--transition);
}
.whatsapp-float:hover { transform: scale(1.12) rotate(8deg); }
.whatsapp-float svg { width: 32px; height: 32px; fill: #fff; }

/* ---------- Botón subir ---------- */
.to-top {
  position: fixed; bottom: 1.8rem; left: 1.6rem; z-index: 90;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--c-dark); color: #fff; display: grid; place-items: center;
  opacity: 0; visibility: hidden; transform: translateY(14px);
  transition: opacity .3s, transform .3s, visibility .3s, background .3s;
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--c-primary); }
.to-top svg { width: 20px; height: 20px; }

/* ---------- Animaciones de scroll ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s cubic-bezier(.25,.8,.35,1), transform .8s cubic-bezier(.25,.8,.35,1); }
.reveal.visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .12s; }
.reveal[data-delay="2"] { transition-delay: .24s; }
.reveal[data-delay="3"] { transition-delay: .36s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .nav-menu {
    position: fixed; inset: calc(var(--header-h)) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: .2rem;
    background: #fff; box-shadow: var(--shadow-2);
    padding: 1.2rem; max-height: calc(100vh - var(--header-h)); overflow-y: auto;
    transform: translateY(-130%); transition: transform .4s cubic-bezier(.25,.8,.35,1);
    z-index: -1;
  }
  .nav-menu.open { transform: translateY(0); }
  .nav-menu > li > a { justify-content: space-between; padding: .85rem 1rem; border-radius: var(--radius-sm); }
  .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; padding: 0 0 0 1rem; display: none; min-width: 0;
  }
  .nav-menu li.open > .dropdown { display: block; }
  .split, .contact-wrap { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .split-media::before { display: none; }
  .topbar-links span.hide-sm { display: none; }
}

@media (max-width: 560px) {
  .topbar .container { justify-content: center; }
  .topbar-badge { display: none; }
  .form-grid { grid-template-columns: 1fr; }
  .hero { min-height: 78vh; }
  .hero-actions .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .marquee img { height: 56px; }
}

