/* ==========================================================================
   Murua Consulting — hoja de estilos principal
   Paleta: Navy #0A2540 · Dorado suave #C9A961 · Blanco / Crema
   ========================================================================== */

:root {
  /* Color */
  --navy:        #0A2540;
  --navy-deep:   #061729;
  --navy-mid:    #123055;
  --navy-line:   rgba(255, 255, 255, .12);

  --gold:        #C9A961;
  --gold-soft:   #E3C88A;
  --gold-deep:   #A88A45;

  --white:       #FFFFFF;
  --cream:       #F8F6F1;
  --cream-line:  #E7E2D8;

  --ink:         #12233A;
  --muted:       #5C6B7D;
  --muted-light: rgba(255, 255, 255, .72);

  /* Tipografía */
  --serif: "Playfair Display", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Layout */
  --wrap: 1160px;
  --gutter: 22px;
  --radius: 14px;
  --radius-sm: 10px;

  /* Sombras */
  --shadow-sm: 0 2px 8px rgba(10, 37, 64, .06);
  --shadow-md: 0 10px 30px rgba(10, 37, 64, .10);
  --shadow-lg: 0 24px 60px rgba(10, 37, 64, .16);

  --ease: cubic-bezier(.4, 0, .2, 1);
}

/* --------------------------------------------------------------- Base --- */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -.015em;
  margin: 0 0 .5em;
}

h1 { font-size: clamp(2.1rem, 6.4vw, 3.9rem); }
h2 { font-size: clamp(1.75rem, 4.4vw, 2.7rem); }
h3 { font-size: clamp(1.15rem, 2.4vw, 1.4rem); }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--gold); color: var(--navy); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ------------------------------------------------------------ Layout --- */

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding: clamp(60px, 9vw, 110px) 0; }
.section--tight { padding: clamp(48px, 6vw, 72px) 0; }

.section--navy {
  background: var(--navy);
  color: var(--white);
}
.section--navy h1,
.section--navy h2,
.section--navy h3 { color: var(--white); }

.section--cream { background: var(--cream); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: var(--navy);
  padding: 10px 16px;
  font-weight: 600;
  z-index: 200;
}
.skip-link:focus { left: 12px; top: 12px; }

/* --------------------------------------------------------- Tipografía --- */

.eyebrow {
  font-family: var(--sans);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
}

.lead {
  font-size: clamp(1.02rem, 2.2vw, 1.2rem);
  color: var(--muted);
  max-width: 62ch;
}
.section--navy .lead { color: var(--muted-light); }

.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.rule {
  width: 46px;
  height: 2px;
  background: var(--gold);
  border: 0;
  margin: 0 0 22px;
}
.section-head--center .rule { margin-inline: auto; }

.gold { color: var(--gold); }

/* ------------------------------------------------------------ Botones --- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .01em;
  cursor: pointer;
  transition: transform .18s var(--ease), background-color .2s var(--ease),
              color .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 8px 22px rgba(201, 169, 97, .28);
}
.btn--gold:hover { background: var(--gold-soft); }

.btn--navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn--navy:hover { background: var(--navy-mid); }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, .34);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: rgba(10, 37, 64, .22);
}
.btn--outline:hover { border-color: var(--navy); }

.btn--block { width: 100%; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 520px) {
  .btn-row { flex-direction: column; align-items: stretch; }
  .btn-row .btn { width: 100%; }
}

/* ------------------------------------------------------------- Header --- */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid var(--navy-line);
  transition: box-shadow .25s var(--ease), background-color .25s var(--ease);
}
.header.is-stuck { box-shadow: 0 6px 26px rgba(0, 0, 0, .28); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand__mark { width: 46px; height: 46px; flex-shrink: 0; }
.brand__name {
  font-family: var(--sans);
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.25;
}
.brand__name span { color: var(--gold); font-weight: 500; }

.nav { display: flex; align-items: center; gap: 6px; }

.nav__link {
  padding: 9px 14px;
  font-size: .93rem;
  font-weight: 500;
  color: var(--muted-light);
  border-radius: 8px;
  transition: color .18s var(--ease);
}
.nav__link:hover { color: var(--white); }
.nav__link.is-active { color: var(--gold); }

.header__cta { margin-left: 8px; padding: 12px 24px; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--navy-line);
  border-radius: 10px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.nav-toggle__bars { position: relative; }
.nav-toggle__bars::before,
.nav-toggle__bars::after { content: ""; position: absolute; left: 0; }
.nav-toggle__bars::before { top: -6px; }
.nav-toggle__bars::after  { top: 6px; }

.nav-toggle[aria-expanded="true"] .nav-toggle__bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after  { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }

  .nav {
    position: fixed;
    inset: 72px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px var(--gutter) 26px;
    background: var(--navy);
    border-bottom: 1px solid var(--navy-line);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .3);
    transform: translateY(-14px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }

  .nav__link {
    padding: 14px 4px;
    font-size: 1.02rem;
    border-bottom: 1px solid var(--navy-line);
  }
  .header__cta { margin: 18px 0 0; width: 100%; }
}

/* --------------------------------------------------------------- Hero --- */

.hero {
  position: relative;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  padding: clamp(64px, 10vw, 120px) 0 clamp(56px, 8vw, 96px);
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero::before {
  width: 620px; height: 620px;
  top: -280px; right: -200px;
  background: radial-gradient(circle, rgba(201, 169, 97, .16), transparent 68%);
}
.hero::after {
  width: 520px; height: 520px;
  bottom: -300px; left: -180px;
  background: radial-gradient(circle, rgba(18, 48, 85, .9), transparent 70%);
}

.hero__inner { position: relative; z-index: 1; max-width: 860px; }

.hero h1 { margin-bottom: 22px; }
.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero__lead {
  font-size: clamp(1.05rem, 2.4vw, 1.28rem);
  color: var(--muted-light);
  max-width: 60ch;
  margin-bottom: 32px;
}

.hero .btn-row { margin-bottom: 18px; }

.hero__note {
  font-size: .88rem;
  color: rgba(255, 255, 255, .5);
  margin: 0 0 48px;
}

.hero__stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 20px;
  border-top: 1px solid var(--navy-line);
  padding-top: 30px;
}
@media (min-width: 720px) {
  .hero__stats { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.hero__stat strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.6vw, 2.1rem);
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 4px;
}
.hero__stat span {
  font-size: .84rem;
  color: rgba(255, 255, 255, .6);
  letter-spacing: .02em;
}

/* --------------------------------------------------------- Tagline bar --- */

.tagline-bar {
  background: var(--navy-deep);
  color: var(--gold);
  padding: 14px 0;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  text-align: center;
}

/* ------------------------------------------------------------ Dolores --- */

.pains {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
  margin-top: 12px;
}
.pain {
  background: var(--white);
  border: 1px solid var(--cream-line);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 22px 24px;
  margin: 0;
  font-size: .98rem;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

/* ------------------------------------------------------------ Pilares --- */

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(268px, 1fr));
  gap: 20px;
}

.pillar {
  position: relative;
  background: var(--white);
  border: 1px solid var(--cream-line);
  border-radius: var(--radius);
  padding: 30px 28px 32px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.pillar:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 169, 97, .55);
  box-shadow: var(--shadow-md);
}

.pillar__num {
  font-family: var(--serif);
  font-size: .95rem;
  color: var(--gold);
  letter-spacing: .1em;
  margin-bottom: 14px;
}

.pillar__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  color: var(--gold);
}
.pillar__icon svg { width: 100%; height: 100%; }

.pillar h3 { margin-bottom: 10px; color: var(--navy); }

.pillar p {
  font-size: .96rem;
  color: var(--muted);
  margin-bottom: 16px;
}

.pillar__list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: .9rem;
  color: var(--muted);
}
.pillar__list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 7px;
}
.pillar__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  opacity: .55;
}

/* -------------------------------------------------------- Metodología --- */

.method {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
  margin-bottom: 34px;
}

.method__card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--navy-line);
  border-radius: var(--radius);
  padding: 34px 30px;
}
.method__card h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.method__card h3 .dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.method__card p { color: var(--muted-light); font-size: .98rem; }

.method__plus {
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--gold);
}

.method__quote {
  border-left: 2px solid var(--gold);
  padding-left: 22px;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.6vw, 1.5rem);
  line-height: 1.45;
  color: var(--white);
  max-width: 44ch;
}

/* --------------------------------------------------------- Proceso 4 --- */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
  counter-reset: step;
}

.step {
  position: relative;
  padding-top: 26px;
  border-top: 2px solid var(--cream-line);
  transition: border-color .25s var(--ease);
}
.step:hover { border-top-color: var(--gold); }

.step__num {
  font-family: var(--serif);
  font-size: 2.4rem;
  line-height: 1;
  color: var(--gold);
  opacity: .55;
  margin-bottom: 12px;
}
.step h3 { color: var(--navy); margin-bottom: 8px; }
.step p { font-size: .95rem; color: var(--muted); }

.step__meta {
  display: inline-block;
  margin-top: 12px;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

/* ------------------------------------------------------------ Sobre mí --- */

.about {
  display: grid;
  grid-template-columns: minmax(240px, .8fr) 1.2fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 800px) {
  .about { grid-template-columns: 1fr; }
  .about__media { max-width: 400px; margin-inline: auto; }
  .about__media::after { inset: 14px -14px -14px 14px; }
}

.about__media { position: relative; isolation: isolate; }
.about__photo {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  background: var(--navy);
}
.about__media::after {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  z-index: 0;
}

.photo-fallback {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  background: linear-gradient(150deg, var(--navy-mid), var(--navy-deep));
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  box-shadow: var(--shadow-lg);
}
.photo-fallback span {
  font-family: var(--serif);
  font-size: 3.4rem;
  color: var(--gold);
  letter-spacing: .04em;
}
.photo-fallback small {
  display: block;
  margin-top: 10px;
  font-size: .74rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
}

.about__signature {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--navy);
  margin-top: 6px;
}
.about__signature small {
  display: block;
  font-family: var(--sans);
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

/* ------------------------------------------------------- Testimonios --- */

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.testimonial {
  background: var(--white);
  border: 1px solid var(--cream-line);
  border-radius: var(--radius);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.testimonial__mark {
  font-family: var(--serif);
  font-size: 2.6rem;
  line-height: .8;
  color: var(--gold);
  opacity: .45;
  margin-bottom: 14px;
}
.testimonial p {
  font-size: .98rem;
  color: var(--muted);
  flex: 1;
}
.testimonial footer {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--cream-line);
  font-size: .86rem;
  color: var(--navy);
  font-weight: 600;
}
.testimonial footer span {
  display: block;
  font-weight: 400;
  color: var(--muted);
}

.placeholder-note {
  margin-top: 22px;
  font-size: .84rem;
  color: var(--muted);
  text-align: center;
  font-style: italic;
}

/* ------------------------------------------------------------ Paquetes --- */

.packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 22px;
  align-items: start;
}

.package {
  background: var(--white);
  border: 1px solid var(--cream-line);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: var(--shadow-sm);
}
.package--featured {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  position: relative;
}
.package--soon { opacity: .72; border-style: dashed; }

.package__tag {
  align-self: flex-start;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.package--soon .package__tag {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--cream-line);
}

.package h3 { color: var(--navy); margin-bottom: 6px; }
.package__sub { font-size: .92rem; color: var(--gold-deep); font-weight: 600; margin-bottom: 16px; }
.package > p { font-size: .96rem; color: var(--muted); }

.package__list {
  list-style: none;
  margin: 8px 0 22px;
  padding: 0;
  flex: 1;
}
.package__list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  font-size: .94rem;
  color: var(--ink);
}
.package__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .35em;
  width: 15px;
  height: 8px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}
.package__list li strong { font-weight: 600; }
.package__list li span { display: block; color: var(--muted); font-size: .88rem; }

.package__price {
  font-family: var(--serif);
  font-size: 1.9rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.package__price small { font-size: .8rem; font-family: var(--sans); color: var(--muted); }
.package__price-note { font-size: .82rem; color: var(--muted); margin-bottom: 20px; }

/* ------------------------------------------------------------ Tabla --- */

.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--cream-line);
  border-radius: var(--radius);
  background: var(--white);
}
table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: .94rem;
}
th, td {
  text-align: left;
  padding: 16px 20px;
  border-bottom: 1px solid var(--cream-line);
  vertical-align: top;
}
thead th {
  background: var(--navy);
  color: var(--white);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}
tbody tr:last-child td { border-bottom: 0; }
tbody td:first-child { font-weight: 600; color: var(--navy); white-space: nowrap; }
tbody td { color: var(--muted); }

/* ---------------------------------------------------------- Checklist --- */

.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.checklist li {
  position: relative;
  padding-left: 34px;
  font-size: 1rem;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: .3em;
  width: 16px;
  height: 9px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}
.checklist--x li::before {
  border: 0;
  transform: none;
  left: 6px;
  top: .55em;
  width: 12px;
  height: 2px;
  background: rgba(92, 107, 125, .5);
}

/* ------------------------------------------------------------ CTA final --- */

.cta {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  overflow: hidden;
  text-align: center;
  padding: clamp(64px, 9vw, 110px) 0;
}
.cta::before {
  content: "";
  position: absolute;
  width: 700px; height: 700px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(201, 169, 97, .14), transparent 62%);
  pointer-events: none;
}
.cta__inner { position: relative; z-index: 1; max-width: 720px; margin-inline: auto; }
.cta h2 { margin-bottom: 18px; }
.cta p { color: var(--muted-light); margin-bottom: 32px; }
.cta .btn-row { justify-content: center; }

/* ------------------------------------------------------------ Contacto --- */

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.form-card {
  background: var(--white);
  border: 1px solid var(--cream-line);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 38px);
  box-shadow: var(--shadow-md);
}

.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: .84rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 7px;
  letter-spacing: .01em;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--cream-line);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  transition: border-color .18s var(--ease), background-color .18s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='%235C6B7D' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 12px;
  padding-right: 40px;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 97, .18);
}
.field__hint { font-size: .8rem; color: var(--muted); margin-top: 6px; }

.form-actions {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}
.form-note {
  font-size: .82rem;
  color: var(--muted);
  text-align: center;
  margin-top: 16px;
}

.form-status {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: rgba(201, 169, 97, .12);
  border: 1px solid rgba(201, 169, 97, .4);
  font-size: .9rem;
  color: var(--navy);
}
.form-status.is-visible { display: block; }

/* Tarjetas de contacto directo */

.contact-list {
  display: grid;
  gap: 12px;
  margin-bottom: 26px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--cream-line);
  border-radius: var(--radius-sm);
  transition: transform .18s var(--ease), border-color .18s var(--ease), box-shadow .18s var(--ease);
  min-height: 68px;
}
.contact-item:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 169, 97, .6);
  box-shadow: var(--shadow-sm);
}

.contact-item__icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--navy);
  color: var(--white);
}
.contact-item__icon svg { width: 21px; height: 21px; }

.contact-item--ig .contact-item__icon {
  background: linear-gradient(45deg, #F09433, #E6683C 25%, #DC2743 50%, #CC2366 75%, #BC1888);
}
.contact-item--li .contact-item__icon { background: #0A66C2; }
.contact-item--wa .contact-item__icon { background: #25D366; }
.contact-item--mail .contact-item__icon { background: var(--gold); color: var(--navy); }
.contact-item--maps .contact-item__icon { background: var(--navy-mid); }

.contact-item__text { min-width: 0; }
.contact-item__text strong {
  display: block;
  font-size: .95rem;
  color: var(--navy);
  font-weight: 600;
}
.contact-item__text span {
  display: block;
  font-size: .86rem;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.contact-item__arrow {
  margin-left: auto;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform .18s var(--ease);
}
.contact-item:hover .contact-item__arrow { transform: translateX(3px); }

/* Botones sociales grandes (móvil, un toque) */

.social-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-bottom: 26px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 14px 18px;
  border-radius: 999px;
  color: var(--white);
  font-weight: 600;
  font-size: .95rem;
  transition: transform .18s var(--ease), filter .18s var(--ease), box-shadow .18s var(--ease);
}
.social-btn svg { width: 21px; height: 21px; flex-shrink: 0; }
.social-btn:hover { transform: translateY(-2px); filter: brightness(1.06); }

.social-btn--ig {
  background: linear-gradient(45deg, #F09433, #E6683C 25%, #DC2743 50%, #CC2366 75%, #BC1888);
  box-shadow: 0 8px 20px rgba(220, 39, 67, .26);
}
.social-btn--li {
  background: #0A66C2;
  box-shadow: 0 8px 20px rgba(10, 102, 194, .26);
}
.social-btn--wa {
  background: #25D366;
  box-shadow: 0 8px 20px rgba(37, 211, 102, .26);
}

.info-block {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 28px 26px;
}
.info-block h3 { color: var(--white); font-size: 1.15rem; margin-bottom: 12px; }
.info-block p { color: var(--muted-light); font-size: .94rem; }
.info-block ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: .94rem;
  color: var(--muted-light);
}
.info-block li { padding: 9px 0; border-bottom: 1px solid var(--navy-line); }
.info-block li:last-child { border-bottom: 0; }

/* --------------------------------------------------------------- FAQ --- */

.faq { max-width: 800px; margin-inline: auto; }
.faq__item {
  border-bottom: 1px solid var(--cream-line);
}
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0;
  background: none;
  border: 0;
  font-family: var(--sans);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
}
.faq__q::after {
  content: "+";
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  transition: transform .22s var(--ease);
}
.faq__q[aria-expanded="true"]::after { transform: rotate(45deg); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s var(--ease);
}
.faq__a p {
  padding-bottom: 22px;
  color: var(--muted);
  font-size: .97rem;
  margin: 0;
}

/* ------------------------------------------------------------- Footer --- */

.footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, .62);
  padding: clamp(46px, 6vw, 68px) 0 28px;
  font-size: .92rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--navy-line);
}
@media (max-width: 760px) {
  .footer__grid { grid-template-columns: 1fr; gap: 30px; }
}
.footer h4 {
  font-family: var(--sans);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: 10px; }
.footer a { transition: color .18s var(--ease); overflow-wrap: anywhere; }
.footer a:hover { color: var(--gold); }
.footer .brand { margin-bottom: 16px; }
.footer__tagline {
  font-size: .72rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 14px;
}

.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.footer__social a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--navy-line);
  border-radius: 11px;
  color: var(--white);
  transition: border-color .18s var(--ease), color .18s var(--ease), transform .18s var(--ease);
}
.footer__social a:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.footer__social svg { width: 19px; height: 19px; }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  justify-content: space-between;
  padding-top: 24px;
  font-size: .84rem;
  color: rgba(255, 255, 255, .45);
}

/* --------------------------------------------------- WhatsApp flotante --- */

.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  box-shadow: 0 10px 26px rgba(37, 211, 102, .38);
  transition: transform .2s var(--ease);
}
.wa-float:hover { transform: scale(1.06); }
.wa-float svg { width: 28px; height: 28px; }

@media (min-width: 900px) {
  .wa-float { right: 26px; bottom: 26px; }
}

/* ------------------------------------------------------- Animaciones --- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

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

/* ------------------------------------------------------------ Print --- */

@media print {
  .header, .wa-float, .cta, .nav-toggle { display: none !important; }
  body { color: #000; }
}
