/* ============================================================
   Multiservicios Cleaning S.G. — Premium villa cleaning
   Palette: deep navy + champagne gold + warm cream
   ============================================================ */

:root {
  --navy: #0e1c2b;
  --navy-2: #16293d;
  --navy-soft: #1d3550;
  --gold: #c8a24a;
  --gold-light: #e3c97d;
  --gold-deep: #a8852f;
  --cream: #f7f3ec;
  --cream-2: #efe8dc;
  --ink: #1a1f26;
  --muted: #5d6670;
  --white: #ffffff;
  --line: rgba(14, 28, 43, 0.10);

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", -apple-system, "Segoe UI", sans-serif;

  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 24px 60px -28px rgba(14, 28, 43, 0.45);
  --shadow-sm: 0 12px 30px -16px rgba(14, 28, 43, 0.35);
  --max: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-block;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-deep);
  margin-bottom: 18px;
}
.eyebrow-light { color: var(--gold-light); }

.section { padding: 110px 0; }

.section-head { max-width: 720px; margin: 0 auto 64px; text-align: center; }
.section-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--navy);
}
.section-lead {
  margin-top: 20px;
  font-size: 1.08rem;
  color: var(--muted);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 100px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s, color 0.3s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-sm { padding: 11px 22px; font-size: 0.88rem; }
.btn-block { width: 100%; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
  box-shadow: 0 14px 30px -12px rgba(200, 162, 74, 0.7);
}
.btn-gold:hover { box-shadow: 0 20px 40px -12px rgba(200, 162, 74, 0.85); }

.btn-navy { background: var(--navy); color: var(--cream); }
.btn-navy:hover { background: var(--navy-2); }

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(247, 243, 236, 0.4);
}
.btn-ghost:hover { background: rgba(247, 243, 236, 0.1); border-color: var(--gold-light); }

.btn-ghost-light {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}
.btn-ghost-light:hover { background: rgba(255, 255, 255, 0.16); }

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  margin-top: 28px;
}
.btn-whatsapp svg { width: 20px; height: 20px; fill: currentColor; }
.btn-whatsapp:hover { background: #1ebe5b; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.4s var(--ease);
  padding: 22px 0;
}
.site-header.scrolled {
  background: rgba(14, 28, 43, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px -20px rgba(0,0,0,0.6);
  padding: 14px 0;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: flex; align-items: center; gap: 14px; }
.brand-mark {
  width: 46px; height: 46px;
  flex-shrink: 0;
  display: inline-flex;
  filter: drop-shadow(0 6px 14px rgba(200, 162, 74, 0.28));
}
.brand-mark svg { width: 100%; height: 100%; display: block; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; color: var(--cream); }
.brand-sub { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-light); }

/* When at top over hero, header text is light; after scroll keep light too */
.nav { display: flex; gap: 30px; }
.nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(247, 243, 236, 0.82);
  position: relative;
  padding: 4px 0;
  transition: color 0.25s;
}
.nav a::after {
  content: "";
  position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--gold-light);
  transition: width 0.3s var(--ease);
}
.nav a:hover { color: var(--cream); }
.nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 16px; }

.lang-switch {
  display: flex;
  border: 1px solid rgba(247, 243, 236, 0.28);
  border-radius: 100px;
  overflow: hidden;
}
.lang-btn {
  background: transparent;
  border: none;
  color: rgba(247, 243, 236, 0.7);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 7px 12px;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}
.lang-btn:hover { color: var(--cream); }
.lang-btn.is-active { background: var(--gold); color: var(--navy); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 6px;
}
.menu-toggle span {
  width: 26px; height: 2px; background: var(--cream);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  background: rgba(14, 28, 43, 0.98);
  backdrop-filter: blur(14px);
  transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
}
.mobile-menu.open { max-height: 460px; padding: 16px 24px 28px; }
.mobile-menu a { color: var(--cream); padding: 12px 0; font-weight: 500; border-bottom: 1px solid rgba(247,243,236,0.08); }
.mobile-menu .btn { margin-top: 14px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--cream);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 115% at 80% 8%, rgba(200,162,74,0.26) 0%, transparent 45%),
    radial-gradient(90% 90% at 10% 100%, rgba(29,53,80,0.55) 0%, transparent 55%),
    linear-gradient(135deg, #0a151f 0%, #16293d 52%, #0a151f 100%);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(10,21,31,0.7) 0%, rgba(10,21,31,0.35) 55%, rgba(10,21,31,0.05) 100%),
    linear-gradient(to top, rgba(10,21,31,0.6), transparent 45%);
}
.hero-content { position: relative; max-width: 760px; padding-top: 120px; padding-bottom: 60px; }
.hero-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
}
.hero-text {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: rgba(247, 243, 236, 0.86);
  max-width: 600px;
  margin-bottom: 38px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 56px; }

.hero-badges { display: flex; flex-wrap: wrap; gap: 40px; }
.hero-badge { display: flex; flex-direction: column; }
.hero-badge strong {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
}
.hero-badge span { font-size: 0.85rem; color: rgba(247,243,236,0.75); margin-top: 6px; letter-spacing: 0.02em; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar { background: var(--navy); color: var(--cream); padding: 38px 0; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-ico { width: 30px; height: 30px; fill: var(--gold-light); flex-shrink: 0; }
.trust-item p { font-size: 0.95rem; font-weight: 500; color: rgba(247,243,236,0.9); }

/* ============================================================
   SERVICES
   ============================================================ */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 34px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(200,162,74,0.4); }
.card-ico {
  width: 58px; height: 58px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: var(--cream-2);
  margin-bottom: 22px;
  transition: background 0.4s;
}
.card-ico svg { width: 28px; height: 28px; fill: var(--gold-deep); }
.card:hover .card-ico { background: linear-gradient(135deg, var(--gold-light), var(--gold)); }
.card:hover .card-ico svg { fill: var(--navy); }
.card h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: var(--navy); margin-bottom: 12px; }
.card p { color: var(--muted); font-size: 0.97rem; }

.card-feature {
  background: var(--navy);
  border-color: var(--navy);
}
.card-feature h3 { color: var(--cream); }
.card-feature p { color: rgba(247,243,236,0.78); }
.card-feature .card-ico { background: rgba(200,162,74,0.18); }
.card-feature .card-ico svg { fill: var(--gold-light); }
.card-feature:hover .card-ico { background: linear-gradient(135deg, var(--gold-light), var(--gold)); }
.card-feature:hover .card-ico svg { fill: var(--navy); }
.card-tag {
  position: absolute; top: 22px; right: 22px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}

/* ============================================================
   TURNAROUND
   ============================================================ */
.turnaround { background: var(--cream-2); }
.turn-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}
.turn-copy .section-title { text-align: left; }
.turn-list { margin: 30px 0 36px; display: grid; gap: 14px; }
.turn-list li {
  position: relative;
  padding-left: 36px;
  font-size: 1.02rem;
  color: var(--ink);
}
.turn-list li::before {
  content: "";
  position: absolute; left: 0; top: 4px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gold) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230e1c2b'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center / 14px no-repeat;
}

.turn-visual {
  background: var(--navy);
  border-radius: 24px;
  padding: 56px 44px;
  box-shadow: var(--shadow);
  color: var(--cream);
}
.turn-clock { text-align: center; margin-bottom: 40px; }
.turn-num {
  font-family: var(--serif);
  font-size: 7rem;
  font-weight: 600;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.turn-unit { display: block; letter-spacing: 0.3em; text-transform: uppercase; font-size: 0.85rem; color: var(--gold-light); margin-top: 6px; }
.turn-steps { display: grid; gap: 18px; }
.turn-step { display: flex; align-items: center; gap: 18px; }
.turn-step span {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 50%;
  display: grid; place-items: center;
  border: 1.5px solid rgba(200,162,74,0.6);
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
}
.turn-step p { font-size: 1rem; color: rgba(247,243,236,0.9); }

/* ============================================================
   WHY US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.why-item {
  padding: 34px 26px;
  border-top: 2px solid var(--line);
  transition: border-color 0.4s;
}
.why-item:hover { border-color: var(--gold); }
.why-num {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
  line-height: 1;
}
.why-item h3 { font-family: var(--serif); font-size: 1.4rem; color: var(--navy); margin-bottom: 10px; }
.why-item p { font-size: 0.95rem; color: var(--muted); }

/* ============================================================
   PROCESS
   ============================================================ */
.process { background: var(--navy); color: var(--cream); }
.process .section-title { color: var(--cream); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.process-step {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(247,243,236,0.08);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: transform 0.4s var(--ease), background 0.4s;
}
.process-step:hover { transform: translateY(-6px); background: rgba(255,255,255,0.07); }
.process-ico {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(200,162,74,0.16);
  margin-bottom: 20px;
}
.process-ico svg { width: 26px; height: 26px; fill: var(--gold-light); }
.process-step h3 { font-family: var(--serif); font-size: 1.3rem; color: var(--cream); margin-bottom: 10px; }
.process-step p { font-size: 0.92rem; color: rgba(247,243,236,0.72); }

/* ============================================================
   AREAS
   ============================================================ */
.areas { background: var(--cream); }
.areas-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  max-width: 880px;
  margin: 0 auto;
}
.areas-list li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 12px 26px;
  font-weight: 500;
  color: var(--navy);
  font-size: 0.98rem;
  transition: transform 0.3s var(--ease), background 0.3s, color 0.3s, box-shadow 0.3s;
}
.areas-list li:hover {
  transform: translateY(-3px);
  background: var(--navy);
  color: var(--cream);
  box-shadow: var(--shadow-sm);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  background:
    radial-gradient(circle at 82% 50%, rgba(200,162,74,0.20) 0%, transparent 58%),
    linear-gradient(135deg, #0e1c2b 0%, #16293d 55%, #0e1c2b 100%);
  color: var(--cream);
  padding: 100px 0;
  text-align: center;
}
.cta-inner { max-width: 640px; margin: 0 auto; }
.cta-banner h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  margin-bottom: 16px;
}
.cta-banner p { color: rgba(247,243,236,0.85); font-size: 1.1rem; margin-bottom: 34px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 64px; align-items: start; }
.contact-info .section-title { text-align: left; }
.contact-list { margin-top: 32px; display: grid; gap: 18px; }
.contact-list li { display: flex; align-items: center; gap: 16px; font-size: 1.02rem; }
.contact-list svg { width: 22px; height: 22px; fill: var(--gold-deep); flex-shrink: 0; }
.contact-list a:hover { color: var(--gold-deep); }

.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 20px; display: flex; flex-direction: column; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  font-family: var(--sans);
  font-size: 0.97rem;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(200,162,74,0.14);
}
.field textarea { resize: vertical; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }
.btn[disabled] { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-status { margin-top: 16px; font-size: 0.92rem; font-weight: 600; min-height: 1.2em; }
.form-status.ok { color: #1f9d55; }
.form-status.err { color: #d0432a; }
.form-note { margin-top: 14px; font-size: 0.78rem; color: var(--muted); text-align: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy); color: rgba(247,243,236,0.7); padding: 72px 0 32px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(247,243,236,0.1);
}
.footer-brand .brand-mark { margin-bottom: 18px; }
.footer-name { font-family: var(--serif); font-size: 1.45rem; color: var(--cream); margin-bottom: 8px; }
.footer-tag { font-size: 0.95rem; max-width: 320px; }
.footer-col h4 { color: var(--cream); font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col a, .footer-col span { display: block; padding: 6px 0; font-size: 0.95rem; transition: color 0.25s; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px;
  font-size: 0.85rem;
  flex-wrap: wrap; gap: 10px;
}
.footer-langs { letter-spacing: 0.2em; color: var(--gold-light); }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 90;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: grid; place-items: center;
  box-shadow: 0 12px 30px -8px rgba(37,211,102,0.7);
  transition: transform 0.3s var(--ease);
}
.wa-float svg { width: 30px; height: 30px; fill: #fff; }
.wa-float:hover { transform: scale(1.08); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .cards, .process-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .turn-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
}

@media (max-width: 860px) {
  .nav { display: none; }
  .menu-toggle { display: flex; }
  .mobile-menu { display: flex; }
  .header-actions .btn-sm { display: none; }
  .section { padding: 80px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 600px) {
  .cards, .process-grid, .why-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .hero-badges { gap: 26px; }
  .hero-badge strong { font-size: 2rem; }
  .turn-visual { padding: 40px 28px; }
  .turn-num { font-size: 5.5rem; }
  .contact-form { padding: 28px 22px; }
  .section-head { margin-bottom: 44px; }
}

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