:root {
  --ded-bg: #fcfaf7;
  --ded-surface: #ffffff;
  --ded-surface-accent: #efe3c9;
  --ded-text: #1e1a16;
  --ded-muted: #6c645a;
  --ded-primary: #d9b55b;
  --ded-primary-dark: #b28a2d;
  --ded-border: rgba(30, 26, 22, 0.08);
  --ded-shadow: 0 18px 50px rgba(22, 17, 11, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ded-text);
  background: var(--ded-bg);
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.ded-shell {
  width: min(1300px, calc(100% - 30px));
  margin: 0 auto;
}

/* ══════════════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #0a0a0a;
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 0;
}

.site-header__logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.site-header__logo {
  display: block;
  height: 100px;
  width: auto;
}

.custom-logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.custom-logo {
  display: block;
  height: 100px;
  width: auto;
}

.site-header__logo-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #d9b55b;
}

/* Nav wrap */
.site-header__nav-wrap {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
}

/* Primary nav */
.site-navigation {
  flex: 1;
  display: flex;
  justify-content: center;
}

.site-navigation__menu {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-navigation__menu a {
  display: block;
  color: #d9b55b;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.site-navigation__menu a:hover,
.site-navigation__menu .current-menu-item > a,
.site-navigation__menu .current_page_item > a {
  color: #fff;
}

/* Action buttons */
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.site-header__btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.site-header__btn--phone {
  background: #d9b55b;
  color: #0a0a0a;
  border: 2px solid #d9b55b;
}

.site-header__btn--phone:hover {
  background: #b28a2d;
  border-color: #b28a2d;
  color: #fff;
}

.site-header__btn--wa {
  background: transparent;
  color: #d9b55b;
  border: 2px solid #d9b55b;
}

.site-header__btn--wa:hover {
  background: #d9b55b;
  color: #0a0a0a;
}

/* Social icons */
.site-header__socials {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.site-header__social {
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-header__social:hover {
  color: #d9b55b;
}

/* ══════════════════════════════════════════════════════════
   LIBRO DE RECLAMACIONES
══════════════════════════════════════════════════════════ */

.ded-rec-defs {
  background: var(--ded-surface-accent);
  padding: 56px 0 48px;
}

.ded-rec-defs__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 28px;
}

.ded-rec-defs__card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 4px 24px rgba(22, 17, 11, 0.06);
}

.ded-rec-defs__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  margin-bottom: 16px;
}

.ded-rec-defs__icon--reclamo {
  background: rgba(153, 27, 27, 0.08);
  color: #991b1b;
}

.ded-rec-defs__icon--queja {
  background: rgba(146, 64, 14, 0.08);
  color: #92400e;
}

.ded-rec-defs__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--ded-text);
  margin: 0 0 10px;
}

.ded-rec-defs__text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ded-muted);
  margin: 0;
}

.ded-rec-defs__legal {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--ded-muted);
  background: rgba(217, 181, 91, 0.1);
  border-left: 3px solid #d9b55b;
  padding: 12px 16px;
  border-radius: 0 8px 8px 0;
  margin: 0;
  line-height: 1.6;
}

.ded-rec-defs__legal svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: #d9b55b;
}

.ded-rec-section {
  background: #fff;
}

.ded-rec-form-wrap {
  max-width: 860px;
  margin: 0 auto;
  background: var(--ded-bg);
  border-radius: 24px;
  padding: 52px 48px;
  box-shadow: 0 8px 52px rgba(22, 17, 11, 0.07);
}

.ded-rec-form__section {
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--ded-border);
}

.ded-rec-form__section:last-of-type {
  border-bottom: none;
  margin-bottom: 24px;
  padding-bottom: 0;
}

.ded-rec-form__section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--ded-text);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin: 0 0 20px;
}

.ded-rec-form__section-title span {
  color: #d9b55b;
}

.ded-rec-form__radios {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.ded-rec-form__radio-label {
  cursor: pointer;
}

.ded-rec-form__radio-label input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.ded-rec-form__radio-btn {
  display: inline-block;
  padding: 10px 28px;
  border-radius: 999px;
  border: 2px solid var(--ded-border);
  font-size: 14px;
  font-weight: 600;
  color: var(--ded-muted);
  background: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
}

.ded-rec-form__radio-label input[type="radio"]:checked + .ded-rec-form__radio-btn {
  border-color: #d9b55b;
  background: #d9b55b;
  color: #fff;
}

.ded-rec-form__radio-label input[type="radio"]:checked + .ded-rec-form__radio-btn--reclamo {
  border-color: #991b1b;
  background: #991b1b;
  color: #fff;
}

.ded-rec-form__radio-label input[type="radio"]:checked + .ded-rec-form__radio-btn--queja {
  border-color: #92400e;
  background: #92400e;
  color: #fff;
}

.ded-rec-form__row {
  display: grid;
  gap: 20px;
  margin-bottom: 0;
}

.ded-rec-form__row--full  { grid-template-columns: 1fr; }
.ded-rec-form__row--2col  { grid-template-columns: 1fr 1fr; }
.ded-rec-form__row--3col  { grid-template-columns: 1fr 1fr 1fr; }

.ded-rec-form__row .ded-contact-form__group {
  margin-bottom: 0;
}

.ded-rec-form__footer {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.ded-rec-form__disclaimer {
  font-size: 13px;
  color: var(--ded-muted);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .ded-rec-defs__grid {
    grid-template-columns: 1fr;
  }

  .ded-rec-form-wrap {
    padding: 32px 20px;
  }

  .ded-rec-form__row--2col,
  .ded-rec-form__row--3col {
    grid-template-columns: 1fr;
  }

  .ded-rec-form__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* Close button inside mobile nav */
.site-header__close {
  display: none;
  position: absolute;
  top: 18px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 6px;
  line-height: 1;
  transition: color 0.2s ease;
}

.site-header__close:hover {
  color: #d9b55b;
}

@media (max-width: 1100px) {
  .site-header__close {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Hamburger */
.site-header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
  flex-shrink: 0;
}

.site-header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #d9b55b;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Overlay */
.site-header__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 98;
}

.site-header__overlay.is-visible {
  display: block;
}

.site-main--default {
  padding: 56px 0 88px;
}

.page-default,
.post-default {
  padding: 32px;
  border-radius: 24px;
  background: var(--ded-surface);
  box-shadow: var(--ded-shadow);
}

.page-default__title,
.post-default__title {
  margin-top: 0;
}

.ded-page {
  color: var(--ded-text);
  background: var(--ded-bg);
}

.ded-section {
  padding: 88px 0;
}

.ded-section--accent,
.ded-contact-strip {
  background: var(--ded-surface-accent);
}

.ded-eyebrow {
  margin: 0 0 12px;
  color: var(--ded-primary-dark);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ded-section__heading {
  max-width: 680px;
  margin: 0 auto 36px;
  text-align: center;
}

.ded-section__heading h2,
.ded-about h2,
.ded-cta h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
}

/* ── HERO ───────────────────────────────────────────────── */
.ded-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100vh;
  background-color: #1e1a16;
  background-image: var(--hero-bg);
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

@media (max-width: 767px) {
  .ded-hero {
    background-image: var(--hero-bg-mobile, var(--hero-bg));
    background-position: var(--hero-bg-pos-mobile, var(--hero-bg-pos, center center));
    min-height: 100svh;
  }
}

.ded-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hero-overlay, rgba(0, 0, 0, 0.3));
  pointer-events: none;
}

.ded-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 12, 9, 0.82) 0%, rgba(15, 12, 9, 0.45) 55%, rgba(15, 12, 9, 0.18) 100%);
}

.ded-cta .ded-shell {
  position: relative;
  z-index: 1;
}

/* Cuerpo del hero */
.ded-hero__shell {
  flex: 1;
  display: flex;
  flex-direction: column;
  width: min(1300px, 100%);
  margin: 0 auto;
}

.ded-hero__body {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: clamp(24px, 4vh, 60px);
  padding: 10vh 40px 8vh;
}

/* Logo */
.ded-hero__logo-wrap {
  /* primer elemento del flujo */
}

.ded-hero__logo {
  display: block;
  width: min(370px, 100%);
  height: auto;
}

/* Título/texto opcionales */
.ded-hero__content {
  max-width: 620px;
  color: #fffdf8;
  margin-top: 0;
}

.ded-hero__title {
  margin: 0 0 18px;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 0.95;
  color: inherit;
}

/* Botones del hero: columna, igual ancho los dos */
.ded-hero__ctas {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  align-self: flex-start;
  gap: 12px;
  width: min(370px, 100%);
}

.ded-hero-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.2;
  color: #ffffff;
  text-decoration: none;
  width: 100%;
  cursor: pointer;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.ded-hero-cta__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
}

.ded-hero-cta__icon svg {
  display: block;
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.ded-hero-cta--primary {
  background: #d9b55b;
  color: #fff;
}

.ded-hero-cta--dark {
  background: #1a1612;
  color: #fff;
}

.ded-hero-cta--primary:hover {
  background: #b28a2d;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(178, 138, 45, 0.5);
}

.ded-hero-cta--dark:hover {
  background: #2c241b;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

@media (max-width: 1024px) {
  .ded-hero-cta {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .ded-hero__body {
    padding: 6vh 20px 6vh 24px;
  }

  .ded-hero-cta {
    font-size: 16px;
    padding: 12px 18px;
  }
}

/* ── OTROS (sin cambios) ────────────────────────────────── */
.ded-hero__text,
.ded-about p,
.ded-card p,
.ded-cta p,
.ded-faq-item__content,
.ded-quote-card__text,
.ded-contact-list {
  font-size: 18px;
  line-height: 1.7;
}

.ded-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.ded-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 28px;
  border-radius: 999px;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  will-change: transform;
}

.ded-button--primary,
.ded-button--small {
  color: #fff;
  background: var(--ded-primary);
  box-shadow: 0 4px 14px rgba(217, 181, 91, 0.25);
}

.ded-button--primary:hover,
.ded-button--small:hover {
  background: var(--ded-primary-dark);
  color: #fffdf8;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 32px rgba(178, 138, 45, 0.55);
}

.ded-button--ghost {
  color: #fffdf8;
  border: 1.5px solid rgba(255, 253, 248, 0.5);
  background: transparent;
  font-size: 16px;
  padding: 16px 32px;
  min-height: 56px;
  white-space: nowrap;
}

.ded-button--ghost:hover {
  background: rgba(255, 253, 248, 0.12);
  border-color: rgba(255, 253, 248, 0.95);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 253, 248, 0.15);
}

.ded-button--small {
  min-height: 40px;
  padding: 10px 20px;
  font-size: 12px;
}

/* ── FRANJA INFORMATIVA (2ª sección) ───────────────────── */
.ded-info-strip {
  background: #f3ebd9;
  padding: 36px 0;
  text-align: center;
}

.ded-info-strip__inner {
  /* max-width y centrado lo gestiona .ded-shell */
}

.ded-info-strip__tagline {
  margin: 0 0 10px;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 400;
  color: #1e1a16;
  line-height: 1.5;
}

.ded-info-strip__phones {
  margin: 0;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 500;
}

.ded-info-strip__phones a {
  color: #1e1a16;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease, text-decoration 0.2s ease;
}

.ded-info-strip__phones a:hover {
  color: #b28a2d;
  text-decoration: underline;
}

.ded-info-strip__sep {
  color: #1e1a16;
  margin: 0 6px;
  font-weight: 400;
}

@media (max-width: 600px) {
  .ded-info-strip {
    padding: 28px 0;
  }

  .ded-info-strip__tagline {
    font-size: 15px;
  }

  .ded-info-strip__phones {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 15px;
  }

  .ded-info-strip__sep {
    display: none;
  }
}

/* ── LABORATORIO ─────────────────────────────────────────── */
.ded-lab__heading {
  text-align: center;
  margin-bottom: 40px;
}

.ded-lab__title {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 700;
  color: #1e1a16;
  margin: 0 0 12px;
}

.ded-lab__subtitle {
  font-size: clamp(14px, 1.3vw, 17px);
  color: #1e1a16;
  margin: 0;
  line-height: 1.6;
}

.ded-lab__gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ded-lab__main img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

.ded-lab__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.ded-lab__thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
}

.ded-lab__cta {
  text-align: center;
  margin-top: 40px;
}

.ded-lab__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 999px;
  background: #d9b55b;
  color: #fff;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.ded-lab__btn:hover {
  background: #b28a2d;
  box-shadow: 0 8px 24px rgba(178, 138, 45, 0.4);
}

.ded-lab__btn-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.ded-lab__btn-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

@media (max-width: 767px) {
  .ded-lab__row {
    grid-template-columns: 1fr;
  }

  .ded-lab__thumb img {
    aspect-ratio: 16 / 9;
  }

  .ded-lab__heading {
    margin-bottom: 28px;
  }

  .ded-lab__btn {
    font-size: 15px;
    padding: 12px 24px;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .ded-lab__row {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── CONTACT STRIP (legacy) ─────────────────────────────── */
.ded-contact-strip {
  padding: 26px 0;
}

.ded-contact-strip__grid,
.ded-grid,
.ded-about__grid,
.ded-cta__grid {
  display: grid;
  gap: 24px;
}

.ded-contact-strip__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ded-contact-card,
.ded-card,
.ded-team-card,
.ded-quote-card,
.ded-faq-item {
  border-radius: 24px;
  background: var(--ded-surface);
  box-shadow: var(--ded-shadow);
}

.ded-contact-card {
  padding: 24px;
  text-align: center;
}

.ded-contact-card h2 {
  margin: 0 0 8px;
  font-size: 20px;
}

.ded-contact-card p {
  margin: 0;
  font-size: 18px;
}

.ded-about__grid,
.ded-cta__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 60px;
}

/* Sección Sobre Nosotros */
.ded-about__title {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 700;
  color: #1e1a16;
  margin: 0 0 24px;
  line-height: 1.15;
}

.ded-about__copy p {
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.75;
  color: #3a3228;
  margin: 0 0 18px;
}

.ded-about__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  background: #d9b55b;
  color: #fff;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.ded-about__btn:hover {
  background: #b28a2d;
  box-shadow: 0 8px 24px rgba(178, 138, 45, 0.4);
}

.ded-about__btn-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.ded-about__btn-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Video YouTube — ratio 16:9 responsivo */
.ded-about__video {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

.ded-about__video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.ded-card__image,
.ded-team-card__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
}

.ded-grid--cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.ded-grid--cards .ded-card {
  width: calc(25% - 18px);
}

.ded-grid--team {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ded-card,
.ded-team-card,
.ded-quote-card {
  overflow: hidden;
}

/* Specialty card — imagen arriba, título abajo */
.ded-card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.ded-card__image-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 0;
}

.ded-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.ded-card:hover .ded-card__image {
  transform: scale(1.04);
}

.ded-card__body {
  padding: 20px 16px;
  text-align: center;
}

.ded-card__icon {
  display: none;
}

.ded-card h3 {
  margin: 0;
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 700;
  color: #1e1a16;
  line-height: 1.3;
}

.ded-card p,
.ded-card .ded-button--small {
  display: none;
}

/* ── DISEÑA EN TV — CARRUSEL ───────────────────────────── */
.ded-tv__subtitle {
  margin: 8px 0 0;
  font-size: clamp(14px, 1.2vw, 16px);
  color: #1e1a16;
  line-height: 1.5;
}

.ded-tv-outer {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
}

.ded-tv-viewport {
  flex: 1;
  overflow: hidden;
}

.ded-tv-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.ded-tv-slide {
  flex: 0 0 calc(100% / 3);
  box-sizing: border-box;
  padding: 0 8px;
}

.ded-tv-thumb {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #111;
}

.ded-tv-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.ded-tv-thumb:hover img {
  transform: scale(1.03);
  opacity: 0.85;
}

.ded-tv-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.ded-tv-play svg {
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.6));
  opacity: 0.9;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.ded-tv-thumb:hover .ded-tv-play svg {
  opacity: 1;
  transform: scale(1.15);
}

.ded-tv-nav {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #d9b55b;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.ded-tv-nav:hover {
  background: #b28a2d;
  transform: scale(1.08);
}

.ded-tv-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.ded-tv-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #d9c9a3;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.ded-tv-dot--active {
  background: #d9b55b;
  transform: scale(1.25);
}

/* ── CASOS DE ÉXITO — CARRUSEL ─────────────────────────── */
.ded-cases__subtitle {
  margin: 8px 0 0;
  font-size: clamp(14px, 1.2vw, 16px);
  color: #1e1a16;
  line-height: 1.6;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.ded-cases-outer {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}

.ded-cases-viewport {
  flex: 1;
  overflow: hidden;
}

.ded-cases-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.ded-cases-slide {
  flex: 0 0 50%;
  box-sizing: border-box;
  padding: 0 8px;
}

.ded-cases-img-wrap {
  overflow: hidden;
  border-radius: 8px;
}

.ded-cases-img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.3s ease;
}

.ded-cases-img-wrap:hover .ded-cases-img {
  transform: scale(1.03);
}

.ded-cases-nav {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #d9b55b;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.ded-cases-nav:hover {
  background: #b28a2d;
  transform: scale(1.08);
}


/* ── SEPARA UNA CITA — 2 COLUMNAS ──────────────────────── */
.ded-cita-split {
  background: #fff;
}

.ded-cita-split__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.ded-cita-split__title {
  margin: 0 0 20px;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: #1e1a16;
  line-height: 1.15;
}

.ded-cita-split__text {
  font-size: clamp(14px, 1.2vw, 16px);
  color: #1e1a16;
  line-height: 1.75;
  margin: 0 0 16px;
}

.ded-cita-split__btn {
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  padding: 14px 32px;
  border-radius: 999px;
  background: #d9b55b;
  color: #fff;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.ded-cita-split__btn:hover {
  background: #b28a2d;
  box-shadow: 0 8px 24px rgba(178, 138, 45, 0.35);
}

.ded-cita-split__media {
  border-radius: 16px;
  overflow: hidden;
}

.ded-cita-split__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ── CITA QUOTE ─────────────────────────────────────────── */
.ded-cita-quote {
  background: #fff;
  padding: 40px 0 48px;
  text-align: center;
}

.ded-cita-quote__text {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  color: #1e1a16;
  line-height: 1.3;
  margin: 0;
}

/* ── BANNER STRIP — CTA HORIZONTAL ─────────────────────── */
.ded-banner-strip {
  background: #fff;
  padding: 36px 0;
  border-top: 1px solid #f0e8d5;
}

.ded-banner-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.ded-banner-strip__copy {
  flex: 1;
  min-width: 0;
}

.ded-banner-strip__title {
  margin: 0;
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 700;
  color: #1e1a16;
  line-height: 1.2;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
}

.ded-banner-strip__subtitle {
  margin: 8px 0 0;
  font-size: clamp(13px, 1.1vw, 15px);
  color: #1e1a16;
  line-height: 1.5;
}

.ded-banner-strip__btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  border-radius: 999px;
  background: #c49c3f;
  color: #fff;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.ded-banner-strip__btn:hover {
  background: #b28a2d;
  box-shadow: 0 6px 20px rgba(178, 138, 45, 0.35);
}

/* Sección especialidades — subtítulo y botón */
.ded-specialties__subtitle {
  margin: 0;
  font-size: clamp(14px, 1.2vw, 16px);
  color: #1e1a16;
  line-height: 1.5;
}

.ded-specialties__cta {
  text-align: center;
  margin-top: 40px;
}

.ded-specialties__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 999px;
  background: #d9b55b;
  color: #fff;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.ded-specialties__btn:hover {
  background: #b28a2d;
  box-shadow: 0 8px 24px rgba(178, 138, 45, 0.4);
}

/* ── EQUIPO — CARRUSEL ──────────────────────────────────── */
#equipo {
  background: #fff;
}
.ded-team__subtitle {
  margin: 8px 0 0;
  font-size: clamp(13px, 1.1vw, 15px);
  color: #1e1a16;
  line-height: 1.5;
}

.ded-team-outer {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
}

.ded-team-viewport {
  flex: 1;
  overflow: hidden;
}

.ded-team-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.ded-team-slide {
  flex: 0 0 calc(100% / 3);
  box-sizing: border-box;
  padding: 0 12px;
}

.ded-team-nav {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #d9b55b;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.ded-team-nav:hover {
  background: #b28a2d;
  transform: scale(1.08);
}

/* Card: limpia, sin caja — solo foto + texto */
.ded-team-slide .ded-team-card {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.ded-team-card__img-wrap {
  overflow: hidden;
  border-radius: 12px;
}

.ded-team-card__img-wrap .ded-team-card__image {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  border-radius: 0;
  transition: transform 0.3s ease;
}

.ded-team-card__img-wrap:hover .ded-team-card__image {
  transform: scale(1.03);
}

.ded-team-card__body,
.ded-quote-card {
  padding: 28px;
}

.ded-team-slide .ded-team-card__body {
  padding: 16px 8px 0;
  text-align: center;
}

.ded-team-card h3 {
  margin: 0 0 6px;
  font-size: clamp(14px, 1.3vw, 17px);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.ded-team-card__role,
.ded-quote-card__meta {
  color: #999;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.ded-team-card p {
  font-size: 14px;
}

.ded-team-card p.ded-team-card__role {
  font-size: 15px;
}

.ded-team-card__meta {
  display: grid;
  gap: 6px;
  margin-top: 16px;
  font-size: 14px;
}

.ded-rating {
  margin-bottom: 18px;
  color: var(--ded-primary);
  font-size: 22px;
  letter-spacing: 0.2em;
}

.ded-quote-card__author {
  margin: 22px 0 4px;
  font-size: 20px;
  font-weight: 700;
}

/* ── TESTIMONIALS CAROUSEL ──────────────────────────────── */
#testimonios {
  background: #e1cd9f;
}

.ded-section__subtitle {
  color: #1e1a16;
  font-size: 16px;
  margin: 8px 0 0;
  line-height: 1.6;
}

.ded-testimonials-carousel {
  margin-top: 40px;
}

.ded-testimonials-outer {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ded-testimonials-viewport {
  flex: 1;
  overflow: hidden;
  transition: height 0.45s cubic-bezier(0.4,0,0.2,1);
}

.ded-testimonials-track {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
}

.ded-testimonials-slide {
  flex: 0 0 calc(100% / 3);
  box-sizing: border-box;
  padding: 0 12px;
}


.ded-faq-list {
  display: grid;
  gap: 16px;
}

.ded-faq-item {
  padding: 24px 28px;
}

.ded-faq-item summary {
  cursor: pointer;
  list-style: none;
  font-size: 22px;
  font-weight: 700;
}

.ded-faq-item summary::-webkit-details-marker {
  display: none;
}

.ded-faq-item__content {
  padding-top: 16px;
}

.ded-cta {
  position: relative;
  color: #fffdf8;
  background-color: #2c241b;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.ded-contact-list {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.ded-map iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

/* ── FULL-WIDTH MAP SECTION ─────────────────────────────── */
.ded-map-section {
  display: block;
  line-height: 0;
}

.ded-map-section iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: 0;
}

.ded-richtext > *:first-child {
  margin-top: 0;
}

.ded-richtext > *:last-child {
  margin-bottom: 0;
}

/* ── PAGE HERO (título de páginas internas) ─────────────── */
.ded-page-hero {
  background: var(--ded-surface-accent);
  padding: 56px 0;
  text-align: center;
}

.ded-page-hero__title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: var(--ded-text);
  margin: 0;
}

/* ── BLOG (home.php) ────────────────────────────────────── */
.ded-blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.ded-blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(22, 17, 11, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ded-blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(22, 17, 11, 0.12);
}

.ded-blog-card__img-link {
  display: block;
  text-decoration: none;
}

.ded-blog-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #e8e0d4;
}

.ded-blog-card__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.ded-blog-card:hover .ded-blog-card__img {
  transform: scale(1.05);
}

.ded-blog-card__img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e8e0d4, #d9c9b0);
}

.ded-blog-card__cat {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #d9b55b;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
}

.ded-blog-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px 22px 24px;
}

.ded-blog-card__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.ded-blog-card__date,
.ded-blog-card__author {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--ded-muted);
}

.ded-blog-card__title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 10px;
}

.ded-blog-card__title a {
  color: var(--ded-text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.ded-blog-card__title a:hover {
  color: #d9b55b;
}

.ded-blog-card__excerpt {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ded-muted);
  margin: 0 0 16px;
  flex: 1;
}

.ded-blog-card__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #d9b55b;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: gap 0.2s ease, color 0.2s ease;
  margin-top: auto;
}

.ded-blog-card__more:hover {
  gap: 10px;
  color: #b28a2d;
}

/* Pagination */
.ded-blog__pagination {
  margin-top: 52px;
  display: flex;
  justify-content: center;
}

.ded-blog__pagination ul {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ded-blog__pagination ul li a.page-numbers,
.ded-blog__pagination ul li span.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  color: var(--ded-text);
  background: #f5f0e8;
  border: 2px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.ded-blog__pagination ul li a.page-numbers:hover {
  background: #d9b55b;
  color: #fff;
}

.ded-blog__pagination ul li span.current {
  background: #d9b55b;
  color: #fff;
}

.ded-blog__pagination ul li a.prev,
.ded-blog__pagination ul li a.next {
  min-width: auto;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.ded-blog__spinner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 10;
}

.ded-blog__spinner-ring {
  width: 44px;
  height: 44px;
  border: 4px solid rgba(217, 181, 91, 0.2);
  border-top-color: #d9b55b;
  border-radius: 50%;
  animation: ded-spin 0.7s linear infinite;
}

@keyframes ded-spin {
  to { transform: rotate(360deg); }
}

.ded-blog__empty {
  text-align: center;
  color: var(--ded-muted);
  font-size: 16px;
  padding: 60px 0;
}

@media (max-width: 1024px) {
  .ded-blog__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .ded-blog__grid {
    grid-template-columns: 1fr;
  }
}

/* ── SERVICIOS PAGE ─────────────────────────────────────── */
.ded-services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.ded-service-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(22, 17, 11, 0.07);
  border: 2px solid transparent;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.ded-service-card:hover {
  transform: translateY(-6px);
  border-color: #d9b55b;
  box-shadow: 0 16px 48px rgba(217, 181, 91, 0.18);
}

.ded-service-card__img-wrap {
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.ded-service-card__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.ded-service-card:hover .ded-service-card__img {
  transform: scale(1.05);
}

.ded-service-card__body {
  padding: 22px 20px 26px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.ded-service-card__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--ded-text);
  margin: 0 0 12px;
  line-height: 1.3;
}

.ded-service-card__divider {
  display: block;
  width: 36px;
  height: 3px;
  background: #d9b55b;
  border-radius: 2px;
  margin-bottom: 14px;
  transition: width 0.3s ease;
}

.ded-service-card:hover .ded-service-card__divider {
  width: 60px;
}

.ded-service-card__text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ded-muted);
  margin: 0;
}

.ded-services__cta {
  text-align: center;
  margin-top: 52px;
}

@media (max-width: 1024px) {
  .ded-services__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .ded-services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 420px) {
  .ded-services__grid {
    grid-template-columns: 1fr;
  }
}

/* ── ESPECIALISTAS PAGE ─────────────────────────────────── */
.ded-specialists__featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

.ded-specialists__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.ded-specialists__card {
  text-align: center;
}

.ded-specialists__img-wrap {
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 0;
}

.ded-specialists__card--featured .ded-specialists__img-wrap {
  border-radius: 16px;
}

.ded-specialists__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s ease;
}

.ded-specialists__card--featured .ded-specialists__img {
  aspect-ratio: 2 / 3;
}

.ded-specialists__img-wrap:hover .ded-specialists__img {
  transform: scale(1.03);
}

.ded-specialists__body {
  padding: 16px 8px 0;
}

.ded-specialists__name {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--ded-text);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 6px;
}

.ded-specialists__card--featured .ded-specialists__name {
  font-size: 18px;
}

.ded-specialists__role {
  font-size: 12px;
  font-weight: 600;
  color: var(--ded-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0;
}

.ded-specialists__card--featured .ded-specialists__role {
  font-size: 14px;
}

@media (max-width: 1024px) {
  .ded-specialists__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .ded-specialists__featured {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .ded-specialists__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .ded-specialists__featured {
    grid-template-columns: 1fr;
  }

  .ded-specialists__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── MISIÓN / VISIÓN ────────────────────────────────────── */
.ded-mv {
  background: var(--ded-surface-accent);
}

.ded-mv__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.ded-mv__card {
  background: var(--ded-surface);
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: var(--ded-shadow);
  text-align: center;
}

.ded-mv__card-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--ded-text);
  margin: 0 0 16px;
}

.ded-mv__card-text {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ded-text);
  margin: 0;
}

@media (max-width: 640px) {
  .ded-mv__grid {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.site-footer {
  background: #0a0a0a;
  color: #fff;
}

.site-footer__top {
  padding: 60px 0 48px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.6fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.site-footer__col-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #d9b55b;
  margin: 0 0 18px;
}

/* Brand column */
.site-footer__logo-link {
  display: inline-block;
  text-decoration: none;
  margin-bottom: 18px;
}

.site-footer__logo,
.site-footer__logo-link img {
  display: block;
  max-width: 190px;
  height: auto;
}

.site-footer__brand-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #d9b55b;
}

.site-footer__tagline {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.75;
  margin: 0;
}

/* Nav menus in footer */
.site-footer__nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer__nav li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.site-footer__nav li a:hover {
  color: #d9b55b;
}

/* Socials */
.site-footer__socials {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.site-footer__social {
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer__social:hover {
  color: #d9b55b;
}

/* Bottom bar */
.site-footer__bottom {
  background: #d9b55b;
  padding: 14px 0;
  text-align: center;
}

.site-footer__copyright {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #0a0a0a;
}

@media (max-width: 1024px) {
  .ded-contact-strip__grid,
  .ded-grid--team,
  .ded-about__grid,
  .ded-cta__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ded-testimonials-slide {
    flex: 0 0 50%;
  }

  .ded-grid--cards .ded-card {
    width: calc(50% - 12px);
  }

  .ded-about__grid {
    gap: 36px;
  }
}

@media (max-width: 767px) {
  .ded-section {
    padding: 64px 0;
  }

  .ded-hero {
    min-height: auto;
    padding: 96px 0 72px;
  }

  .ded-contact-strip__grid,
  .ded-grid--team,
  .ded-about__grid,
  .ded-cta__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ded-testimonials-slide {
    flex: 0 0 100%;
    padding: 0 6px;
  }

  .ded-grid--cards .ded-card {
    width: calc(50% - 12px);
  }

  .ded-grid--team,
  .ded-about__grid,
  .ded-cta__grid,
  .ded-cita-split__grid {
    grid-template-columns: 1fr;
  }

  .ded-cita-split__media {
    order: -1;
  }

  .ded-about__grid {
    gap: 28px;
  }

  .ded-about__video {
    order: -1;
  }

  .ded-about__btn {
    font-size: 15px;
    padding: 12px 22px;
  }

  .ded-team-card h3 {
    font-size: 24px;
  }

  .ded-faq-item summary {
    font-size: 20px;
  }
}

@media (max-width: 1024px) {
  .ded-tv-slide {
    flex: 0 0 50%;
  }

  .ded-team-slide {
    flex: 0 0 50%;
  }
}

@media (max-width: 767px) {
  .ded-banner-strip__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .ded-banner-strip__btn {
    width: 100%;
    justify-content: center;
  }

  .ded-cases-slide {
    flex: 0 0 100%;
    padding: 0;
  }

  .ded-tv-slide {
    flex: 0 0 100%;
    padding: 0;
  }

  .ded-team-slide {
    flex: 0 0 100%;
    padding: 0 4px;
  }
}

@media (max-width: 480px) {
  .ded-grid--cards .ded-card {
    width: 100%;
  }

  .ded-specialties__btn {
    width: 100%;
    justify-content: center;
    font-size: 14px;
    padding: 13px 20px;
  }

  .ded-cases-nav,
  .ded-tv-nav,
  .ded-team-nav {
    width: 36px;
    height: 36px;
  }

  .ded-tv-outer {
    gap: 10px;
  }
}

/* ── HEADER responsive ──────────────────────────────────── */
@media (max-width: 1100px) {
  .site-header__hamburger {
    display: flex;
  }

  .site-header__nav-wrap {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: #0a0a0a;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 80px 28px 40px;
    gap: 28px;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    z-index: 99;
    border-left: 1px solid rgba(217, 181, 91, 0.15);
  }

  .site-header__nav-wrap.is-open {
    right: 0;
    box-shadow: -12px 0 60px rgba(0, 0, 0, 0.7);
  }

  .site-navigation {
    width: 100%;
  }

  .site-navigation__menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    width: 100%;
  }

  .site-navigation__menu a {
    font-size: 14px;
  }

  .site-header__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 10px;
  }

  .site-header__btn {
    justify-content: center;
    width: 100%;
    padding: 12px 18px;
    font-size: 13px;
  }

  .site-header__socials {
    gap: 18px;
  }
}

/* ── FOOTER responsive ──────────────────────────────────── */
@media (max-width: 1024px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .site-footer__top {
    padding: 48px 0 36px;
  }
}

/* ══════════════════════════════════════════════════════════
   SINGLE POST
══════════════════════════════════════════════════════════ */

/* Hero */
.ded-post-hero {
  background: var(--ded-surface-accent);
  padding: 60px 0 52px;
}

.ded-post-hero__overlay { display: none; }

.ded-post-hero__body {
  max-width: 820px;
}

.ded-post-hero__cat {
  display: inline-block;
  background: #d9b55b;
  color: #1e1a16;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border-radius: 999px;
  text-decoration: none;
  margin-bottom: 18px;
}

.ded-post-hero__title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 22px;
  color: var(--ded-text);
}

.ded-post-hero__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 600;
  color: var(--ded-muted);
}

.ded-post-hero__meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.ded-post-hero__meta-sep {
  opacity: 0.4;
}

/* Imagen destacada dentro del artículo */
.ded-post-article__featured {
  margin-bottom: 36px;
  border-radius: 16px;
  overflow: hidden;
  max-height: 480px;
}

.ded-post-article__featured-img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 480px;
  object-fit: cover;
  object-position: center;
}

/* Layout */
.ded-post-body {
  background: #fff;
  padding: 64px 0 80px;
}

.ded-post-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 64px;
  align-items: start;
}

/* Entry content typography */
.ded-post-article__content.entry-content {
  font-size: 17px;
  line-height: 1.85;
  color: var(--ded-text);
}

.entry-content p {
  margin: 0 0 1.5em;
}

.entry-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--ded-text);
  margin: 2em 0 0.6em;
  line-height: 1.3;
}

.entry-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--ded-text);
  margin: 1.8em 0 0.5em;
}

.entry-content h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--ded-text);
  margin: 1.5em 0 0.4em;
}

.entry-content a {
  color: #b28a2d;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.entry-content a:hover {
  color: #d9b55b;
}

.entry-content ul,
.entry-content ol {
  margin: 0 0 1.5em 1.4em;
  padding: 0;
}

.entry-content li {
  margin-bottom: 0.4em;
}

.entry-content blockquote {
  border-left: 4px solid #d9b55b;
  margin: 2em 0;
  padding: 20px 28px;
  background: var(--ded-surface-accent);
  border-radius: 0 12px 12px 0;
  font-style: italic;
  font-size: 18px;
  color: var(--ded-text);
}

.entry-content blockquote p {
  margin: 0;
}

.entry-content img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 1.5em auto;
}

.entry-content figure {
  margin: 2em 0;
}

.entry-content figcaption {
  text-align: center;
  font-size: 13px;
  color: var(--ded-muted);
  margin-top: 8px;
}

.entry-content code {
  background: var(--ded-surface-accent);
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 14px;
}

.entry-content pre {
  background: #1e1a16;
  color: #efe3c9;
  padding: 20px 24px;
  border-radius: 10px;
  overflow-x: auto;
  font-size: 14px;
  line-height: 1.6;
  margin: 1.5em 0;
}

.entry-content hr {
  border: none;
  border-top: 1px solid var(--ded-border);
  margin: 2.5em 0;
}

/* Tags */
.ded-post-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--ded-border);
}

.ded-post-tags__label {
  font-size: 13px;
  font-weight: 700;
  color: var(--ded-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0;
}

.ded-post-tags__item {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  border: 1.5px solid var(--ded-border);
  font-size: 12px;
  font-weight: 600;
  color: var(--ded-muted);
  text-decoration: none;
  transition: all 0.2s ease;
}

.ded-post-tags__item:hover {
  border-color: #d9b55b;
  color: #d9b55b;
}

/* Prev/Next nav */
.ded-post-nav {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.ded-post-nav__item {
  flex: 1;
  min-width: 200px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 22px;
  border-radius: 14px;
  border: 1.5px solid var(--ded-border);
  text-decoration: none;
  color: var(--ded-text);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ded-post-nav__item:hover {
  border-color: #d9b55b;
  box-shadow: 0 4px 20px rgba(217,181,91,0.12);
}

.ded-post-nav__item svg {
  flex-shrink: 0;
  color: #d9b55b;
}

.ded-post-nav__item--next {
  justify-content: flex-end;
  text-align: right;
}

.ded-post-nav__item small {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: var(--ded-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

/* Sidebar */
.ded-post-sidebar {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ded-post-author-box {
  background: var(--ded-bg);
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow: 0 4px 24px rgba(22,17,11,0.06);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.ded-post-author-box__img {
  display: block;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.ded-post-author-box__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #d9b55b;
  margin: 0 0 4px;
}

.ded-post-author-box__name {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--ded-text);
  margin: 0 0 6px;
}

.ded-post-author-box__cargo {
  font-size: 12px;
  font-weight: 600;
  color: #d9b55b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 4px;
}

.ded-post-author-box__bio {
  font-size: 13px;
  line-height: 1.6;
  color: var(--ded-muted);
  margin: 0;
}

.ded-post-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ded-muted);
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 10px;
  border: 1.5px solid var(--ded-border);
  transition: all 0.2s ease;
}

.ded-post-back:hover {
  border-color: #d9b55b;
  color: #d9b55b;
}

.ded-post-back svg {
  color: #d9b55b;
}

.ded-post-sidebar__block {
  background: var(--ded-bg);
  border-radius: 12px;
  padding: 18px 20px;
}

.ded-post-sidebar__block-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ded-muted);
  margin: 0 0 8px;
}

.ded-post-sidebar__cat-link {
  display: inline-block;
  background: #d9b55b;
  color: #1e1a16;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 14px;
  border-radius: 999px;
  text-decoration: none;
}

/* Related */
.ded-post-related {
  background: var(--ded-surface-accent);
}

/* Responsive */
@media (max-width: 1024px) {
  .ded-post-layout {
    grid-template-columns: 1fr 260px;
    gap: 40px;
  }
}

@media (max-width: 767px) {
  .ded-post-body {
    padding: 40px 0 60px;
  }

  .ded-post-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ded-post-sidebar {
    position: static;
    order: -1;
  }

  .ded-post-author-box {
    flex-direction: row;
  }

  .ded-post-article__content.entry-content {
    font-size: 16px;
  }

  .ded-post-nav {
    flex-direction: column;
  }

  .ded-post-nav__item {
    flex: none;
    width: 100%;
  }
}

/* ══════════════════════════════════════════════════════════
   CONTACTO PAGE
══════════════════════════════════════════════════════════ */

/* ── Info cards ─────────────────────────────────────────── */
.ded-contact-info {
  background: var(--ded-surface-accent);
  padding: 72px 0;
}

.ded-contact-info__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.ded-contact-info__card {
  background: #fff;
  border-radius: 20px;
  padding: 44px 32px 40px;
  text-align: center;
  box-shadow: 0 4px 32px rgba(22, 17, 11, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ded-contact-info__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(217, 181, 91, 0.16);
}

.ded-contact-info__card--link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.ded-contact-info__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: rgba(217, 181, 91, 0.13);
  color: #d9b55b;
  margin: 0 auto 22px;
}

.ded-contact-info__label {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--ded-text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
}

.ded-contact-info__value {
  display: block;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ded-muted);
  text-decoration: none;
  margin: 0;
}

a.ded-contact-info__value:hover {
  color: #d9b55b;
}

.ded-contact-info__hours {
  font-size: 13px;
  color: var(--ded-muted);
  margin: 8px 0 0;
  opacity: 0.7;
}

/* ── Split: images + form ───────────────────────────────── */
.ded-contact-split {
  background: #fff;
}

.ded-contact-split__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: center;
}

.ded-contact-split__media {
  align-self: stretch;
}

.ded-contact-split__img-wrap {
  overflow: hidden;
  border-radius: 20px;
  height: 100%;
  min-height: 420px;
}

.ded-contact-split__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}

.ded-contact-split__img-wrap:hover .ded-contact-split__img {
  transform: scale(1.03);
}

.ded-contact-split__img-placeholder {
  background: linear-gradient(135deg, var(--ded-surface-accent) 0%, rgba(217, 181, 91, 0.2) 100%);
  border-radius: 20px;
  height: 100%;
  min-height: 420px;
}

/* ── Contact form ───────────────────────────────────────── */
.ded-contact-form-wrap {
  background: var(--ded-bg);
  border-radius: 24px;
  padding: 48px 44px;
  box-shadow: 0 8px 52px rgba(22, 17, 11, 0.07);
}

.ded-contact-form__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--ded-text);
  margin: 0 0 10px;
}

.ded-contact-form__subtitle {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ded-muted);
  margin: 0 0 32px;
}

.ded-contact-form__notice {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.ded-contact-form__notice--ok {
  background: rgba(34, 197, 94, 0.08);
  color: #166534;
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.ded-contact-form__notice--err {
  background: rgba(239, 68, 68, 0.08);
  color: #991b1b;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.ded-contact-form__row--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.ded-contact-form__group {
  margin-bottom: 20px;
}

.ded-contact-form__label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ded-text);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.ded-contact-form__label span {
  color: #d9b55b;
}

.ded-contact-form__input,
.ded-contact-form__textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--ded-border);
  border-radius: 10px;
  background: #fff;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 14px;
  color: var(--ded-text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
}

.ded-contact-form__input::placeholder,
.ded-contact-form__textarea::placeholder {
  color: rgba(108, 100, 90, 0.45);
}

.ded-contact-form__input:focus,
.ded-contact-form__textarea:focus {
  border-color: #d9b55b;
  box-shadow: 0 0 0 3px rgba(217, 181, 91, 0.13);
}

.ded-contact-form__textarea {
  resize: vertical;
  min-height: 130px;
}

.ded-contact-form__consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  line-height: 1.55;
  color: var(--ded-muted);
}

.ded-contact-form__consent-check {
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  margin-top: 1px;
  accent-color: #d9b55b;
  cursor: pointer;
}

.ded-contact-form__consent-req {
  color: #d9b55b;
}

.ded-contact-form__footer {
  margin-top: 8px;
}

.ded-contact-form__submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .ded-contact-split__grid {
    gap: 40px;
  }

  .ded-contact-form-wrap {
    padding: 40px 32px;
  }
}

@media (max-width: 767px) {
  .ded-contact-info__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .ded-contact-split__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .ded-contact-split__media {
    order: 1;
  }

  .ded-contact-split__form-col {
    order: -1;
  }

  .ded-contact-form-wrap {
    padding: 32px 24px;
  }

  .ded-contact-form__row--2col {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .ded-contact-form__title {
    font-size: 22px;
  }
}
