/* Multiservicios Profesionales JR
   Estilo: fondo blanco + acentos dorados (inspirado en el arte proporcionado)
*/

:root{
  --bg: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --line: rgba(15, 23, 42, .12);

  --gold: #c9a34a;
  --gold-2: #e3c77b;
  --orange: #f59e0b;
  --green: #10b981;

  --shadow: 0 12px 28px rgba(2, 6, 23, .10);
  --shadow-soft: 0 10px 22px rgba(2, 6, 23, .08);

  --radius: 18px;
  --radius-sm: 14px;
  --max: 1120px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.35;
}

img{ max-width: 100%; height: auto; display: block; }
a{ color: inherit; text-decoration: none; }
.container{
  max-width: var(--max);
  padding: 0 20px;
  margin: 0 auto;
}

/* Skip link */
.skip-link{
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--text);
  color: white;
  padding: 10px 12px;
  border-radius: 10px;
  z-index: 9999;
}
.skip-link:focus{ left: 12px; }

/* Header */
.site-header{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner{
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 76px;
}
.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 260px;
}
.brand-logo{
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(201,163,74,.35);
}
.brand-text{ line-height: 1.05; }
.brand-name{
  font-weight: 800;
  letter-spacing: .06em;
  font-size: 14px;
}
.brand-sub{
  font-weight: 600;
  letter-spacing: .04em;
  font-size: 12px;
  color: var(--muted);
}
.nav{
  display: flex;
  gap: 18px;
  margin-left: auto;
}
.nav-link{
  font-weight: 600;
  font-size: 14px;
  color: var(--muted);
  position: relative;
  padding: 10px 6px;
}
.nav-link::after{
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  bottom: 6px;
  height: 2px;
  background: linear-gradient(90deg, rgba(201,163,74,0), rgba(201,163,74,.9), rgba(201,163,74,0));
  opacity: 0;
  transform: translateY(4px);
  transition: .25s ease;
}
.nav-link:hover{ color: var(--text); }
.nav-link:hover::after{ opacity: 1; transform: translateY(0); }

/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 800;
  letter-spacing: .02em;
  border: 1px solid transparent;
  box-shadow: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  user-select: none;
  white-space: nowrap;
}
.btn:active{ transform: translateY(1px); }
.btn-primary{
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #0b1220;
  box-shadow: 0 12px 30px rgba(245,158,11,.25);
}
.btn-primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(245,158,11,.28);
}
.btn-outline{
  background: #ffffff;
  border-color: rgba(201,163,74,.55);
  color: var(--text);
}
.btn-outline:hover{
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}
.btn-whatsapp{
  background: rgba(16,185,129,.10);
  color: #065f46;
  border-color: rgba(16,185,129,.25);
  box-shadow: none;
}
.btn-whatsapp:hover{
  background: rgba(16,185,129,.14);
  transform: translateY(-1px);
}

.btn-sub{
  display: block;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .9;
}

/* Hero */
.hero{
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-grid{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 26px;
  padding: 56px 0 34px;
  align-items: center;
}
.hero-copy{ padding: 8px 0; }
.kicker{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: #6b4f10;
  background: linear-gradient(90deg, rgba(201,163,74,.18), rgba(245,158,11,.16));
  border: 1px solid rgba(201,163,74,.30);
  padding: 10px 14px;
  border-radius: 999px;
  margin: 0 0 14px;
}
.hero-title{
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.02;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.hero-subtitle{
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 16px;
  max-width: 56ch;
}
.hero-cta{
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.phone-block{
  border: 1px dashed rgba(201,163,74,.55);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  background: rgba(201,163,74,.06);
  min-width: 230px;
}
.phone-label{
  font-weight: 800;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.phone-number{
  font-weight: 900;
  font-size: 22px;
  letter-spacing: .04em;
  margin-top: 6px;
}

.badge-row{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.badge{
  font-weight: 800;
  font-size: 12px;
  color: #0b1220;
  background: rgba(15,23,42,.06);
  border: 1px solid rgba(15,23,42,.10);
  padding: 10px 12px;
  border-radius: 999px;
}

.hero-visual{
  display: flex;
  justify-content: center;
  align-items: center;
}
.ad-card{
  margin: 0;
  width: min(520px, 100%);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(201,163,74,.30);
  box-shadow: var(--shadow);
  background: #0b1220;
}
.ad-card img{
  width: 100%;
  height: auto;
}

.hero-glow{
  position: absolute;
  inset: -120px -60px auto -60px;
  height: 520px;
  background:
    radial-gradient(closest-side at 25% 35%, rgba(245,158,11,.18), rgba(245,158,11,0)),
    radial-gradient(closest-side at 65% 40%, rgba(201,163,74,.16), rgba(201,163,74,0)),
    radial-gradient(closest-side at 50% 20%, rgba(16,185,129,.08), rgba(16,185,129,0));
  pointer-events: none;
  filter: blur(2px);
}

/* Sections */
.section{
  padding: 54px 0;
}
.section-accent{
  background: linear-gradient(180deg, rgba(201,163,74,.06), rgba(245,158,11,.04));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-bottom{
  padding-bottom: 70px;
}
.section-head{
  margin-bottom: 22px;
}
.section-title{
  margin: 0 0 8px;
  font-size: 28px;
  letter-spacing: -0.01em;
}
.section-sub{
  margin: 0;
  color: var(--muted);
  max-width: 72ch;
}

/* Cards */
.cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}
.card{
  background: white;
  border-radius: var(--radius);
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: var(--shadow-soft);
  padding: 18px 16px;
  position: relative;
  overflow: hidden;
}
.card::before{
  content:"";
  position: absolute;
  inset: -2px;
  background: radial-gradient(closest-side at 25% 20%, rgba(201,163,74,.18), transparent 70%);
  opacity: .9;
  pointer-events: none;
}
.card-icon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 22px;
  background: rgba(16,185,129,.12);
  border: 1px solid rgba(16,185,129,.25);
  color: #065f46;
  margin-bottom: 12px;
}
.card-title{
  margin: 0;
  font-size: 18px;
}

/* Urgent block */
.urgent{
  display: flex;
  gap: 18px;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(201,163,74,.30);
  background: #ffffff;
  box-shadow: var(--shadow);
}
.urgent-title{
  margin: 0 0 6px;
  font-size: 28px;
  letter-spacing: .02em;
}
.urgent-sub{
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}
.urgent-actions{
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.urgent-number{
  font-weight: 1000;
  font-size: 22px;
  letter-spacing: .04em;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(15,23,42,.06);
  border: 1px solid rgba(15,23,42,.10);
}

/* Location */
.location-card{
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: var(--shadow-soft);
  background: white;
}
.location-icon{
  font-size: 22px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(201,163,74,.12);
  border: 1px solid rgba(201,163,74,.28);
}
.location-text{
  flex: 1;
  min-width: 200px;
}
.location-title{
  font-weight: 900;
  font-size: 18px;
}
.location-note{
  color: var(--muted);
  font-weight: 700;
  margin-top: 4px;
}

/* Final CTA */
.final-cta{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px;
  border-radius: calc(var(--radius) + 8px);
  border: 1px solid rgba(201,163,74,.35);
  background: linear-gradient(135deg, rgba(201,163,74,.14), rgba(245,158,11,.08));
  box-shadow: var(--shadow);
}
.final-title{
  margin: 0 0 6px;
  font-size: 28px;
}
.final-sub{
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}
.final-number{
  margin-top: 10px;
  font-weight: 1000;
  font-size: 24px;
  letter-spacing: .04em;
}

/* Floating WhatsApp */
.fab-whatsapp{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1100;
  background: #ffffff;
  border: 1px solid rgba(16,185,129,.25);
  box-shadow: var(--shadow);
  padding: 12px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: #065f46;
  transition: transform .18s ease, box-shadow .18s ease;
}
.fab-whatsapp:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(2,6,23,.14);
}
.fab-dot{
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(16,185,129,.18);
}

/* Footer */
.site-footer{
  border-top: 1px solid var(--line);
  padding: 22px 0 40px;
}
.footer-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-brand{
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-logo{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(201,163,74,.35);
}
.footer-name{
  font-weight: 900;
}
.footer-meta{
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
  margin-top: 3px;
}
.footer-copy{
  color: var(--muted);
  font-weight: 800;
}

/* Reveal */
[data-reveal]{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .60s ease, transform .60s ease;
}
.revealed{
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 980px){
  .hero-grid{
    grid-template-columns: 1fr;
    padding-top: 44px;
  }
  .brand{ min-width: unset; }
  .nav{ display: none; }
  .cards{ grid-template-columns: 1fr; }
  .urgent, .final-cta{ flex-direction: column; align-items: stretch; }
  .urgent-actions{ justify-content: flex-start; }
}
