:root{
  --bg:#071a33;
  --bg2:#0b1f3a;
  --card:#0f2c52;
  --text:#ffffff;
  --muted:rgba(255,255,255,.78);
  --muted2:rgba(255,255,255,.65);
  --accent:#f5b21a;
  --accent2:#ffcc2e;
  --line:rgba(255,255,255,.12);
  --shadow: 0 18px 50px rgba(0,0,0,.35);
  --radius:18px;
  --max:1100px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background: radial-gradient(900px 500px at 20% 10%, rgba(245,178,26,.18), transparent 60%),
              radial-gradient(700px 400px at 90% 0%, rgba(255,204,46,.12), transparent 55%),
              linear-gradient(180deg, var(--bg), var(--bg2));
  line-height:1.5;
}

a{color:inherit; text-decoration:none}
img{max-width:100%; height:auto; display:block}

.container{
  width:min(var(--max), calc(100% - 40px));
  margin-inline:auto;
}

.skip-link{
  position:absolute; left:-999px; top:auto;
  width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{
  left:16px; top:16px; width:auto; height:auto;
  background:#fff; color:#000; padding:10px 12px; border-radius:10px;
  z-index:9999;
}

/* Header */
.site-header{
  position:sticky; top:0; z-index:50;
  background: rgba(7,26,51,.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner{
  display:flex; align-items:center; gap:16px;
  padding:12px 0;
}
.brand img{height:44px; width:auto}

.nav{margin-left:auto}
.nav-toggle{
  display:none;
  border:1px solid var(--line);
  background:transparent;
  color:var(--text);
  padding:10px 12px;
  border-radius:12px;
  cursor:pointer;
}
.burger{
  width:22px; height:2px; background:var(--text);
  display:block; position:relative;
}
.burger:before,.burger:after{
  content:""; position:absolute; left:0;
  width:22px; height:2px; background:var(--text);
}
.burger:before{top:-7px}
.burger:after{top:7px}

.nav-links{
  list-style:none; display:flex; gap:18px;
  margin:0; padding:0;
  align-items:center;
}
.nav-links a{
  padding:10px 10px;
  border-radius:12px;
  color:var(--muted);
}
.nav-links a:hover{background:rgba(255,255,255,.06); color:#fff}

.header-cta{
  display:flex; gap:10px;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  border-radius:999px;
  padding:12px 16px;
  border:1px solid transparent;
  font-weight:700;
  letter-spacing:.2px;
  cursor:pointer;
  transition: transform .08s ease, background .2s ease, border-color .2s ease;
}
.btn:active{transform: translateY(1px)}
.btn-primary{
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  color:#1a1200;
}
.btn-primary:hover{filter:brightness(1.03)}
.btn-ghost{
  background:rgba(255,255,255,.06);
  border-color: var(--line);
  color:#fff;
}
.btn-ghost:hover{background:rgba(255,255,255,.10)}
.btn-lg{padding:14px 18px; font-size:1.02rem}
.btn-sm{padding:10px 14px; font-size:.95rem}
.w-100{width:100%}
.text-link{color:var(--accent2)}
.text-link:hover{text-decoration:underline}

.sr-only{
  position:absolute; width:1px; height:1px;
  padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0;
}

/* Hero */
.hero{
  position:relative;
  padding:54px 0 28px;
  overflow:hidden;
}
.hero-inner{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap:26px;
  align-items:start;
}
.badge{
  display:inline-block;
  padding:8px 12px;
  background:rgba(255,255,255,.07);
  border:1px solid var(--line);
  border-radius:999px;
  color:var(--accent2);
  font-weight:800;
  letter-spacing:.7px;
  font-size:.88rem;
}
h1{
  margin:14px 0 10px;
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  line-height:1.1;
}
.accent{color:var(--accent2)}
.lead{color:var(--muted); font-size:1.05rem; max-width:56ch}
.hero-actions{display:flex; flex-wrap:wrap; gap:12px; margin:18px 0 8px}
.hero-points{
  margin:14px 0 0; padding-left:18px; color:var(--muted2)
}

.hero-card{
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}
.hero-card h2{margin:4px 0 6px; font-size:1.3rem}
.muted{color:var(--muted)}
.fineprint{color:var(--muted2); font-size:.92rem}

.contact-box{
  margin:14px 0 14px;
  border:1px solid var(--line);
  border-radius:14px;
  overflow:hidden;
}
.contact-row{
  display:flex; gap:10px;
  justify-content:space-between;
  padding:12px 14px;
  border-bottom:1px solid var(--line);
}
.contact-row:last-child{border-bottom:none}
.contact-label{color:var(--muted2)}
.contact-value{font-weight:700}

.hero-wave{
  position:absolute; left:0; right:0; bottom:-1px; height:80px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.06));
  pointer-events:none;
}

/* Sections */
.section{padding:56px 0}
.section-alt{
  background: rgba(255,255,255,.03);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.section-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:16px;
  margin-bottom:22px;
}
.section-head h2{
  margin:0;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
}
.section-head p{margin:0; max-width:70ch}

.grid{display:grid; gap:16px}
.services{grid-template-columns: repeat(3, 1fr)}
.zone{grid-template-columns: repeat(2, 1fr)}
.contact{grid-template-columns: repeat(2, 1fr)}
.emergencies-grid{grid-template-columns: repeat(3, 1fr)}
.emergencies .time{
  display:inline-block;
  margin-top:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  font-weight:800;
  color:var(--accent2);
  font-size:.92rem;
}

.card{
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding:18px;
}
.card h3{margin:0 0 8px}
.card p{margin:0; color:var(--muted)}
.card.highlight{
  background: radial-gradient(700px 220px at 10% 10%, rgba(245,178,26,.22), rgba(255,255,255,.06) 60%);
}

.note{
  margin-top:18px;
  padding:14px 16px;
  border:1px dashed rgba(255,255,255,.22);
  border-radius:16px;
  color:var(--muted);
}

/* Steps */
.steps{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:14px;
}
.steps li{
  display:flex; gap:14px;
  padding:16px;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
}
.step-num{
  width:40px; height:40px;
  border-radius:14px;
  display:grid; place-items:center;
  font-weight:900;
  background: rgba(245,178,26,.18);
  border:1px solid rgba(245,178,26,.35);
  color:var(--accent2);
}
.steps h3{margin:0 0 6px}
.steps p{margin:0; color:var(--muted)}

.cta-strip{
  margin-top:18px;
  padding:18px;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  display:flex; align-items:center; justify-content:space-between;
  gap:12px;
}
.cta-strip h3{margin:0 0 6px}
.cta-actions{display:flex; gap:10px; flex-wrap:wrap}

/* Lists */
.list{margin:10px 0 0; padding-left:18px; color:var(--muted)}

/* Form */
.form label{
  display:block;
  margin-bottom:12px;
  font-weight:700;
}
input, textarea{
  width:100%;
  margin-top:6px;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(7,26,51,.45);
  color:#fff;
  font:inherit;
}
input::placeholder, textarea::placeholder{color:rgba(255,255,255,.55)}
input:focus, textarea:focus{
  outline:2px solid rgba(245,178,26,.35);
  border-color: rgba(245,178,26,.35);
}

/* FAQ */
.faq{
  margin-top:18px;
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
  padding:14px 16px;
}
.faq summary{
  cursor:pointer;
  font-weight:800;
  color:#fff;
}
.faq-body{
  margin-top:14px;
}
.faq-body h3{margin:16px 0 6px}
.faq-body p{margin:0; color:var(--muted)}

/* Footer */
.footer{
  padding:28px 0;
}
.footer-inner{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap:16px;
  align-items:start;
}
.footer-brand img{height:40px; width:auto}
.footer-links, .footer-contact{
  display:flex; flex-direction:column; gap:10px;
  color:var(--muted);
}
.footer-links a:hover, .footer-contact a:hover{color:#fff}
.footer-bottom{
  margin-top:12px;
  padding-top:12px;
  border-top:1px solid var(--line);
  color:var(--muted2);
}

/* Cookie banner */
.cookie-banner{
  position:fixed;
  left:16px; right:16px; bottom:16px;
  max-width: var(--max);
  margin-inline:auto;
  background: rgba(7,26,51,.92);
  border:1px solid var(--line);
  border-radius: 18px;
  padding:14px 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  box-shadow: var(--shadow);
  transform: translateY(140%);
  transition: transform .25s ease;
  z-index:60;
}
.cookie-banner.show{transform: translateY(0)}
.cookie-banner p{margin:0; color:var(--muted)}
.cookie-banner a{color:var(--accent2); text-decoration:underline}

/* Floating WhatsApp */
.floating-whatsapp{
  position:fixed;
  right:16px; bottom:16px;
  z-index:55;
  padding:12px 14px;
  border-radius:999px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  color:#1a1200;
  font-weight:900;
  box-shadow: var(--shadow);
}
.floating-whatsapp:hover{filter:brightness(1.03)}

/* Responsive */
@media (max-width: 980px){
  .hero-inner{grid-template-columns:1fr; }
  .header-inner{gap:10px}
  .header-cta{display:none}
  .nav{margin-left:0}
  .nav-toggle{display:inline-flex}
  .nav-links{
    position:absolute;
    right:20px;
    top:66px;
    background: rgba(7,26,51,.96);
    border:1px solid var(--line);
    border-radius:16px;
    padding:12px;
    display:none;
    flex-direction:column;
    width:min(280px, calc(100vw - 40px));
  }
  .nav-links.show{display:flex}
  .services{grid-template-columns:1fr}
  .zone{grid-template-columns:1fr}
  .contact{grid-template-columns:1fr}
  .emergencies-grid{grid-template-columns:1fr}
  .section-head{flex-direction:column; align-items:flex-start}
  .cta-strip{flex-direction:column; align-items:flex-start}
  .footer-inner{grid-template-columns:1fr}
}


/* --- Extras (formulario, mapa, opiniones) --- */
.hp{position:absolute;left:-9999px;top:auto;width:1px;height:1px;overflow:hidden;}
.map-wrap{margin-top:22px;padding-top:18px;border-top:1px solid var(--line);}
.map{width:100%;height:360px;border:0;border-radius:var(--radius);box-shadow:var(--shadow);background:rgba(255,255,255,.06);}
.testimonials{margin-top:18px;}
.testimonial .quote{font-size:1.02rem;line-height:1.55;margin:0 0 12px;}
.testimonial .by{margin:0;color:var(--muted2);font-weight:600;}
.form-status{margin-top:12px;color:var(--muted);font-size:.95rem;}


/* Language switcher */
.lang-switch{display:flex;align-items:center;gap:.35rem;margin-left:.75rem;font-weight:700;}
.lang-switch a{opacity:.9;}
.lang-switch a[aria-current="page"]{text-decoration:underline;}
.footer-lang{margin-top:.5rem;font-size:.95rem;opacity:.85;}


/* EN: host/property manager block */
.pm-block{margin-top:18px}
.checklist{list-style:none;padding-left:0;margin:12px 0 0}
.checklist li{position:relative;padding-left:28px;margin:10px 0}
.checklist li:before{content:"✓";position:absolute;left:0;top:0;font-weight:800}
.note-box{margin:14px 0 0;padding:12px 14px;border:1px solid rgba(255,255,255,.14);border-radius:14px;background:rgba(255,255,255,.06)}
