/* Sándalo Consultores — hoja de estilos
   Paleta D · Piedra cálida */

:root {
  --piedra: #D9D3C7;
  --grafito: #383B3E;
  --azul-noche: #10233A;
  --plata: #B7B9B7;
  --blanco: #FFFFFF;
  --alt-bg: #F4F3F1;

  --font-serif: Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', sans-serif;

  --container: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--blanco);
  color: var(--grafito);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--azul-noche);
  margin: 0 0 .5em;
  line-height: 1.15;
}

p { margin: 0 0 1em; }

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

.eyebrow {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .75rem;
  font-weight: 600;
  color: var(--azul-noche);
  opacity: .7;
}

/* ---------- Botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 38px;
  border-radius: 2px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.btn-primary {
  background: var(--azul-noche);
  color: var(--blanco);
}
.btn-primary:hover { background: #0a1626; }

.btn-outline {
  background: transparent;
  color: var(--azul-noche);
  border-color: var(--azul-noche);
}
.btn-outline:hover { background: var(--azul-noche); color: var(--blanco); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(16, 35, 58, .1);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}

.logo { display: flex; flex-direction: column; line-height: 1; }
.logo .wordmark {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--azul-noche);
}
.logo .descriptor {
  font-family: var(--font-sans);
  font-size: .6rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--grafito);
  margin-top: 4px;
}
.logo .trace {
  width: 100%;
  height: 1px;
  background: var(--azul-noche);
  margin-top: 6px;
  opacity: .5;
}

nav.main-nav { display: flex; align-items: center; gap: 40px; }
nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0; padding: 0;
  font-size: .92rem;
  font-weight: 500;
}
nav.main-nav a { opacity: .85; }
nav.main-nav a:hover { opacity: 1; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--azul-noche);
  margin: 5px 0;
}

/* ---------- Hero ---------- */
.hero {
  padding: 130px 0 100px;
}
.hero-center .wrap {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.hero h1 {
  font-size: clamp(2.4rem, 4.4vw, 3.6rem);
  max-width: 16ch;
  margin-left: auto;
  margin-right: auto;
}
.hero .lead {
  font-size: 1.15rem;
  max-width: 46ch;
  margin-left: auto;
  margin-right: auto;
  color: var(--grafito);
}
.hero .lead { margin-bottom: 8px; }
.hero-sub {
  font-size: .98rem;
  max-width: 42ch;
  margin: 0 auto 28px;
  color: var(--grafito);
  opacity: .85;
}
.hero .btn-primary { margin-top: 8px; }
.hero-trust {
  margin: 24px 0 4px;
  font-size: .88rem;
  color: var(--grafito);
}
.hero-note {
  font-size: .82rem;
  color: var(--azul-noche);
  opacity: .6;
  font-style: italic;
  margin: 0;
}

/* ---------- Secciones genéricas ---------- */
section { padding: 90px 0; }
.section-head {
  max-width: 640px;
  margin-bottom: 56px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }

.alt-bg { background: var(--alt-bg); }
.section-head-center { text-align: center; margin-left: auto; margin-right: auto; }

/* ---------- Servicios ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--plata);
  border: 1px solid var(--plata);
}
.service-card {
  background: var(--alt-bg);
  padding: 36px 28px;
}
.alt-bg .service-card { background: var(--blanco); }
.service-card .icon {
  width: 40px; height: 40px;
  margin-bottom: 20px;
  stroke: var(--azul-noche);
  fill: none;
  stroke-width: 1.4;
}
.service-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.service-card p { font-size: .92rem; color: var(--grafito); margin: 0; }
.needs-cta { text-align: center; margin: 40px 0 0; }
.needs-cta a { font-weight: 600; color: var(--azul-noche); }
.needs-cta a:hover { text-decoration: underline; }

/* ---------- El problema ---------- */
.loop-line {
  font-size: .92rem;
  color: var(--grafito);
  opacity: .8;
  line-height: 1.9;
  max-width: 62ch;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.problem-question {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--azul-noche);
  margin-top: 48px;
  margin-bottom: 12px;
  text-align: center;
}
.problem-answer { max-width: 60ch; margin-left: auto; margin-right: auto; text-align: center; }
.problem-pullquote { margin-top: 32px; margin-bottom: 8px; padding-top: 0; border-top: none; }

/* ---------- Propuesta de valor / pilares reutilizables ---------- */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 56px;
}
.pillar h3 { font-size: 1.15rem; margin-bottom: 8px; }
.pillar p { font-size: .92rem; color: var(--grafito); margin: 0; }
.pillar { border-top: 1px solid var(--plata); padding-top: 20px; }
.identify-grid { margin-top: 64px; }

/* ---------- Panel destacado (tasación) ---------- */
.highlight-panel {
  margin-top: 72px;
  padding: 48px;
  background: var(--alt-bg);
  border-left: 3px solid var(--azul-noche);
  border-radius: 2px;
}
.highlight-panel h3 { font-size: 1.4rem; margin-bottom: 16px; }
.highlight-panel p { max-width: 62ch; }
.highlight-bold {
  font-weight: 600;
  color: var(--azul-noche);
}

.narrow-copy { max-width: 640px; margin-left: auto; margin-right: auto; }

/* ---------- Diferenciación ---------- */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.diff-grid .pillar:nth-child(4),
.diff-grid .pillar:nth-child(5) { grid-column: span 1; }

/* ---------- Proceso ---------- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  counter-reset: step;
  margin-top: 32px;
}
.step { position: relative; padding-top: 44px; }
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--azul-noche);
  position: absolute;
  top: 0; left: 0;
}
.step::after {
  content: '';
  position: absolute;
  top: 4px; left: 46px;
  width: calc(100% - 46px);
  height: 1px;
  background: var(--plata);
}
.step h4 { font-size: 1.02rem; margin-bottom: 8px; }
.step p { font-size: .9rem; color: var(--grafito); }
.process-closing {
  text-align: center;
  max-width: 52ch;
  margin: 56px auto 28px;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--azul-noche);
}
.process-cta { text-align: center; margin: 48px 0 0; }

/* ---------- Nosotros ---------- */
.about {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.about-no-media {
  grid-template-columns: 1fr;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.about-media {
  aspect-ratio: 4/5;
  background: var(--blanco);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(16,35,58,.08);
}
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-copy .eyebrow { display: block; margin-bottom: 14px; }
.about-copy h3 { font-size: 1.3rem; margin-top: 40px; }
.about-copy .btn-primary { margin: 20px 0 4px; }
.essence-lead { font-weight: 600; color: var(--azul-noche); margin-bottom: 16px; }
.values-list {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.values-list li {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--azul-noche);
  position: relative;
  padding-left: 24px;
}
.values-list li:first-child { padding-left: 0; }
.values-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 6px; height: 1px;
  background: var(--plata);
  transform: translateY(-50%);
}
.values-list li:first-child::before { content: none; }

.story-pullquote {
  text-align: center;
  max-width: 22ch;
  margin: 64px auto 0;
  padding-top: 48px;
  border-top: 1px solid var(--plata);
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--azul-noche);
}

/* ---------- Confianza ---------- */
.why-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 40px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.why-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
  color: var(--azul-noche);
}
.why-list .icon {
  width: 28px; height: 28px;
  flex-shrink: 0;
  stroke: var(--azul-noche);
  fill: none;
  stroke-width: 1.4;
}

/* ---------- CTA final / Contacto ---------- */
.cta-final {
  background: var(--azul-noche);
  padding: 100px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 20px; }
.cta-final .contact-info h2 { color: var(--blanco); font-size: clamp(1.8rem, 3vw, 2.3rem); }
.cta-final .contact-info p { color: var(--plata); max-width: 42ch; }
.emotional-lead {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--piedra);
  max-width: 40ch;
}
.emotional-lead:nth-of-type(2) { margin-bottom: 36px; }
.contact-form h3 { font-size: 1.2rem; margin-bottom: 8px; }
.form-intro { font-size: .88rem; color: var(--grafito); opacity: .8; margin-bottom: 24px; }
.cta-final-contacts {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.cta-final-contacts a {
  color: var(--blanco);
  font-weight: 600;
  font-size: .92rem;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--piedra);
}
.cta-final-contacts a:hover { opacity: .8; }

form.contact-form {
  position: relative;
  background: var(--blanco);
  padding: 40px;
  border-radius: 4px;
  border: 1px solid rgba(16,35,58,.08);
}
.form-row { margin-bottom: 20px; }
.form-row label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--azul-noche);
  margin-bottom: 6px;
}
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--plata);
  border-radius: 2px;
  font-family: var(--font-sans);
  font-size: .95rem;
  background: var(--blanco);
  color: var(--grafito);
}
.form-row textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: .78rem; color: var(--grafito); opacity: .7; margin-top: 16px; }
.form-note a { text-decoration: underline; }
.form-status {
  font-size: .85rem;
  font-weight: 600;
  color: var(--azul-noche);
  min-height: 1.2em;
  margin: 12px 0 0;
}
.form-status.is-error { color: var(--grafito); text-decoration: underline; text-decoration-style: dotted; }
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ---------- Footer ---------- */
footer {
  background: var(--azul-noche);
  color: var(--plata);
  padding: 64px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.15);
}
footer .logo .wordmark { color: var(--blanco); }
footer .logo .descriptor { color: var(--plata); }
footer .logo .trace { background: var(--plata); }
footer .foot-desc { font-size: .88rem; color: var(--plata); margin-top: 16px; max-width: 34ch; line-height: 1.7; }
footer .footer-cta {
  margin-top: 20px;
  border-color: var(--piedra);
  color: var(--blanco);
}
footer .footer-cta:hover { background: var(--piedra); color: var(--azul-noche); }
footer h5 {
  font-family: var(--font-sans);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--plata);
  margin-bottom: 16px;
}
footer ul { list-style: none; padding: 0; margin: 0; }
footer li { margin-bottom: 10px; font-size: .9rem; }
footer a:hover { text-decoration: underline; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 28px;
  font-size: .8rem;
  color: var(--plata);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom .credit {
  font-size: .72rem;
  opacity: .38;
  transition: opacity .3s ease;
}
.footer-bottom .credit a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease;
}
.footer-bottom .credit:hover { opacity: .8; }
.footer-bottom .credit a:hover { border-color: currentColor; }

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

/* Entrada del hero al cargar */
.hero-anim {
  opacity: 0;
  transform: translateY(18px);
  animation: rise .8s cubic-bezier(.22,.61,.36,1) forwards;
}
.hero-anim-1 { animation-delay: .05s; }
.hero-anim-2 { animation-delay: .25s; }

@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

/* Revelado al hacer scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.services-grid .reveal:nth-child(2) { transition-delay: .06s; }
.services-grid .reveal:nth-child(3) { transition-delay: .12s; }
.services-grid .reveal:nth-child(4) { transition-delay: .18s; }
.services-grid .reveal:nth-child(5) { transition-delay: .24s; }
.services-grid .reveal:nth-child(6) { transition-delay: .3s; }
.services-grid .reveal:nth-child(7) { transition-delay: .36s; }
.services-grid .reveal:nth-child(8) { transition-delay: .42s; }

.step.reveal {
  transform: translateY(36px);
  transition-duration: .8s;
}
.process-steps .reveal:nth-child(1) { transition-delay: 0s; }
.process-steps .reveal:nth-child(2) { transition-delay: .2s; }
.process-steps .reveal:nth-child(3) { transition-delay: .4s; }
.process-steps .reveal:nth-child(4) { transition-delay: .6s; }

.pillars-grid .reveal:nth-child(2) { transition-delay: .1s; }
.pillars-grid .reveal:nth-child(3) { transition-delay: .2s; }

.diff-grid .reveal:nth-child(2) { transition-delay: .08s; }
.diff-grid .reveal:nth-child(3) { transition-delay: .16s; }
.diff-grid .reveal:nth-child(4) { transition-delay: .24s; }
.diff-grid .reveal:nth-child(5) { transition-delay: .32s; }

.why-list .reveal:nth-child(2) { transition-delay: .06s; }
.why-list .reveal:nth-child(3) { transition-delay: .12s; }
.why-list .reveal:nth-child(4) { transition-delay: .18s; }

/* Cabecera: sombra sutil al hacer scroll */
.site-header { transition: box-shadow .3s ease, background .3s ease; }
.site-header.is-scrolled { box-shadow: 0 1px 0 rgba(16,35,58,.08), 0 8px 24px -20px rgba(16,35,58,.3); }

/* Micro-interacciones */
.btn { transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 24px -12px rgba(16,35,58,.45); }
.btn-outline:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.service-card { transition: transform .35s ease, box-shadow .35s ease, background .35s ease; }
.service-card:hover {
  transform: translateY(-6px);
  background: var(--blanco);
  box-shadow: 0 16px 32px -22px rgba(16,35,58,.35);
}
.service-card .icon { transition: transform .35s ease; }
.service-card:hover .icon { transform: scale(1.08); }

nav.main-nav ul a {
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
}
nav.main-nav ul a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--azul-noche);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s ease;
}
nav.main-nav ul a:hover::after { transform: scaleX(1); transform-origin: left; }

.logo .trace { transition: width .4s ease; }

.values-list li { transition: transform .2s ease; }
.values-list li:hover { transform: translateX(4px); }

.contact-detail .icon { transition: transform .3s ease; }
.contact-detail:hover .icon { transform: scale(1.1); }

.form-row input,
.form-row textarea,
.form-row select {
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--azul-noche);
  box-shadow: 0 0 0 3px rgba(16,35,58,.08);
}

@media (prefers-reduced-motion: reduce) {
  .hero-anim, .reveal {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .service-card:hover, .btn-primary:hover, .btn-outline:hover {
    transform: none !important;
  }
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  border-top: 1px solid var(--plata);
}
.faq-item {
  border-bottom: 1px solid var(--plata);
  padding: 22px 0;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--azul-noche);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--azul-noche);
  flex-shrink: 0;
  transition: transform .25s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin: 16px 0 0; color: var(--grafito); font-size: .95rem; }

/* ---------- Aviso de cookies ---------- */
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  max-width: 560px;
  margin: 0 auto;
  background: var(--azul-noche);
  color: var(--piedra);
  padding: 22px 24px;
  border-radius: 4px;
  box-shadow: 0 20px 50px -20px rgba(16,35,58,.5);
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 14px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .4s ease, transform .4s ease;
}
.cookie-banner.is-visible { opacity: 1; transform: translateY(0); }
.cookie-banner p { color: var(--piedra); font-size: .85rem; margin: 0; line-height: 1.6; }
.cookie-banner a { color: var(--blanco); text-decoration: underline; }
.cookie-banner .cookie-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cookie-banner .btn { padding: 10px 20px; font-size: .85rem; }
.cookie-banner .btn-outline { border-color: var(--piedra); color: var(--blanco); }
.cookie-banner .btn-outline:hover { background: var(--piedra); color: var(--azul-noche); }

@media (prefers-reduced-motion: reduce) {
  .cookie-banner { transition: none !important; }
}

/* ---------- Páginas simples (legal, gracias) ---------- */
.simple-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 140px 32px 100px;
}
.simple-page h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 8px; }
.simple-page .updated { font-size: .85rem; color: var(--grafito); opacity: .6; margin-bottom: 40px; }
.simple-page h2 { font-size: 1.25rem; margin-top: 40px; margin-bottom: 12px; }
.simple-page p, .simple-page li { color: var(--grafito); font-size: 1rem; line-height: 1.7; }
.simple-page ul { padding-left: 20px; margin-bottom: 1em; }
.simple-page li { margin-bottom: 6px; }
.simple-page a { color: var(--azul-noche); text-decoration: underline; }

.thanks-page {
  min-height: 55vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 32px 100px;
}
.thanks-page .icon-check {
  width: 56px; height: 56px;
  stroke: var(--azul-noche);
  fill: none;
  stroke-width: 1.4;
  margin-bottom: 24px;
}
.thanks-page h1 { font-size: clamp(2rem, 4vw, 2.6rem); margin-bottom: 12px; }
.thanks-page p { max-width: 46ch; color: var(--grafito); margin-bottom: 32px; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); row-gap: 44px; }
  .pillars-grid { grid-template-columns: 1fr; gap: 32px; }
  .why-list { grid-template-columns: 1fr; }
  .about { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  nav.main-nav ul { display: none; }
}

@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  section { padding: 64px 0; }
  .hero { padding: 80px 0 60px; }
  nav.main-nav ul {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--blanco);
    flex-direction: column;
    gap: 0;
    padding: 8px 20px 20px;
    border-bottom: 1px solid var(--plata);
  }
  nav.main-nav ul.open { display: flex; }
  nav.main-nav ul li { padding: 12px 0; border-bottom: 1px solid rgba(16,35,58,.06); }
  .nav-toggle { display: block; }
  nav.main-nav > a.btn-primary { display: none; }
}
