/* ============================================================
   Copy Center Ferraz — Hoja de estilos única
   Paleta y tipografías heredadas de la web original.
   ============================================================ */

:root {
  /* Colores de marca */
  --blue:        #416bb5;
  --blue-dark:   #001d65;
  --blue-alt:    #003399;
  --orange:      #ff7200;
  --orange-dark: #e56700;
  --orange-light:#ff9a33;
  --brown:       #796856;
  --terra:       #a66930;
  --brown-dark:  #5e4c3a;
  --brown-2:     #685442;
  --tan:         #ede6df;

  /* Neutros */
  --white:   #ffffff;
  --bg:      #f9f9f9;
  --bg-2:    #f5f5f5;
  --border:  #ede6df;
  --border-2:#d9d5cf;
  --muted:   #b7bfd0;
  --text:    #444444;

  --maxw: 1120px;
  --radius: 12px;
  --shadow: 0 16px 32px rgba(0, 29, 101, .10);

  /* Tipografías de marca (Outfit + Source Sans 3) */
  --font-display: 'Outfit', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-body:    'Source Sans 3', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

/* ── Base ── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--orange); color: #fff; }

h1, h2, h3 { margin: 0; }

/* Utilidad de foco visible y accesibilidad */
:where(a, button, input, textarea, select):focus-visible {
  outline: 3px solid rgba(65, 107, 181, .5);
  outline-offset: 2px;
  border-radius: 4px;
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 12px; top: -50px; z-index: 100;
  background: var(--blue-dark); color: #fff; padding: 10px 16px; border-radius: 8px;
  transition: top .2s;
}
.skip-link:focus { top: 12px; }

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

/* Títulos con la tipografía de marca */
.title { font-family: var(--font-display); font-weight: 700; color: var(--blue-dark); line-height: 1.14; letter-spacing: -.015em; }

/* ── Botones ── */
.btn {
  display: inline-flex; align-items: center; gap: 9px; white-space: nowrap;
  font-family: var(--font-display); font-weight: 700; font-size: 16px; line-height: 1;
  padding: 14px 26px; border-radius: 11px; border: 2px solid transparent;
  cursor: pointer; transition: background .2s, color .2s, border-color .2s;
}
.btn--primary { background: var(--orange); color: #fff; box-shadow: 0 8px 20px rgba(255, 114, 0, .30); }
.btn--primary:hover { background: var(--orange-dark); color: #fff; }
.btn--outline { background: transparent; color: var(--blue-alt); border-color: var(--blue-alt); padding: 12px 24px; }
.btn--outline:hover { background: #d6e0f2; color: var(--blue-dark); }
.btn--sm { padding: 11px 18px; font-size: 15px; }
.btn--lg { padding: 16px 30px; font-size: 18px; }
.btn__icon { width: 17px; height: 17px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: var(--white); border-bottom: 1px solid var(--border);
}
.site-header .container { max-width: 1380px; }
.site-header__inner {
  min-height: 74px; display: flex; align-items: center; justify-content: space-between;
  position: relative; gap: 16px;
}
.brand { display: flex; flex-direction: column; line-height: 1.05; flex-shrink: 0; }
.brand__name {
  font-family: var(--font-display); font-weight: 700; white-space: nowrap;
  font-size: 22px; letter-spacing: .4px; text-transform: uppercase; color: var(--blue-dark);
}
.brand__accent { color: var(--orange); }
.brand__sub {
  font-size: 10.5px; letter-spacing: 2.4px; text-transform: uppercase;
  color: var(--brown); margin-top: 4px;
}

.nav__toggle {
  display: none; align-items: center; justify-content: center;
  width: 44px; height: 44px; border: none; background: transparent; color: var(--blue-dark); cursor: pointer;
}
.nav__list {
  display: flex; flex-direction: row; align-items: center; gap: 2px;
  margin: 0; padding: 0; list-style: none;
}
.nav__link {
  display: block; padding: 12px 10px; font-size: 14px; font-weight: 700; letter-spacing: .2px;
  white-space: nowrap; color: var(--text);
  border-bottom: 3px solid transparent; transition: color .2s, border-color .2s;
}
.nav__link:hover { color: var(--blue); }
.nav__link.is-active { color: var(--blue); border-bottom-color: var(--orange); }

@media (max-width: 1279px) {
  .nav__toggle { display: inline-flex; }
  .nav__list {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 2px; padding: 8px 16px 16px;
    background: var(--white); border-bottom: 1px solid var(--border);
    box-shadow: 0 14px 28px rgba(0, 29, 101, .10);
    display: none;
  }
  .nav__list.is-open { display: flex; }
  .nav__link { border-bottom: none; padding: 12px 6px; }
  .nav__link.is-active { border-bottom: none; }
}

/* ============================================================
   HERO / CARRUSEL (home)
   ============================================================ */
.hero { position: relative; height: clamp(390px, 52vw, 560px); overflow: hidden; background: var(--blue-dark); }
.hero__slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity .8s ease; pointer-events: none;
}
.hero__slide.is-active { opacity: 1; pointer-events: auto; }
.hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__placeholder {
  position: absolute; inset: 0;
  background-color: var(--tan);
  background-image: repeating-linear-gradient(45deg, #e4dccf 0 13px, #efe8df 13px 26px);
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,29,101,.88), rgba(0,29,101,.5) 55%, rgba(0,29,101,.18));
}
.hero__body { position: absolute; inset: 0; display: flex; align-items: center; }
.hero__content { max-width: 580px; color: #fff; }
.hero__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(28px, 4.8vw, 48px); line-height: 1.1; margin: 0 0 16px; }
.hero__sub { font-size: clamp(15px, 2vw, 19px); line-height: 1.5; margin: 0 0 28px; color: rgba(255,255,255,.94); }

.hero__arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%; border: none;
  background: rgba(255,255,255,.85); color: var(--blue-dark); cursor: pointer;
  display: flex; align-items: center; justify-content: center; z-index: 4; transition: background .2s;
}
.hero__arrow:hover { background: #fff; }
.hero__arrow--prev { left: 16px; }
.hero__arrow--next { right: 16px; }
.hero__dots { position: absolute; bottom: 18px; left: 0; right: 0; display: flex; gap: 9px; justify-content: center; z-index: 4; }
.hero__dot { width: 10px; height: 10px; border-radius: 6px; border: none; padding: 0; cursor: pointer; background: rgba(255,255,255,.55); transition: all .3s; }
.hero__dot.is-active { width: 26px; background: var(--orange); }

/* ============================================================
   SECCIONES GENÉRICAS
   ============================================================ */
.section { padding: 64px 0; }
.section--tint { background: var(--bg); }
.section--dark { background: var(--blue-dark); color: #fff; }
.section--intro { padding: 64px 0 44px; }
.section--services { padding: 16px 0 64px; }

.eyebrow { text-transform: uppercase; letter-spacing: 3px; font-size: 12.5px; font-weight: 700; color: var(--blue); margin: 0 0 14px; }
.lede { font-size: 17px; color: var(--brown-dark); line-height: 1.75; margin: 0; }

.intro { max-width: 760px; }
.intro__title { font-size: clamp(26px, 3.6vw, 38px); margin: 0 0 18px; }

.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 30px; flex-wrap: wrap; }
.section-head .title { font-size: clamp(22px, 3vw, 30px); }
.section-head__note { color: var(--brown); font-size: 15px; }
.section-title-center { text-align: center; }
.section-title-center .title { font-size: clamp(22px, 3vw, 30px); margin: 0 0 6px; }
.section-sub { text-align: center; color: var(--brown); margin: 0 0 34px; }

/* ── Rejilla de servicios ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 22px; }
.service-card {
  display: flex; flex-direction: column; gap: 10px;
  background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 28px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(166, 105, 48, .12); border-color: #ffc894; }
.service-card__icon {
  width: 52px; height: 52px; border-radius: 13px; margin-bottom: 6px;
  display: flex; align-items: center; justify-content: center;
  background: var(--tan); /* bg y color (stroke) del icono se fijan por servicio en el HTML */
}
.service-card__icon svg { width: 26px; height: 26px; }
/* Tarjeta destacada oscura (Adjuntar archivos) */
.service-card--dark { background: var(--blue-dark); border-color: var(--blue-dark); }
.service-card--dark:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0, 29, 101, .28); border-color: var(--blue-dark); }
.service-card--dark .service-card__title { color: #fff; }
.service-card--dark .service-card__desc { color: #a9bee4; }
.service-card--dark .service-card__more { color: var(--orange-light); }
.service-card__arrow { display: inline-block; transition: transform .2s; }
.service-card:hover .service-card__arrow { transform: translateX(4px); }
.service-card__title { font-family: var(--font-display); font-weight: 700; color: var(--blue-dark); font-size: 19px; }
.service-card__desc { margin: 0; color: var(--brown-dark); font-size: 15px; line-height: 1.6; flex: 1; }
.service-card__more { color: var(--blue-alt); font-family: var(--font-display); font-weight: 700; font-size: 15px; margin-top: 6px; }
.service-card:hover .service-card__more { color: var(--orange); }

/* ── Destacados ── */
.featured-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.featured-card { background: var(--white); border: 1px solid var(--border); border-radius: 13px; overflow: hidden; display: flex; flex-direction: column; }
.featured-card__media { position: relative; height: 168px; background-color: var(--tan); background-image: repeating-linear-gradient(45deg, #e4dccf 0 13px, #efe8df 13px 26px); }
.featured-card__media img { width: 100%; height: 100%; object-fit: cover; }
.featured-card__body { padding: 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.featured-card__title { font-family: var(--font-display); font-weight: 700; color: var(--blue-dark); font-size: 20px; }
.featured-card__text { margin: 0; color: var(--brown-dark); font-size: 15px; line-height: 1.65; flex: 1; }
.featured-card__more { color: var(--orange); font-weight: 700; font-size: 15px; }
.featured-card__more:hover { color: var(--orange-dark); }

/* ── Horarios (home) ── */
.schedule { display: flex; flex-wrap: wrap; gap: 36px; align-items: center; justify-content: space-between; }
.schedule__title { font-family: var(--font-display); font-weight: 700; color: #fff; font-size: clamp(22px, 3vw, 28px); margin: 0 0 6px; }
.schedule__note { color: var(--orange-light); margin: 0; font-weight: 700; }
.schedule__cols { display: flex; gap: 44px; flex-wrap: wrap; }
.schedule__col { display: flex; flex-direction: column; gap: 4px; }
.schedule__day { text-transform: uppercase; letter-spacing: 1.5px; font-size: 12px; color: var(--muted); }
.schedule__hours { font-size: 19px; }

/* ============================================================
   PÁGINAS DE SERVICIO
   ============================================================ */
.page-hero { background: var(--bg); border-bottom: 1px solid var(--border); padding: 46px 0; }
.breadcrumb { font-size: 13px; color: var(--brown); margin: 0 0 12px; }
.breadcrumb a { color: var(--blue); }
.breadcrumb a:hover { text-decoration: underline; }
.page-hero__title { font-family: var(--font-display); font-weight: 700; color: var(--blue-dark); font-size: clamp(28px, 4vw, 42px); }
.page-hero__sub { color: var(--brown-dark); font-size: 17px; margin: 12px 0 0; max-width: 640px; }

.service-layout { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 44px; align-items: start; }
.service-copy p { line-height: 1.75; }
.service-copy p:first-child { font-size: 17px; color: var(--text); margin: 0 0 18px; }
.service-copy p + p { font-size: 16px; color: var(--brown-dark); margin: 0 0 18px; }
.service-copy p:last-child { margin-bottom: 0; }
.service-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

.service-media__img {
  position: relative; height: 230px; border-radius: 13px; margin-bottom: 20px; overflow: hidden;
  background-color: var(--tan); background-image: repeating-linear-gradient(45deg, #e4dccf 0 13px, #efe8df 13px 26px);
}
.service-media__img img { width: 100%; height: 100%; object-fit: cover; }
.chips { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.chip { background: var(--bg); border: 1px solid var(--border); border-radius: 10px; padding: 14px 16px; font-weight: 700; color: var(--blue-dark); font-size: 14.5px; }

/* ============================================================
   FORMULARIOS
   ============================================================ */
.form { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 28px; }
.form-grid { display: grid; gap: 18px; }
.form-grid--2 { grid-template-columns: 1fr 1fr; }
.form-grid--auto { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.field--full { grid-column: 1 / -1; }
.field label, .field__label { display: block; font-weight: 700; font-size: 14px; color: var(--blue-dark); margin-bottom: 6px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 12px 14px; border: 1px solid var(--border-2); border-radius: 8px;
  font-family: inherit; font-size: 15px; color: var(--text); background: #fff;
  outline: none; transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--blue); box-shadow: 0 0 0 3px rgba(65, 107, 181, .15);
}
/* Honeypot anti-spam: oculto para humanos */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Zona de arrastre de archivos */
.dropzone {
  margin-top: 20px; padding: 32px 20px; text-align: center; border-radius: 12px;
  border: 2px dashed #c9d5ec; background: var(--bg); transition: all .2s;
}
.dropzone.is-dragover { border-color: var(--orange); background: #fff3e9; }
.dropzone__label { display: flex; flex-direction: column; align-items: center; gap: 10px; cursor: pointer; }
.dropzone__title { font-weight: 700; color: var(--blue-dark); font-size: 15.5px; }
.dropzone__title span { color: var(--blue); }
.dropzone__hint { font-size: 13px; color: var(--brown); }

.file-list { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.file-row {
  display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 8px;
  border: 1px solid #e2ddd6; background: var(--bg);
}
.file-row.is-bad { border-color: #f6cbae; background: #fdece1; }
.file-row__name { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 14px; color: var(--blue-dark); font-weight: 700; }
.file-row__status { font-size: 13px; color: var(--brown); }
.file-row__remove { border: none; background: transparent; cursor: pointer; color: #b5451a; display: flex; align-items: center; }

/* Mensajes (alertas) */
.alert { margin-top: 18px; padding: 13px 16px; border-radius: 9px; font-size: 14.5px; font-weight: 600; line-height: 1.5; }
.alert--ok { background: #e8f3ec; color: #1c6b3f; border: 1px solid #bfe3cc; }
.alert--error { background: #fdece1; color: #b5451a; border: 1px solid #f6cbae; }

/* ============================================================
   CONTACTO
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 44px; align-items: start; }
.info-card { background: var(--bg); border: 1px solid var(--border); border-radius: 14px; padding: 26px; }
.info-card .title { font-size: 20px; margin: 0 0 18px; }
.schedule-card { background: var(--blue-dark); color: #fff; border-radius: 14px; padding: 26px; }
.schedule-card .title { color: #fff; font-size: 20px; margin: 0 0 16px; }
.schedule-card__row { display: flex; justify-content: space-between; padding: 8px 0; }
.schedule-card__row + .schedule-card__row { border-top: 1px solid rgba(255,255,255,.14); }
.schedule-card__row span { color: var(--muted); }
.contact-aside { display: flex; flex-direction: column; gap: 22px; }

/* ── vCard ── */
.vcard { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; font-size: 15px; }
.vcard li { display: flex; gap: 10px; }
.vcard__icon { flex-shrink: 0; margin-top: 2px; color: var(--blue); }
.vcard .value, .vcard .email a { color: var(--blue); font-weight: 700; }
.vcard .fax { padding-left: 0; }
.vcard__label { font-weight: 700; }
.vcard .co { font-size: 13.5px; color: var(--brown); }
.vcard .co .url { color: var(--terra); font-weight: 700; }
.info-card .vcard li { color: var(--brown-dark); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--bg); border-top: 1px solid var(--border); color: var(--brown-dark); padding: 48px 0 26px; margin-top: auto; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 36px; }
.brand__name--footer { font-size: 19px; }
.footer-about { margin: 12px 0 0; font-size: 14.5px; line-height: 1.7; color: var(--brown-2); max-width: 280px; }
.footer-heading { font-family: var(--font-display); font-size: 14px; text-transform: uppercase; letter-spacing: 1px; color: var(--terra); margin: 0 0 14px; font-weight: 600; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px 24px; font-size: 14.5px; }
.footer-links a:hover { color: var(--blue); }
.site-footer .vcard { gap: 9px; font-size: 14.5px; }
.footer-bottom { border-top: 1px solid #e2ddd6; margin-top: 32px; padding-top: 20px; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; }
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; font-size: 13.5px; }
.footer-legal a { color: var(--brown-2); }
.footer-legal a:hover { color: var(--blue); }
.footer-copy { margin: 0; font-size: 13px; color: var(--muted); }

/* Documentos legales sencillos */
.legal-content { max-width: 820px; }
.legal-content h2 { font-family: var(--font-display); color: var(--blue-dark); font-size: 22px; margin: 28px 0 10px; }
.legal-content p { margin: 0 0 14px; }

/* Layout a pantalla completa para empujar el footer abajo */
body { display: flex; flex-direction: column; min-height: 100vh; }
main { flex: 1; }

/* ── Animación de entrada ── */
@keyframes ccfFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.fade-in { animation: ccfFade .4s ease; }

/* ── Responsive puntual ── */
@media (max-width: 620px) {
  .form-grid--2 { grid-template-columns: 1fr; }
  .chips { grid-template-columns: 1fr; }
  .btn { width: auto; }
}

/* ============================================================
   REFINAMIENTOS EDITORIALES (menos "plantilla", más taller)
   ============================================================ */

/* Barra de registro tipo imprenta (segmentos, no degradado suave) */
.topbar {
  height: 4px;
  background: linear-gradient(90deg,
    var(--blue-dark) 0 25%, var(--blue) 25% 50%, var(--terra) 50% 75%, var(--orange) 75% 100%);
}

/* Antetítulo con guion de acento (alineado a la izquierda) */
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  text-transform: uppercase; letter-spacing: 2.5px; font-size: 12px; font-weight: 700;
  color: var(--blue); margin: 0 0 12px;
}
.kicker::before { content: ""; width: 22px; height: 2px; background: var(--orange); display: inline-block; }

/* Encabezados de sección a la izquierda (no todo centrado) */
.section-head--editorial { align-items: flex-end; }
.section-head--editorial .title { font-size: clamp(24px, 3.2vw, 32px); }

/* Micro-detalle tipográfico de la marca en la cabecera */
.brand__sub { font-family: var(--font-display); }

/* Destacados: asimetría — el primero manda (grande a la izquierda) */
@media (min-width: 860px) {
  .featured-grid--editorial { grid-template-columns: 1.35fr 1fr; }
  .featured-card--lead { grid-row: 1 / span 2; }
  .featured-card--lead .featured-card__media { height: auto; flex: 1; min-height: 300px; }
  .featured-card--lead .featured-card__title { font-size: 24px; }
}

/* Páginas de servicio: alterna el lado de la imagen */
@media (min-width: 760px) {
  .service-layout--img-left .service-copy { order: 2; }
}

/* El título grande de la home queda a la izquierda, con medida de lectura cómoda */
.intro__title { max-width: 18ch; }

/* Afinado de tracking en titulares grandes */
.page-hero__title, .hero__title { letter-spacing: -.02em; }

/* ── Respeto por reduce-motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .hero__slide { transition: none; }
  .service-card:hover .service-card__arrow { transform: none; }
}

/* ============================================================
   HOME REDISEÑADA (solo servicios) — componentes nuevos
   ============================================================ */

/* Encabezados de sección */
.sec-eyebrow { font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--terra); }
.sec-title   { font-family: var(--font-display); font-weight: 700; color: var(--blue-dark); font-size: clamp(1.7rem, 3.4vw, 2.5rem); line-height: 1.15; letter-spacing: -.01em; margin: 10px 0 0; text-wrap: balance; }
.sec-lead    { margin: 12px 0 0; font-size: 1.1rem; color: var(--brown-dark); }
.sec-head--center { max-width: 620px; margin: 0 auto; text-align: center; }

/* Placeholder de imagen (con nombre de fichero visible) */
.ph-img {
  position: relative; border-radius: 16px; overflow: hidden; border: 1px solid #d9be9e;
  background-color: var(--tan); background-image: repeating-linear-gradient(45deg, #f5f5f5 0 12px, #ede6df 12px 24px);
  display: flex; align-items: center; justify-content: center;
}
.ph-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ph-img__tag { font-family: ui-monospace, Menlo, Consolas, monospace; font-size: 13px; color: var(--brown-dark); background: #fff; padding: 8px 14px; border-radius: 8px; border: 1px solid #d9be9e; }

.badge { display: inline-block; font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--terra); background: var(--tan); padding: 6px 14px; border-radius: 999px; }

/* HERO de servicios (2 columnas) */
.home-hero { background: linear-gradient(180deg, var(--bg) 0%, var(--white) 100%); border-bottom: 1px solid var(--border); }
.home-hero__inner { display: flex; flex-wrap: wrap; align-items: center; gap: clamp(28px, 4vw, 56px); padding: clamp(40px, 6vw, 80px) 0; }
.home-hero__text  { flex: 1 1 420px; min-width: 290px; }
.home-hero__media { flex: 1 1 380px; min-width: 290px; }
.home-hero__title { font-family: var(--font-display); font-weight: 700; color: var(--blue-dark); font-size: clamp(2.1rem, 4.6vw, 3.4rem); line-height: 1.1; letter-spacing: -.02em; margin: 20px 0 0; text-wrap: balance; }
.home-hero__lead  { margin: 20px 0 0; font-size: clamp(1.05rem, 1.4vw, 1.28rem); color: var(--brown-dark); max-width: 40ch; }
.home-hero__cta   { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.home-hero__media .ph-img { aspect-ratio: 73 / 30; }

/* Barra de confianza (USP) */
.usp { background: var(--white); border-bottom: 1px solid var(--border); }
.usp__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 26px; padding: clamp(28px, 3vw, 44px) 0; }
.usp__item { display: flex; gap: 14px; align-items: flex-start; }
.usp__icon { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.usp__icon svg { width: 24px; height: 24px; }
.usp__title { font-family: var(--font-display); font-weight: 600; font-size: 17px; color: var(--blue-dark); }
.usp__text  { font-size: 15px; color: var(--brown-dark); margin-top: 3px; }

/* Envía tus archivos */
.envia__box { background: linear-gradient(150deg, #fff7ef 0%, #ffe7d1 100%); border: 1px solid #ffc894; border-radius: 24px; padding: clamp(30px, 4vw, 56px); }
.pasos { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-top: 36px; }
.paso { background: var(--white); border-radius: 16px; padding: 26px; }
.paso__num { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 999px; background: var(--orange); color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 18px; }
.paso__title { font-family: var(--font-display); font-weight: 600; font-size: 19px; color: var(--blue-dark); margin: 16px 0 0; }
.paso__text { margin: 6px 0 0; font-size: 16px; color: var(--brown-dark); }
.envia__foot { margin-top: 32px; display: flex; flex-wrap: wrap; align-items: center; gap: 20px; }
.envia__note { font-size: 15px; color: var(--brown-dark); max-width: 46ch; margin: 0; }
.envia__note a { color: var(--blue-alt); font-weight: 700; }

/* Quiénes somos */
.about { background: var(--bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.about__inner { display: flex; flex-wrap: wrap; align-items: center; gap: clamp(28px, 4vw, 60px); }
.about__media { flex: 1 1 360px; min-width: 290px; }
.about__text  { flex: 1 1 380px; min-width: 290px; }
.about__media .ph-img { aspect-ratio: 73 / 30; }
.about__text p { font-size: 1.12rem; color: var(--brown-dark); margin: 16px 0 0; }
.about__text p:first-of-type { margin-top: 18px; }

/* Reseñas */
.reviews__grid { margin-top: 40px; display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 22px; }
.review { margin: 0; background: var(--bg); border: 1px solid var(--border); border-radius: 16px; padding: 28px; display: flex; flex-direction: column; gap: 14px; }
.review__stars { display: flex; gap: 3px; color: var(--orange-light); }
.review__stars svg { width: 18px; height: 18px; }
.review__quote { margin: 0; font-size: 16px; color: var(--text); }
.review__foot { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review__avatar { flex: 0 0 auto; width: 42px; height: 42px; border-radius: 999px; color: #fff; font-family: var(--font-display); font-weight: 700; display: flex; align-items: center; justify-content: center; }
.review__name { display: block; color: var(--blue-dark); font-family: var(--font-display); font-weight: 700; }
.review__src  { font-size: 13px; color: var(--brown-dark); }

/* Horarios y ubicación */
.horarios { background: var(--blue-dark); color: #d6e0f2; }
.horarios__inner { display: flex; flex-wrap: wrap; gap: 40px; align-items: center; justify-content: space-between; }
.horarios__col { flex: 1 1 300px; min-width: 280px; }
.horarios__title { color: #fff; font-family: var(--font-display); font-weight: 700; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.horarios__row { display: flex; gap: 14px; align-items: flex-start; margin-top: 22px; }
.horarios__ico { flex: 0 0 auto; color: var(--orange-light); margin-top: 2px; }
.horarios__row .day { color: #fff; font-weight: 600; margin: 0; }
.horarios__row .val { color: #a9bee4; margin: 0; }
.horarios__row .val + .day { margin-top: 10px; }

/* Ajustes responsive de la home */
@media (max-width: 620px) {
  .home-hero__cta .btn { flex: 1 1 auto; justify-content: center; }
}

/* Botón CTA de teléfono dentro del menú */
.nav__cta-item { display: flex; align-items: center; margin-left: 6px; list-style: none; }
@media (max-width: 1279px) {
  .nav__cta-item { margin: 10px 0 0; }
  .nav__cta { width: 100%; justify-content: center; }
}
