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

:root{
  --blue:#1a56db;
  --blue-dark:#1342b0;
  --blue-light:#e8f0fe;
  --white:#ffffff;
  --gray-1:#f8f9fb;
  --gray-2:#e9ecf1;
  --gray-3:#9ba3af;
  --ink:#111827;
  --ink-2:#374151;
}

html{scroll-behavior:smooth}
body{font-family:'DM Sans',sans-serif;background:var(--white);color:var(--ink);overflow-x:hidden}

/* ── NAV ── */
nav{
  position:fixed;top:0;left:0;right:0;z-index:200;
  height:68px;
  display:flex;align-items:center;justify-content:space-between;
  padding:0 2.5rem;
  background:rgba(255,255,255,0.95);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(0,0,0,0.07);
}

.nav-logo{
  font-family:'Instrument Serif',serif;
  font-size:1.25rem;color:var(--ink);
  letter-spacing:-0.01em;text-decoration:none;
}
.nav-logo b{color:var(--blue);font-weight:400;}

.nav-menu{display:flex;align-items:center;gap:1.75rem;list-style:none;}
.nav-menu a{color:var(--ink-2);text-decoration:none;font-size:0.875rem;font-weight:400;transition:color 0.2s;}
.nav-menu a:hover{color:var(--blue);}

.nav-btn{
  display:inline-flex;align-items:center;gap:0.5rem;
  background:var(--blue);color:white !important;
  padding:0.55rem 1.25rem;border-radius:8px;
  font-size:0.875rem !important;font-weight:500 !important;
  transition:background 0.2s,transform 0.15s;
}
.nav-btn:hover{background:var(--blue-dark) !important;transform:translateY(-1px);}

/* ── HERO ── */
.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:68px 2rem 9rem;
  overflow:hidden;
  text-align:center;
  background:#040a1a;
}

/* video de fondo a pantalla completa */
.hero-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:0;
}

/* overlay oscuro para legibilidad del texto */
.hero-overlay{
  position:absolute;
  inset:0;
  z-index:1;
  background: linear-gradient(180deg, rgba(4,10,26,0.80) 0%, rgba(7,19,41,0.55) 45%, rgba(4,10,26,0.82) 100%);
}

.hero-content{
  position:relative;
  z-index:2;
  display:flex;
  flex-direction:column;
  align-items:center;
  max-width:720px;
}

/* Badge */
.hero-badge{
  display:inline-flex;align-items:center;gap:0.5rem;
  background:rgba(255,255,255,0.1);
  backdrop-filter:blur(8px);
  border:1px solid rgba(255,255,255,0.25);
  border-radius:100px;
  padding:0.35rem 0.9rem;
  font-size:0.78rem;font-weight:500;
  color:white;
  margin-bottom:1.75rem;
  width:fit-content;
  opacity:0;animation:up 0.6s ease forwards 0.1s;
}

.badge-dot{
  width:6px;height:6px;
  background:#22c55e;border-radius:50%;
  animation:blink 2s infinite;flex-shrink:0;
}

@keyframes blink{0%,100%{opacity:1}50%{opacity:0.3}}

/* H1 */
.hero-h1{
  font-family:'Instrument Serif',serif;
  font-size:clamp(2.8rem,5vw,4.6rem);
  line-height:1.05;
  letter-spacing:-0.025em;
  color:white;
  margin-bottom:1.25rem;
  opacity:0;animation:up 0.7s ease forwards 0.22s;
}

.hero-h1 em{font-style:italic;color:#60a5fa;}

/* Sub */
.hero-sub{
  font-size:1rem;font-weight:300;line-height:1.75;
  color:rgba(255,255,255,0.85);
  max-width:480px;
  margin-bottom:2rem;
  opacity:0;animation:up 0.7s ease forwards 0.34s;
}

/* Reseñas inline */
.hero-reviews{
  display:flex;align-items:center;gap:0.75rem;
  margin-bottom:2.5rem;
  opacity:0;animation:up 0.7s ease forwards 0.44s;
}

.stars{display:flex;gap:2px;}
.stars svg{width:16px;height:16px;fill:#f59e0b;}

.reviews-text{font-size:0.82rem;color:rgba(255,255,255,0.85);}
.reviews-text strong{color:white;font-weight:500;}

/* CTAs */
.hero-ctas{
  display:flex;align-items:center;justify-content:center;gap:1rem;flex-wrap:wrap;
  margin-bottom:2.5rem;
  opacity:0;animation:up 0.7s ease forwards 0.54s;
}

.btn-primary{
  display:inline-flex;align-items:center;gap:0.6rem;
  background:var(--blue);color:white;
  font-family:'DM Sans',sans-serif;
  font-size:0.95rem;font-weight:500;
  padding:0.85rem 1.75rem;border-radius:10px;
  text-decoration:none;
  transition:background 0.2s,transform 0.15s,box-shadow 0.2s;
  box-shadow:0 4px 16px rgba(26,86,219,0.3);
}
.btn-primary:hover{background:var(--blue-dark);transform:translateY(-2px);box-shadow:0 8px 24px rgba(26,86,219,0.4);}
.btn-primary svg{width:17px;height:17px;flex-shrink:0;}

.btn-wa{
  display:inline-flex;align-items:center;gap:0.6rem;
  background:white;color:var(--ink-2);
  font-family:'DM Sans',sans-serif;
  font-size:0.9rem;font-weight:400;
  padding:0.85rem 1.5rem;border-radius:10px;
  text-decoration:none;
  border:1px solid var(--gray-2);
  transition:border-color 0.2s,background 0.2s,transform 0.15s;
}
.btn-wa:hover{border-color:rgba(0,0,0,0.15);background:var(--gray-1);transform:translateY(-1px);}
.btn-wa svg{width:17px;height:17px;fill:#25d366;flex-shrink:0;}

/* Trust pills */
.hero-pills{
  display:flex;flex-wrap:wrap;justify-content:center;gap:0.6rem;
  opacity:0;animation:up 0.7s ease forwards 0.64s;
}

.pill{
  display:inline-flex;align-items:center;gap:0.4rem;
  background:rgba(255,255,255,0.08);
  backdrop-filter:blur(8px);
  border:1px solid rgba(255,255,255,0.2);
  border-radius:100px;
  padding:0.35rem 0.85rem;
  font-size:0.78rem;font-weight:400;
  color:rgba(255,255,255,0.9);
}

.pill svg{
  width:13px;height:13px;
  stroke:#93c5fd;fill:none;
  stroke-width:2;stroke-linecap:round;stroke-linejoin:round;
  flex-shrink:0;
}

/* ── STRIP INFERIOR ── */
.hero-strip{
  position:absolute;
  bottom:0;left:0;right:0;
  z-index:10;
  background:white;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  border-top:1px solid var(--gray-2);
  box-shadow:0 -4px 20px rgba(0,0,0,0.04);
}

.strip-item{
  padding:1.25rem 1.5rem;
  display:flex;align-items:center;gap:0.75rem;
  border-right:1px solid var(--gray-2);
  transition:background 0.2s;
}
.strip-item:last-child{border-right:none;}
.strip-item:hover{background:var(--gray-1);}

.strip-icon{
  width:36px;height:36px;
  background:var(--blue-light);
  border-radius:8px;
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
}
.strip-icon svg{width:18px;height:18px;stroke:var(--blue);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;}

.strip-title{font-size:0.875rem;font-weight:500;color:var(--ink);line-height:1.2;}
.strip-sub{font-size:0.75rem;color:var(--gray-3);}

/* ── TICKER ── */
.ticker{
  position:fixed;bottom:1.5rem;left:50%;
  transform:translateX(-50%);z-index:300;
  background:var(--ink);color:white;
  border-radius:100px;
  padding:0.6rem 1.5rem;
  font-size:0.8rem;
  display:flex;align-items:center;gap:0.75rem;
  white-space:nowrap;
  opacity:0;animation:tickerUp 0.5s ease forwards 1s;
  box-shadow:0 4px 20px rgba(0,0,0,0.2);
}
.ticker-dot{width:7px;height:7px;background:#4ade80;border-radius:50%;animation:blink 1.5s infinite;flex-shrink:0;}
.ticker a{color:#93c5fd;text-decoration:none;font-weight:500;}
.ticker a:hover{color:white;}

/* WA */
.wa{
  position:fixed;bottom:4.5rem;right:1.5rem;z-index:300;
  width:52px;height:52px;background:#25d366;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  text-decoration:none;
  box-shadow:0 4px 16px rgba(37,211,102,0.4);
  transition:transform 0.2s;
  opacity:0;animation:up 0.5s ease forwards 1.2s;
}
.wa:hover{transform:scale(1.08);}
.wa svg{width:28px;height:28px;fill:white;}

/* ── ANIMATIONS ── */
@keyframes up{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}
@keyframes tickerUp{from{opacity:0;transform:translate(-50%,10px)}to{opacity:1;transform:translate(-50%,0)}}

/* ── RESPONSIVE hero ── */
@media(max-width:900px){
  nav{padding:0 1rem;}
  .nav-menu{display:none;}
  .hero{min-height:100svh;padding:100px 1.5rem 15rem;}
  .hero-strip{grid-template-columns:1fr 1fr;}
  .strip-item:nth-child(2){border-right:none;}
  .strip-item:nth-child(3){border-top:1px solid var(--gray-2);}
  .strip-item:nth-child(4){border-top:1px solid var(--gray-2);border-right:none;}
}

/* ══════════════════════════════════
   SERVICIOS
══════════════════════════════════ */
.servicios{
  padding:6rem 2.5rem;
  max-width:1280px;
  margin:0 auto;
}

.section-header{
  text-align:center;
  margin-bottom:4rem;
}

.section-tag{
  display:inline-flex;align-items:center;gap:0.5rem;
  background:var(--blue-light);
  border-radius:100px;
  padding:0.3rem 0.9rem;
  font-size:0.75rem;font-weight:500;
  color:var(--blue);
  letter-spacing:0.06em;
  text-transform:uppercase;
  margin-bottom:1rem;
}

.section-h2{
  font-family:'Instrument Serif',serif;
  font-size:clamp(2rem,4vw,3rem);
  line-height:1.1;
  letter-spacing:-0.02em;
  color:var(--ink);
  margin-bottom:1rem;
}

.section-h2 em{font-style:italic;color:var(--blue);}

.section-sub{
  font-size:1rem;font-weight:300;line-height:1.7;
  color:var(--ink-2);max-width:520px;margin:0 auto;
}

/* Grid */
.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1.5rem;
}

/* Card */
.svc-card{
  border-radius:16px;
  overflow:hidden;
  border:1px solid var(--gray-2);
  background:white;
  transition:transform 0.25s,box-shadow 0.25s,border-color 0.25s;
  cursor:pointer;
  text-decoration:none;
  color:inherit;
  display:flex;
  flex-direction:column;
}

.svc-card:hover{
  transform:translateY(-4px);
  box-shadow:0 16px 40px rgba(0,0,0,0.1);
  border-color:rgba(26,86,219,0.2);
}

/* ── Foto de tarjeta: gradiente CSS + icono decorativo ── */
.svc-photo{
  height:200px;
  position:relative;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:filter 0.3s;
}
.svc-card:hover .svc-photo{filter:brightness(1.08);}

/* Gradientes únicos por servicio */
.svc-photo--averia    { background: url('./assets/averia.jpg') center/cover; }
.svc-photo--desatasco { background: url('./assets/desatasco.jpg') center/cover; }
.svc-photo--caldera   { background: url('./assets/caldera.jpg') center/cover; }
.svc-photo--instalacion{ background: url('./assets/instalacion.jpg') center/cover; }
.svc-photo--reforma   { background: url('./assets/reforma.jpg') center/cover; }
.svc-photo--fugas     { background: url('./assets/fugas.jpg') center/cover; }

/* Patrón de fondo sutil */
.svc-photo::before{
  content:'';
  position:absolute;inset:0;
  background-image:radial-gradient(circle at 1px 1px, rgba(255,255,255,0.08) 1px, transparent 0);
  background-size:28px 28px;
}

/* Icono SVG decorativo centrado */
.svc-photo-icon{
  display: none !important;
}

/* Emoji centrado como elemento visual principal */
.svc-photo-emoji{
  display: none !important;
}

.svc-badge{
  position:absolute;top:1rem;left:1rem;
  background:white;
  border-radius:8px;
  padding:0.3rem 0.7rem;
  font-size:0.72rem;font-weight:500;
  color:var(--blue);
  box-shadow:0 2px 8px rgba(0,0,0,0.15);
  z-index:2;
}

/* Cuerpo */
.svc-body{
  padding:1.5rem;
  flex:1;
  display:flex;flex-direction:column;
}

.svc-icon{font-size:1.5rem;margin-bottom:0.6rem;}

.svc-name{
  font-family:'Instrument Serif',serif;
  font-size:1.2rem;
  color:var(--ink);
  margin-bottom:0.5rem;
  line-height:1.2;
}

.svc-desc{
  font-size:0.85rem;font-weight:300;
  color:var(--ink-2);line-height:1.6;
  margin-bottom:1.25rem;
  flex:1;
}

.svc-price{
  display:flex;align-items:center;justify-content:space-between;
  padding-top:1rem;
  border-top:1px solid var(--gray-2);
}

.price-label{font-size:0.72rem;color:var(--gray-3);}
.price-val{font-family:'Instrument Serif',serif;font-size:1.1rem;color:var(--ink);}

.svc-cta{
  display:inline-flex;align-items:center;gap:0.3rem;
  font-size:0.78rem;font-weight:500;
  color:var(--blue);
  text-decoration:none;
  transition:gap 0.2s;
}

.svc-card:hover .svc-cta{gap:0.6rem;}

.svc-cta svg{width:14px;height:14px;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;}

/* CTA inferior */
.services-cta{
  text-align:center;
  margin-top:3rem;
}

.btn-outline{
  display:inline-flex;align-items:center;gap:0.6rem;
  background:white;color:var(--blue);
  font-family:'DM Sans',sans-serif;
  font-size:0.95rem;font-weight:500;
  padding:0.85rem 2rem;border-radius:10px;
  text-decoration:none;
  border:1.5px solid var(--blue);
  transition:background 0.2s,color 0.2s,transform 0.15s;
}
.btn-outline:hover{background:var(--blue);color:white;transform:translateY(-1px);}

/* ══════════════════════════════════
   PROCESO
══════════════════════════════════ */
.proceso{
  padding:6rem 2.5rem;
  max-width:1280px;margin:0 auto;
}

.proceso-header{text-align:center;margin-bottom:4rem;}
.proceso-header .section-sub{margin:0 auto;}

.steps{
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:2rem;position:relative;
}

.steps::before{
  content:'';
  position:absolute;
  top:28px;left:calc(12.5% + 28px);right:calc(12.5% + 28px);
  height:1px;background:var(--gray-2);
  z-index:0;
}

.step{text-align:center;position:relative;z-index:1;}

.step-num{
  width:56px;height:56px;
  background:white;border:2px solid var(--gray-2);
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  margin:0 auto 1.25rem;
  font-family:'Instrument Serif',serif;
  font-size:1.2rem;color:var(--blue);
  transition:border-color 0.2s,background 0.2s;
}

.step:hover .step-num{border-color:var(--blue);background:var(--blue-light);}

.step-title{font-size:0.95rem;font-weight:500;color:var(--ink);margin-bottom:0.5rem;}
.step-desc{font-size:0.82rem;font-weight:300;color:var(--ink-2);line-height:1.6;}

.step-badge{
  display:inline-block;
  background:var(--blue-light);color:var(--blue);
  font-size:0.68rem;font-weight:500;
  padding:0.2rem 0.6rem;border-radius:100px;
  margin-top:0.5rem;
}

/* ══════════════════════════════════
   TESTIMONIOS
══════════════════════════════════ */
.testimonios{
  background:var(--gray-1);
  padding:6rem 2.5rem;
}

.testimonios-inner{max-width:1280px;margin:0 auto;}
.testimonios-header{text-align:center;margin-bottom:4rem;}
.testimonios-header .section-sub{margin:0 auto;}

.reviews-grid{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:1.5rem;margin-bottom:3rem;
}

.review-card{
  background:white;border:1px solid var(--gray-2);
  border-radius:16px;padding:1.75rem;
  transition:transform 0.2s,box-shadow 0.2s;
}
.review-card:hover{transform:translateY(-3px);box-shadow:0 12px 32px rgba(0,0,0,0.08);}

.review-stars{display:flex;gap:3px;margin-bottom:1rem;}
.review-stars svg{width:16px;height:16px;fill:#f59e0b;}

.review-text{
  font-size:0.9rem;font-weight:300;line-height:1.7;
  color:var(--ink-2);margin-bottom:1.25rem;
  font-style:italic;
}

.review-author{
  display:flex;align-items:center;gap:0.75rem;
  padding-top:1rem;border-top:1px solid var(--gray-2);
}

.review-avatar{
  width:38px;height:38px;border-radius:50%;
  background:var(--blue-light);
  display:flex;align-items:center;justify-content:center;
  font-family:'Instrument Serif',serif;
  font-size:0.9rem;color:var(--blue);font-weight:400;
  flex-shrink:0;
}

.review-name{font-size:0.88rem;font-weight:500;color:var(--ink);}
.review-meta{font-size:0.75rem;color:var(--gray-3);}

.reviews-cta{
  text-align:center;
  display:flex;flex-direction:column;align-items:center;gap:0.75rem;
}

.google-badge{
  display:inline-flex;align-items:center;gap:0.75rem;
  background:white;border:1px solid var(--gray-2);
  border-radius:100px;padding:0.5rem 1.25rem;
  font-size:0.82rem;color:var(--ink-2);
}

.google-badge svg{width:18px;height:18px;}

/* ══════════════════════════════════
   ZONAS
══════════════════════════════════ */
.zonas{
  padding:6rem 2.5rem;
  max-width:1280px;margin:0 auto;
}

.zonas-header{
  max-width:640px;
  margin-bottom:2.5rem;
}

.zonas-pills{
  display:flex;flex-wrap:wrap;gap:0.6rem;margin:1.5rem 0 2rem;
}

.zona-pill{
  background:var(--gray-1);border:1px solid var(--gray-2);
  border-radius:100px;padding:0.4rem 1rem;
  font-size:0.82rem;color:var(--ink-2);
  transition:background 0.2s,border-color 0.2s,color 0.2s;
  cursor:default;
}
.zona-pill:hover{background:var(--blue-light);border-color:rgba(26,86,219,0.2);color:var(--blue);}
.zona-pill.destacada{background:var(--blue-light);border-color:rgba(26,86,219,0.2);color:var(--blue);font-weight:500;}

.zonas-note{
  display:flex;align-items:center;gap:0.6rem;
  font-size:0.82rem;color:var(--ink-2);
  padding:1rem 1.25rem;
  background:var(--gray-1);border-radius:10px;
  border:1px solid var(--gray-2);
}
.zonas-note svg{width:16px;height:16px;stroke:var(--blue);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;flex-shrink:0;}

.zonas-map{
  border-radius:16px;
  overflow:hidden;
  border:1px solid var(--gray-2);
  box-shadow:0 8px 32px rgba(0,0,0,0.08);
}
.zonas-map iframe{display:block;width:100%;height:480px;}

/* ══════════════════════════════════
   FAQ
══════════════════════════════════ */
.faq{
  background:var(--gray-1);
  padding:6rem 2.5rem;
}

.faq-inner{
  max-width:800px;margin:0 auto;
  text-align:center;
}

.faq-inner .section-sub{margin:0 auto 3rem;}

.faq-list{text-align:left;display:flex;flex-direction:column;gap:0.75rem;}

.faq-item{
  background:white;border:1px solid var(--gray-2);
  border-radius:12px;overflow:hidden;
}

.faq-q{
  width:100%;background:none;border:none;cursor:pointer;
  padding:1.25rem 1.5rem;
  display:flex;align-items:center;justify-content:space-between;
  gap:1rem;text-align:left;
  font-family:'DM Sans',sans-serif;font-size:0.95rem;font-weight:500;
  color:var(--ink);transition:background 0.2s;
}
.faq-q:hover{background:var(--gray-1);}

.faq-q svg{
  width:18px;height:18px;stroke:var(--gray-3);fill:none;
  stroke-width:2;stroke-linecap:round;stroke-linejoin:round;
  flex-shrink:0;transition:transform 0.3s,stroke 0.2s;
}

.faq-item.open .faq-q svg{transform:rotate(45deg);stroke:var(--blue);}
.faq-item.open .faq-q{color:var(--blue);}

.faq-a{
  max-height:0;overflow:hidden;
  transition:max-height 0.35s ease;
}

.faq-a-inner{
  padding:0 1.5rem 1.25rem;
  font-size:0.88rem;font-weight:300;line-height:1.7;
  color:var(--ink-2);
  border-top:1px solid var(--gray-2);
  padding-top:1rem;
}

/* ══════════════════════════════════
   CITA ONLINE
══════════════════════════════════ */
.cita{
  padding:6rem 2.5rem;
  max-width:1280px;margin:0 auto;
}

.cita-inner{
  display:grid;grid-template-columns:1fr 1fr;
  gap:5rem;align-items:center;
}

.cita-left .section-sub{margin-bottom:2rem;}

.cita-puntos{display:flex;flex-direction:column;gap:0.75rem;}

.cita-punto{
  display:flex;align-items:center;gap:0.75rem;
  font-size:0.88rem;color:var(--ink-2);
}
.cita-punto svg{width:16px;height:16px;stroke:#22c55e;fill:none;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round;flex-shrink:0;}

.cita-form{
  background:var(--gray-1);border:1px solid var(--gray-2);
  border-radius:20px;padding:2.5rem;
}

.form-title{
  font-family:'Instrument Serif',serif;
  font-size:1.4rem;color:var(--ink);margin-bottom:0.4rem;
}
.form-sub{font-size:0.82rem;color:var(--gray-3);margin-bottom:1.75rem;}

.form-group{margin-bottom:1rem;}

.form-group label{
  display:block;font-size:0.78rem;font-weight:500;
  color:var(--ink-2);margin-bottom:0.4rem;letter-spacing:0.02em;
}

.form-group input,
.form-group select,
.form-group textarea{
  width:100%;
  background:white;border:1px solid var(--gray-2);
  border-radius:8px;padding:0.75rem 1rem;
  font-family:'DM Sans',sans-serif;font-size:0.9rem;color:var(--ink);
  transition:border-color 0.2s,box-shadow 0.2s;
  outline:none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
  border-color:var(--blue);
  box-shadow:0 0 0 3px rgba(26,86,219,0.1);
}

.form-group textarea{resize:vertical;min-height:90px;}

.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem;}

.btn-form{
  width:100%;
  display:flex;align-items:center;justify-content:center;gap:0.6rem;
  background:var(--blue);color:white;
  font-family:'DM Sans',sans-serif;font-size:0.95rem;font-weight:500;
  padding:0.9rem;border-radius:10px;border:none;cursor:pointer;
  margin-top:1.25rem;
  transition:background 0.2s,transform 0.15s;
  box-shadow:0 4px 16px rgba(26,86,219,0.3);
}
.btn-form:hover{background:var(--blue-dark);transform:translateY(-1px);}

.form-nota{font-size:0.72rem;color:var(--gray-3);text-align:center;margin-top:0.75rem;}

/* ══════════════════════════════════
   CTA BANNER
══════════════════════════════════ */
.cta-banner{
  background:var(--blue);
  padding:5rem 2.5rem;
  text-align:center;
  position:relative;overflow:hidden;
}

.cta-banner::before{
  content:'';position:absolute;
  top:-100px;right:-100px;
  width:400px;height:400px;
  background:rgba(255,255,255,0.05);
  border-radius:50%;
}

.cta-banner::after{
  content:'';position:absolute;
  bottom:-80px;left:-80px;
  width:300px;height:300px;
  background:rgba(255,255,255,0.04);
  border-radius:50%;
}

.cta-banner-content{position:relative;z-index:1;max-width:600px;margin:0 auto;}

.cta-banner h2{
  font-family:'Instrument Serif',serif;
  font-size:clamp(2rem,4vw,3rem);
  color:white;line-height:1.1;margin-bottom:1rem;
}

.cta-banner p{
  font-size:1rem;font-weight:300;color:rgba(255,255,255,0.8);
  line-height:1.7;margin-bottom:2.5rem;
}

.cta-banner-btns{
  display:flex;align-items:center;justify-content:center;gap:1rem;flex-wrap:wrap;
}

.btn-white{
  display:inline-flex;align-items:center;gap:0.6rem;
  background:white;color:var(--blue);
  font-family:'DM Sans',sans-serif;font-size:0.95rem;font-weight:500;
  padding:0.85rem 1.75rem;border-radius:10px;text-decoration:none;
  transition:opacity 0.2s,transform 0.15s;
}
.btn-white:hover{opacity:0.92;transform:translateY(-1px);}

.btn-white-outline{
  display:inline-flex;align-items:center;gap:0.6rem;
  background:transparent;color:white;
  font-family:'DM Sans',sans-serif;font-size:0.95rem;font-weight:400;
  padding:0.85rem 1.75rem;border-radius:10px;text-decoration:none;
  border:1px solid rgba(255,255,255,0.4);
  transition:background 0.2s,transform 0.15s;
}
.btn-white-outline:hover{background:rgba(255,255,255,0.1);transform:translateY(-1px);}

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
footer{
  background:var(--ink);color:white;
  padding:4rem 2.5rem 2rem;
}

.footer-inner{
  max-width:1280px;margin:0 auto;
  display:grid;grid-template-columns:2fr 1fr 1fr 1fr;
  gap:3rem;margin-bottom:3rem;
}

.footer-logo{
  font-family:'Instrument Serif',serif;
  font-size:1.25rem;color:white;margin-bottom:0.75rem;
}
.footer-logo b{color:#60a5fa;font-weight:400;}
.footer-desc{font-size:0.82rem;font-weight:300;color:rgba(255,255,255,0.55);line-height:1.7;margin-bottom:1.25rem;max-width:280px;}

.footer-contact{display:flex;flex-direction:column;gap:0.5rem;}
.footer-contact a{
  display:flex;align-items:center;gap:0.5rem;
  color:rgba(255,255,255,0.7);text-decoration:none;font-size:0.82rem;
  transition:color 0.2s;
}
.footer-contact a:hover{color:#60a5fa;}
.footer-contact svg{width:14px;height:14px;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;flex-shrink:0;}

.footer-col h4{font-size:0.78rem;font-weight:500;letter-spacing:0.08em;text-transform:uppercase;color:rgba(255,255,255,0.4);margin-bottom:1rem;}
.footer-col ul{list-style:none;display:flex;flex-direction:column;gap:0.5rem;}
.footer-col ul a{color:rgba(255,255,255,0.6);text-decoration:none;font-size:0.82rem;transition:color 0.2s;}
.footer-col ul a:hover{color:white;}

.footer-bottom{
  padding-top:2rem;border-top:1px solid rgba(255,255,255,0.08);
  display:flex;align-items:center;justify-content:space-between;
  flex-wrap:wrap;gap:1rem;
}
.footer-copy{font-size:0.75rem;color:rgba(255,255,255,0.35);}

/* ── RESPONSIVE general ── */
@media(max-width:900px){
  .cita-inner{grid-template-columns:1fr;gap:3rem;}
  .zonas-map iframe{height:320px;}
  .steps{grid-template-columns:1fr 1fr;gap:2rem;}
  .steps::before{display:none;}
  .reviews-grid{grid-template-columns:1fr;}
  .footer-inner{grid-template-columns:1fr 1fr;gap:2rem;}
  .testimonios,.zonas,.faq,.cita,.proceso,.cta-banner{padding:4rem 1.25rem;}
  .form-row{grid-template-columns:1fr;}
  .servicios{padding:4rem 1.25rem;}
  .services-grid{grid-template-columns:1fr 1fr;}
}

@media(max-width:600px){
  .footer-inner{grid-template-columns:1fr;}
  .steps{grid-template-columns:1fr;}
  .services-grid{grid-template-columns:1fr;}
}

/* ── TRUST STRIP ── */
.trust-strip{background:var(--blue);}
.trust-strip-inner{
  max-width:1280px;margin:0 auto;
  display:grid;grid-template-columns:repeat(3,1fr);
}
.trust-item{
  display:flex;align-items:center;gap:0.6rem;
  padding:0.85rem 1.25rem;
  border-right:1px solid rgba(255,255,255,0.12);
  color:white;
}
.trust-item:last-child{border-right:none;}
.trust-item svg{width:17px;height:17px;fill:none;stroke:rgba(255,255,255,0.8);stroke-width:2;stroke-linecap:round;stroke-linejoin:round;flex-shrink:0;}
.trust-label{font-size:0.78rem;font-weight:500;line-height:1.1;}
.trust-sub{font-size:0.68rem;opacity:0.65;}
@media(max-width:900px){
  .trust-strip-inner{grid-template-columns:1fr;}
  .trust-item{border-right:none;border-bottom:1px solid rgba(255,255,255,0.12);}
  .trust-item:last-child{border-bottom:none;}
}

/* ── ESTADÍSTICAS ── */
.stats-section{background:var(--ink);padding:4.5rem 2.5rem;}
.stats-inner{
  max-width:1280px;margin:0 auto;
  display:grid;grid-template-columns:repeat(4,1fr);
  text-align:center;
}
.stat-item{padding:1.5rem 1rem;border-right:1px solid rgba(255,255,255,0.07);}
.stat-item:last-child{border-right:none;}
.stat-num{
  font-family:'Instrument Serif',serif;
  font-size:clamp(2.5rem,4.5vw,3.75rem);
  color:white;line-height:1;
  margin-bottom:0.5rem;display:block;
}
.stat-suffix{font-size:0.55em;color:#60a5fa;}
.stat-label{font-size:0.8rem;font-weight:300;color:rgba(255,255,255,0.5);line-height:1.4;}
.stat-accent{display:block;width:28px;height:2px;background:var(--blue);border-radius:2px;margin:0.6rem auto 0;}
@media(max-width:900px){
  .stats-inner{grid-template-columns:1fr 1fr;}
  .stat-item:nth-child(2){border-right:none;}
  .stat-item:nth-child(3){border-top:1px solid rgba(255,255,255,0.07);}
  .stat-item:nth-child(4){border-top:1px solid rgba(255,255,255,0.07);border-right:none;}
}

/* ── MARCAS ── */
.marcas{padding:3rem 2.5rem;background:white;border-bottom:1px solid var(--gray-2);}
.marcas-inner{max-width:1280px;margin:0 auto;}
.marcas-title{text-align:center;font-size:0.72rem;font-weight:500;letter-spacing:0.1em;text-transform:uppercase;color:var(--gray-3);margin-bottom:1.75rem;}
.marcas-logos{display:flex;align-items:center;justify-content:center;flex-wrap:wrap;gap:0.5rem 1.5rem;}
.marca-chip{
  background:var(--gray-1);border:1px solid var(--gray-2);
  border-radius:8px;padding:0.55rem 1.1rem;
  font-family:'Instrument Serif',serif;font-size:1rem;
  color:var(--ink-2);letter-spacing:-0.01em;
  transition:background 0.2s,color 0.2s,border-color 0.2s;white-space:nowrap;
}
.marca-chip:hover{background:var(--blue-light);color:var(--blue);border-color:rgba(26,86,219,0.2);}
@media(max-width:600px){.marcas-logos{gap:0.4rem 0.75rem;}.marca-chip{font-size:0.88rem;padding:0.45rem 0.85rem;}}

/* ── POR QUÉ NOSOTROS ── */
.porq{padding:6rem 2.5rem;max-width:1280px;margin:0 auto;}
.porq-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem;margin-top:4rem;}
.porq-card{
  padding:1.75rem;
  background:var(--gray-1);border:1px solid var(--gray-2);
  border-radius:16px;
  transition:border-color 0.2s,box-shadow 0.2s,transform 0.2s,background 0.2s;
}
.porq-card:hover{border-color:rgba(26,86,219,0.2);box-shadow:0 8px 32px rgba(0,0,0,0.07);transform:translateY(-3px);background:white;}
.porq-icon{width:46px;height:46px;background:var(--blue-light);border-radius:12px;display:flex;align-items:center;justify-content:center;margin-bottom:1rem;}
.porq-icon svg{width:20px;height:20px;stroke:var(--blue);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;}
.porq-title{font-size:0.95rem;font-weight:500;color:var(--ink);margin-bottom:0.4rem;}
.porq-desc{font-size:0.82rem;font-weight:300;color:var(--ink-2);line-height:1.6;}
@media(max-width:900px){.porq-grid{grid-template-columns:1fr 1fr;}}
@media(max-width:600px){.porq-grid{grid-template-columns:1fr;}}

/* ── GARANTÍA ── */
.garantia{
  background:linear-gradient(135deg,#0a1929 0%,#0f2044 50%,#1a3b8f 100%);
  padding:6rem 2.5rem;position:relative;overflow:hidden;
}
.garantia::before{content:'';position:absolute;top:-120px;right:-80px;width:500px;height:500px;background:radial-gradient(circle,rgba(96,165,250,0.08) 0%,transparent 70%);border-radius:50%;}
.garantia::after{content:'';position:absolute;bottom:-80px;left:-60px;width:350px;height:350px;background:radial-gradient(circle,rgba(26,86,219,0.12) 0%,transparent 70%);border-radius:50%;}
.garantia-inner{max-width:1280px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:center;position:relative;z-index:1;}
.garantia .section-tag{background:rgba(255,255,255,0.1);color:rgba(255,255,255,0.9);border:1px solid rgba(255,255,255,0.15);}
.garantia .section-h2{color:white;}
.garantia .section-h2 em{color:#93c5fd;}
.garantia .section-sub{color:rgba(255,255,255,0.65);margin-bottom:2rem;}
.garantia-bullets{display:flex;flex-direction:column;gap:0.75rem;}
.garantia-bullet{display:flex;align-items:center;gap:0.75rem;color:rgba(255,255,255,0.85);font-size:0.88rem;}
.garantia-bullet svg{width:16px;height:16px;stroke:#4ade80;fill:none;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round;flex-shrink:0;}
.garantia-cards{display:flex;flex-direction:column;gap:1rem;}
.garantia-card{
  background:rgba(255,255,255,0.06);border:1px solid rgba(255,255,255,0.1);
  border-radius:16px;padding:1.4rem 1.6rem;
  display:flex;align-items:flex-start;gap:1rem;
  backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);
  transition:background 0.2s,border-color 0.2s;
}
.garantia-card:hover{background:rgba(255,255,255,0.09);border-color:rgba(255,255,255,0.18);}
.garantia-card-emoji{font-size:1.65rem;flex-shrink:0;}
.garantia-card-title{font-size:0.92rem;font-weight:500;color:white;margin-bottom:0.25rem;}
.garantia-card-desc{font-size:0.8rem;color:rgba(255,255,255,0.6);line-height:1.5;}
@media(max-width:900px){.garantia-inner{grid-template-columns:1fr;gap:3rem;}}

/* ── HAMBURGER ── */
.nav-hamburger{
  display:none;background:none;border:none;cursor:pointer;
  padding:0.4rem;flex-direction:column;justify-content:center;gap:5px;
}
.nav-hamburger span{display:block;width:22px;height:2px;background:var(--ink);border-radius:2px;transition:transform 0.3s ease,opacity 0.3s ease;}
.nav-hamburger.open span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.nav-hamburger.open span:nth-child(2){opacity:0;transform:scaleX(0);}
.nav-hamburger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}
.mobile-menu{
  display:none;position:fixed;top:68px;left:0;right:0;z-index:199;
  background:white;border-bottom:1px solid var(--gray-2);
  box-shadow:0 8px 32px rgba(0,0,0,0.1);
  flex-direction:column;padding:0.5rem 1.5rem 1.5rem;
}
.mobile-menu.open{display:flex;}
.mobile-menu a{
  display:block;padding:0.9rem 0;
  color:var(--ink-2);text-decoration:none;font-size:0.95rem;
  border-bottom:1px solid var(--gray-2);transition:color 0.2s;
}
.mobile-menu a:hover{color:var(--blue);}
@media(max-width:900px){.nav-hamburger{display:flex;}}

/* reviews 6-item override */
@media(max-width:900px){.reviews-grid{grid-template-columns:1fr 1fr;}}
@media(max-width:600px){.reviews-grid{grid-template-columns:1fr;}}

/* ── INTRO LOADER ── */
#intro {
  position:fixed;inset:0;z-index:9999;
  background:white;
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:1rem;
  transition:opacity 0.6s ease, visibility 0.6s ease;
}

#intro.hidden{opacity:0;visibility:hidden;pointer-events:none;}

.intro-logo{
  font-family:'Instrument Serif',serif;font-size:2rem;color:var(--ink);
  letter-spacing:-0.02em;opacity:0;transform:translateY(12px);
  animation:introUp 0.7s cubic-bezier(0.16,1,0.3,1) forwards;animation-delay:0.2s;
}
.intro-logo b{color:var(--blue);font-weight:400;}

.intro-sub{
  font-size:0.78rem;font-weight:400;letter-spacing:0.12em;text-transform:uppercase;color:var(--gray-3);
  opacity:0;animation:introUp 0.7s cubic-bezier(0.16,1,0.3,1) forwards;animation-delay:0.35s;
}

.intro-bar{
  width:48px;height:2px;background:var(--gray-2);border-radius:2px;overflow:hidden;margin-top:0.5rem;
  opacity:0;animation:introUp 0.5s ease forwards;animation-delay:0.5s;
}
.intro-bar-fill{
  height:100%;width:0%;background:var(--blue);border-radius:2px;
  animation:barFill 0.9s cubic-bezier(0.4,0,0.2,1) forwards;animation-delay:0.6s;
}

@keyframes introUp{from{opacity:0;transform:translateY(12px)}to{opacity:1;transform:translateY(0)}}
@keyframes barFill{from{width:0%}to{width:100%}}

/* ── FOOTER HORARIO ── */
.footer-horario{
  text-align:center;padding:0.75rem 1.5rem;
  background:rgba(255,255,255,0.04);
  font-size:0.78rem;color:rgba(255,255,255,0.6);
  border-top:1px solid rgba(255,255,255,0.08);
}
.footer-horario strong{color:rgba(255,255,255,0.85);}

/* ── FOOTER LEGAL LINKS ── */
.footer-legal{display:flex;gap:0.25rem;align-items:center;flex-wrap:wrap;}
.footer-legal a{color:rgba(255,255,255,0.5);font-size:0.75rem;text-decoration:none;transition:color 0.2s;}
.footer-legal a:hover{color:var(--blue);}

/* ── MODALES ── */
.modal-overlay{
  display:none;position:fixed;inset:0;z-index:9000;
  background:rgba(0,0,0,0.6);backdrop-filter:blur(4px);
  align-items:center;justify-content:center;padding:1.5rem;
}
.modal-overlay.active{display:flex;}
.modal-box{
  background:#fff;border-radius:1rem;max-width:680px;width:100%;
  max-height:85vh;overflow-y:auto;padding:2.5rem 2rem;
  position:relative;box-shadow:0 24px 64px rgba(0,0,0,0.2);
}
.modal-box h2{font-size:1.35rem;font-weight:600;color:var(--ink);margin-bottom:1rem;}
.modal-box h3{font-size:0.95rem;font-weight:600;color:var(--ink);margin:1.25rem 0 0.4rem;}
.modal-box p{font-size:0.88rem;color:#555;line-height:1.7;margin-bottom:0.5rem;}
.modal-box a{color:var(--blue);text-decoration:none;}
.modal-close{
  position:absolute;top:1rem;right:1.25rem;
  background:none;border:none;font-size:1.6rem;line-height:1;
  cursor:pointer;color:var(--gray-3);transition:color 0.2s;
}
.modal-close:hover{color:var(--ink);}
@media(max-width:600px){
  .modal-box{padding:1.5rem 1.25rem;}
}

/* ── MODAL EXIT-INTENT ── */
.exit-modal-box{
  background:#fff;border-radius:1.25rem;max-width:420px;width:100%;
  padding:2.5rem 2rem 2.25rem;position:relative;
  box-shadow:0 24px 64px rgba(0,0,0,0.25);
}
.exit-modal-tag{
  font-size:0.72rem;font-weight:600;letter-spacing:0.1em;text-transform:uppercase;
  color:var(--blue);margin-bottom:0.75rem;
}
.exit-modal-title{
  font-family:'Instrument Serif',serif;
  font-size:1.9rem;line-height:1.15;
  color:var(--ink);margin-bottom:0.75rem;
}
.exit-modal-sub{font-size:0.92rem;color:var(--ink-2);line-height:1.6;margin-bottom:1.75rem;}
.exit-modal-cta{width:100%;justify-content:center;margin-bottom:1rem;}
.exit-modal-phone{font-size:0.85rem;color:var(--gray-3);text-align:center;}
.exit-modal-phone a{color:var(--ink);font-weight:500;text-decoration:none;}
.exit-modal-phone a:hover{color:var(--blue);}
@media(max-width:600px){
  .exit-modal-box{padding:2rem 1.5rem;}
}

/* =========================================
   MODAL DE PRESUPUESTO MULTI-PASO
   ========================================= */
#modal-presupuesto {
  /* Inherits from .modal-overlay */
  backdrop-filter: blur(5px);
}

.modal-presupuesto-box {
  background: #ffffff;
  width: 90%;
  max-width: 500px;
  border-radius: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  font-family: 'DM Sans', sans-serif;
  animation: modalFadeIn 0.3s ease-out;
}

.modal-presupuesto-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: #f1f5f9;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.2rem;
  color: #64748b;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 10;
}
.modal-presupuesto-close:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.modal-p-header {
  padding: 2rem 2rem 1.5rem 2rem;
  border-bottom: 1px solid #f1f5f9;
}

.modal-p-step-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: #94a3b8;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.modal-p-title {
  font-family: 'Instrument Serif', serif;
  font-size: 2rem;
  color: #0f172a;
  margin: 0 0 1.5rem 0;
  font-style: italic;
}

.modal-p-progress {
  display: flex;
  gap: 0.5rem;
}
.mp-bar {
  flex: 1;
  height: 4px;
  background: #e2e8f0;
  border-radius: 2px;
  transition: background 0.3s;
}
.mp-bar.active {
  background: #0f172a;
}

.modal-p-body {
  padding: 2rem;
  position: relative;
  min-height: 300px;
}

.mp-step {
  display: none;
  animation: fadeIn 0.4s;
}
.mp-step.active {
  display: block;
}

/* PASO 1 */
.mp-question {
  color: #64748b;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  margin-top: 0;
}
.mp-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-height: 350px;
  overflow-y: auto;
  padding-right: 0.5rem;
}
.mp-services-grid::-webkit-scrollbar { width: 6px; }
.mp-services-grid::-webkit-scrollbar-track { background: transparent; }
.mp-services-grid::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 3px; }

.mp-service-card {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: all 0.2s;
  background: #fff;
}
.mp-service-card:hover {
  border-color: #cbd5e1;
  background: #f8fafc;
}
.mp-service-card.selected {
  border-color: #0f172a;
  background: #f8fafc;
  box-shadow: 0 0 0 1px #0f172a;
}
.mp-svc-icon { font-size: 1.5rem; }
.mp-svc-name { font-size: 0.9rem; font-weight: 500; color: #334155; }

/* PASOS 2 Y 3 */
.mp-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #94a3b8;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  margin-top: 1.5rem;
}
.mp-label:first-child { margin-top: 0; }

.mp-textarea, .mp-input {
  width: 100%;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1rem;
  font-size: 0.95rem;
  font-family: inherit;
  color: #334155;
  transition: border-color 0.2s;
  outline: none;
  background: #fff;
}
.mp-textarea:focus, .mp-input:focus {
  border-color: #94a3b8;
}
.mp-textarea {
  resize: vertical;
  min-height: 100px;
}
.mp-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  cursor: pointer;
}
.mp-checkbox-text {
  font-size: 0.9rem;
  color: #475569;
}
.mp-info-text, .mp-legal-text {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}
.mp-legal-text {
  font-size: 0.8rem;
  margin-top: 1.5rem;
}

/* PASO 4 */
.mp-success-icon {
  font-size: 4rem;
  text-align: center;
  margin-bottom: 1rem;
}
.mp-success-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

/* FOOTER */
.modal-p-footer {
  padding: 1.5rem 2rem 2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mp-btn-back {
  background: none;
  border: none;
  font-size: 0.95rem;
  color: #94a3b8;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.2s;
}
.mp-btn-back:hover { color: #475569; }

.mp-btn-next {
  background: #0f172a;
  color: #fff;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, opacity 0.2s;
}
.mp-btn-next:hover:not(:disabled) { background: #1e293b; }
.mp-btn-next:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* =========================================
   FLOATING PRESUPUESTO BUTTON
   ========================================= */
.floating-presupuesto-btn {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  color: #0f172a;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  z-index: 99;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.floating-presupuesto-btn:hover {
  transform: translateX(-50%) translateY(-3px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}
