/* DiscoDigitalMusic — 2026 (Barcelona-first) */
:root {
  --ddm-bg: #0a0e14;
  --ddm-surface: #ffffff;
  --ddm-soft: #f4f6f8;
  --ddm-ink: #0f1419;
  --ddm-text: #1e2a36;
  --ddm-muted: #5a6b7d;
  --ddm-accent: #d4a853;
  --ddm-accent-hover: #c4953f;
  --ddm-teal: #1a8f7a;
  --ddm-radius: 16px;
  --ddm-shadow: 0 18px 50px rgba(15, 20, 25, 0.12);
  --ddm-font: "Plus Jakarta Sans", system-ui, sans-serif;
  --ddm-display: "Playfair Display", Georgia, serif;
  --ddm-max: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.ddm {
  margin: 0;
  font-family: var(--ddm-font);
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  line-height: 1.75;
  color: var(--ddm-text);
  background: var(--ddm-soft);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--ddm-teal); text-decoration-thickness: 1px; }
a:hover { color: var(--ddm-ink); }

.ddm-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ddm-accent);
  color: var(--ddm-ink);
  padding: 0.75rem 1rem;
  z-index: 9999;
}
.ddm-skip:focus { left: 1rem; top: 1rem; }

/* Top bar */
.ddm-top {
  background: var(--ddm-bg);
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  padding: 0.5rem 0;
}
.ddm-top__inner {
  max-width: var(--ddm-max);
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}
.ddm-top a { color: inherit; text-decoration: none; }
.ddm-top a:hover { color: var(--ddm-accent); }

/* Header */
.ddm-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 14, 20, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ddm-header__inner {
  position: relative;
  max-width: var(--ddm-max);
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.ddm-logo img { height: 44px; width: auto; }
.ddm-nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  border-radius: 10px;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  cursor: pointer;
}
.ddm-nav > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.1rem;
}
.ddm-nav a,
.ddm-nav__dropbtn {
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 0.65rem;
  border-radius: 8px;
  white-space: nowrap;
}
.ddm-nav__dropbtn {
  background: transparent;
  border: none;
  font-family: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  line-height: 1.4;
}
.ddm-nav__dropbtn .fa { font-size: 0.7rem; opacity: 0.85; transition: transform 0.2s; }
.ddm-nav__dropdown:hover .ddm-nav__dropbtn .fa,
.ddm-nav__dropdown.is-open .ddm-nav__dropbtn .fa { transform: rotate(180deg); }
.ddm-nav a:hover,
.ddm-nav a.is-active,
.ddm-nav__dropbtn:hover,
.ddm-nav__dropbtn.is-active {
  color: var(--ddm-accent);
  background: rgba(255,255,255,0.05);
}
.ddm-nav__dropdown { position: relative; }
.ddm-nav__submenu {
  list-style: none;
  margin: 0;
  padding: 0.45rem;
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 0;
  min-width: 15.5rem;
  background: #121820;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  box-shadow: 0 18px 48px rgba(0,0,0,0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 1002;
}
.ddm-nav__dropdown:hover .ddm-nav__submenu,
.ddm-nav__dropdown:focus-within .ddm-nav__submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.ddm-nav__submenu a {
  display: block;
  padding: 0.6rem 0.85rem;
  font-size: 0.92rem;
}
.ddm-nav-cta a {
  background: var(--ddm-accent) !important;
  color: var(--ddm-ink) !important;
  font-weight: 700;
  padding: 0.65rem 1.1rem !important;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.88rem;
}
.ddm-nav-cta a:hover { background: var(--ddm-accent-hover) !important; }

/* Hero */
.ddm-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  color: #fff;
  background: var(--ddm-bg) center/cover no-repeat;
}
.ddm-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(10,14,20,0.88) 0%, rgba(10,14,20,0.55) 55%, rgba(26,143,122,0.25) 100%);
}
.ddm-hero__inner {
  position: relative;
  max-width: var(--ddm-max);
  margin: 0 auto;
  padding: 4rem 1.25rem;
  width: 100%;
}
.ddm-hero h1 {
  font-family: var(--ddm-display);
  font-size: clamp(2.25rem, 5.5vw, 3.65rem);
  line-height: 1.12;
  margin: 0 0 1rem;
  max-width: 18ch;
}
.ddm-hero__lead {
  font-size: clamp(1.2rem, 2.6vw, 1.5rem);
  max-width: 42rem;
  opacity: 0.95;
  margin: 0 0 1.75rem;
}
.ddm-hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* Buttons */
.ddm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.1rem 1.75rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.08rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.ddm-btn--primary {
  background: var(--ddm-accent);
  color: var(--ddm-ink);
  box-shadow: 0 12px 32px rgba(212, 168, 83, 0.35);
}
.ddm-btn--primary:hover { transform: translateY(-2px); color: var(--ddm-ink); }
.ddm-btn--ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.45);
}
.ddm-btn--ghost:hover { background: rgba(255,255,255,0.1); color: #fff; }

/* Sections */
.ddm-section { padding: 4.5rem 0; }
.ddm-section--soft { background: var(--ddm-soft); }
.ddm-section--dark { background: var(--ddm-bg); color: #fff; }
.ddm-section--dark .ddm-muted { color: rgba(255,255,255,0.75); }
.ddm-container {
  max-width: var(--ddm-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.ddm-eyebrow {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ddm-accent);
  margin-bottom: 0.5rem;
}
.ddm-section--dark .ddm-eyebrow { color: var(--ddm-accent); }
.ddm-h2 {
  font-family: var(--ddm-display);
  font-size: clamp(1.9rem, 3.8vw, 2.55rem);
  line-height: 1.2;
  margin: 0 0 1rem;
  color: var(--ddm-ink);
}
.ddm-h3 {
  font-family: var(--ddm-display);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  margin: 0 0 0.75rem;
  color: var(--ddm-ink);
}
.ddm-section--dark .ddm-h2 { color: #fff; }
.ddm-lead { font-size: 1.2rem; color: var(--ddm-muted); max-width: 42rem; margin: 0 0 2rem; line-height: 1.65; }
.ddm-center { text-align: center; margin-top: 1.5rem; }
.ddm-prose--light { color: rgba(255,255,255,0.92); }
.ddm-prose--light .ddm-h2 { color: #fff; }
.ddm-prose--on-dark { color: rgba(255,255,255,0.88); }
.ddm-prose--on-dark .ddm-h2 { color: #fff; }
.ddm-prose--on-dark p { color: rgba(255, 255, 255, 0.9); }
.ddm-zone {
  max-width: 44rem;
  margin: 0 auto;
  text-align: center;
}
.ddm-zone .ddm-h2 { margin-bottom: 1.25rem; }
.ddm-zone p {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.75;
  margin: 0 0 1.1rem;
}
.ddm-zone p:last-child { margin-bottom: 0; }

/* Trust bar */
.ddm-trust {
  background: var(--ddm-bg);
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ddm-trust__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
  color: #fff;
}
.ddm-trust__grid strong {
  display: block;
  font-size: 1.35rem;
  color: var(--ddm-accent);
}
.ddm-trust__grid span { font-size: 0.95rem; opacity: 0.85; }

/* Panel intro (home) */
.ddm-panel {
  background: linear-gradient(135deg, #1a5c52 0%, #0f3d36 100%);
  color: #fff;
  padding: 4.5rem 0;
}
.ddm-panel__inner {
  max-width: 46rem;
  margin: 0 auto;
  text-align: center;
}
.ddm-panel__head { margin-bottom: 1.75rem; }
.ddm-panel .ddm-eyebrow { color: var(--ddm-accent); }
.ddm-panel__title {
  font-family: var(--ddm-display);
  font-size: clamp(1.85rem, 3.8vw, 2.55rem);
  line-height: 1.25;
  margin: 0.5rem 0 0;
  color: #fff;
  font-weight: 600;
}
.ddm-panel__body p {
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.75;
  margin: 0 0 1.15rem;
}
.ddm-panel__body p:last-child { margin-bottom: 0; }
.ddm-panel__cta {
  margin: 2rem 0 0;
  padding: 0;
}

/* Cards grid */
.ddm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}
.ddm-grid--services {
  grid-template-columns: repeat(2, 1fr);
  gap: 1.35rem;
}
@media (min-width: 900px) {
  .ddm-grid--services {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 520px) {
  .ddm-grid--services {
    grid-template-columns: 1fr;
  }
}
.ddm-card {
  background: var(--ddm-surface);
  border-radius: var(--ddm-radius);
  padding: 1.75rem;
  box-shadow: var(--ddm-shadow);
  border: 1px solid rgba(0,0,0,0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.ddm-card h3 {
  font-family: var(--ddm-display);
  font-size: 1.35rem;
  margin: 0 0 0.75rem;
  color: var(--ddm-ink);
}
.ddm-card p { color: var(--ddm-muted); margin: 0 0 1rem; flex: 1; font-size: 1.05rem; }
.ddm-card__sub { margin: -0.35rem 0 0.5rem; font-size: 0.98rem; }
.ddm-card__sub strong { color: var(--ddm-teal); font-weight: 600; }
.ddm-card cite {
  display: block;
  margin-top: 1rem;
  font-size: 0.95rem;
  font-style: normal;
  color: var(--ddm-muted);
}

/* Section head centered */
.ddm-section-head {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 2.5rem;
}
.ddm-section-head .ddm-eyebrow { margin-bottom: 0.65rem; }
.ddm-section-head__lead {
  margin: 0.75rem auto 0;
  max-width: 36rem;
}

/* Reviews carousel */
.ddm-reviews {
  background: linear-gradient(180deg, #fff 0%, var(--ddm-soft) 100%);
  padding: 4.5rem 0;
}
.ddm-reviews__wrap { max-width: 52rem; margin: 0 auto; }
.ddm-reviews__viewport {
  position: relative;
  min-height: 20rem;
}
.ddm-review {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem;
  animation: ddmReviewIn 0.45s ease;
}
.ddm-review.is-active {
  display: flex;
}
@keyframes ddmReviewIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.ddm-review__avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 12px 32px rgba(15, 20, 25, 0.15);
  margin-bottom: 1rem;
}
.ddm-stars {
  display: flex;
  gap: 0.2rem;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--ddm-accent);
  font-size: 1.15rem;
}
.ddm-review__quote {
  margin: 0 0 1.25rem;
  padding: 0;
  border: none;
  max-width: 40rem;
}
.ddm-review__quote p {
  margin: 0;
  font-size: clamp(1.2rem, 2.4vw, 1.45rem);
  line-height: 1.65;
  color: var(--ddm-text);
}
.ddm-review__name {
  margin: 0;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ddm-ink);
}
.ddm-review__meta {
  margin: 0.35rem 0 0;
  font-size: 1rem;
  color: var(--ddm-muted);
}
.ddm-reviews__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.ddm-reviews__dots {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.ddm-reviews__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: #c5d0db;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}
.ddm-reviews__dot.is-active {
  background: var(--ddm-teal);
  transform: scale(1.25);
}
.ddm-reviews__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.08);
  background: #fff;
  color: var(--ddm-ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--ddm-shadow);
  transition: background 0.2s, color 0.2s;
}
.ddm-reviews__arrow:hover {
  background: var(--ddm-teal);
  color: #fff;
}
@media (prefers-reduced-motion: reduce) {
  .ddm-review { animation: none; }
}

.ddm-card__link {
  font-weight: 700;
  color: var(--ddm-teal);
  text-decoration: none;
}
.ddm-card__link:hover { color: var(--ddm-ink); }

/* Split */
.ddm-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.ddm-split__media {
  margin: 0;
  border-radius: var(--ddm-radius);
  overflow: hidden;
  box-shadow: var(--ddm-shadow);
}
.ddm-split__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.ddm-split__media figcaption {
  padding: 1rem;
  font-size: 0.95rem;
  color: var(--ddm-muted);
  background: var(--ddm-surface);
}

/* Feature block (home) */
.ddm-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.ddm-feature__visual {
  margin: 0;
  border-radius: var(--ddm-radius);
  overflow: hidden;
  box-shadow: var(--ddm-shadow);
  background: var(--ddm-surface);
}
.ddm-feature__visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.ddm-feature__visual figcaption {
  padding: 1rem 1.25rem;
  font-size: 0.98rem;
  color: var(--ddm-muted);
  line-height: 1.5;
  background: var(--ddm-surface);
}
.ddm-feature__points {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}
.ddm-feature__points li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--ddm-text);
  font-size: 1.05rem;
  line-height: 1.55;
}
.ddm-feature__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ddm-teal);
}
.ddm-prose p { margin: 0 0 1.15rem; color: var(--ddm-muted); font-size: 1.1rem; }
.ddm-prose strong { color: var(--ddm-ink); }

/* Páginas de servicio — contenido centrado */
.ddm-page-intro {
  max-width: 46rem;
  margin: 0 auto;
  text-align: center;
}
.ddm-page-intro .ddm-h2 { margin-bottom: 1.25rem; }
.ddm-page-intro p:last-child { margin-bottom: 0; }

.ddm-showcase {
  max-width: 56rem;
  margin: 0 auto 2.5rem;
  border-radius: var(--ddm-radius);
  overflow: hidden;
  box-shadow: var(--ddm-shadow);
  background: var(--ddm-surface);
}
.ddm-showcase img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}
.ddm-showcase figcaption {
  padding: 1rem 1.25rem;
  font-size: 0.98rem;
  color: var(--ddm-muted);
  text-align: center;
  line-height: 1.5;
  background: var(--ddm-surface);
}

.ddm-grid-wrap {
  max-width: 56rem;
  margin: 0 auto;
}
.ddm-grid--2x2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 640px) {
  .ddm-grid--2x2 { grid-template-columns: 1fr; }
}
.ddm-grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.ddm-timeline-wrap {
  max-width: 42rem;
  margin: 0 auto;
}
.ddm-timeline--center .ddm-timeline__item {
  grid-template-columns: 1fr;
  text-align: center;
  gap: 0.5rem;
}
.ddm-timeline--center .ddm-timeline__when {
  display: block;
  margin-bottom: 0.15rem;
}
.ddm-timeline--center .ddm-timeline__item p {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.ddm-checklist {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 40rem;
  text-align: left;
  display: grid;
  gap: 0.85rem;
}
.ddm-checklist li {
  position: relative;
  padding-left: 1.75rem;
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--ddm-text);
}
.ddm-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--ddm-teal);
  font-weight: 700;
}

.ddm-mosaic-wrap {
  max-width: 56rem;
  margin: 2rem auto 0;
}
.ddm-mosaic-wrap .ddm-mosaic {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 700px) {
  .ddm-mosaic-wrap .ddm-mosaic { grid-template-columns: 1fr; }
}

/* FAQ */
.ddm-faq { display: grid; gap: 0.75rem; }
@media (min-width: 900px) {
  .ddm-faq { grid-template-columns: 1fr 1fr; }
}
.ddm-faq details {
  background: var(--ddm-surface);
  border-radius: var(--ddm-radius);
  padding: 0.25rem 1.25rem;
  border: 1px solid #e2e8f0;
}
.ddm-faq summary {
  cursor: pointer;
  font-weight: 700;
  padding: 1rem 0;
  font-size: 1.05rem;
  list-style: none;
}
.ddm-faq summary::-webkit-details-marker { display: none; }
.ddm-faq p { margin: 0 0 1rem; color: var(--ddm-muted); font-size: 1.05rem; }

/* CTA band */
.ddm-cta {
  background: linear-gradient(90deg, var(--ddm-bg), #1a3a4a);
  color: #fff;
  padding: 3rem 0;
}
.ddm-cta__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.ddm-cta h2 { margin: 0 0 0.35rem; font-family: var(--ddm-display); font-size: 1.75rem; }
.ddm-cta p { margin: 0; opacity: 0.9; }

/* Form */
.ddm-form {
  background: var(--ddm-surface);
  border-radius: var(--ddm-radius);
  padding: 0;
  box-shadow: none;
}
.ddm-form__fieldset {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  padding: 1.25rem 1.35rem 0.5rem;
  margin: 0 0 1.25rem;
  background: #fff;
}
.ddm-form__fieldset--verify {
  max-width: 280px;
}
.ddm-form__legend {
  font-family: var(--ddm-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ddm-ink);
  padding: 0 0.35rem;
  margin-bottom: 0.5rem;
}
.ddm-field {
  margin-bottom: 1rem;
}
.ddm-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
  font-size: 1rem;
}
.ddm-form input:not([type="checkbox"]):not([type="hidden"]),
.ddm-form select,
.ddm-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  font-size: 1.05rem;
  border: 2px solid #dde4ec;
  border-radius: 12px;
  margin-bottom: 0;
  font-family: inherit;
  background: #fff;
  color: var(--ddm-ink);
}
.ddm-form input:focus,
.ddm-form select:focus,
.ddm-form textarea:focus {
  outline: none;
  border-color: var(--ddm-teal);
}
.ddm-form .ddm-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.ddm-alert {
  padding: 1rem 1.25rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  font-weight: 600;
}
.ddm-alert--ok { background: #d1fae5; color: #065f46; }
.ddm-alert--err { background: #fee2e2; color: #991b1b; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* Contacto */
.ddm-contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.ddm-contact-list {
  margin: 1.25rem 0;
  padding: 0;
  list-style: none;
}
.ddm-contact-list li {
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 1.05rem;
  color: var(--ddm-muted);
}
.ddm-contact-list strong { color: var(--ddm-ink); }
.ddm-contact-trust {
  background: var(--ddm-surface);
  border-radius: var(--ddm-radius);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  box-shadow: var(--ddm-shadow);
}
.ddm-contact-trust p {
  margin: 0.5rem 0;
  font-size: 1rem;
  color: var(--ddm-text);
}
.ddm-contact-trust .fa { color: var(--ddm-teal); margin-right: 0.35rem; }
.ddm-contact-form-wrap {
  background: var(--ddm-surface);
  border-radius: var(--ddm-radius);
  padding: 1.75rem 2rem 2rem;
  box-shadow: var(--ddm-shadow);
  border: 2px solid rgba(13, 148, 136, 0.15);
  position: relative;
}
.ddm-section-head--form {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 1.5rem;
}
.ddm-btn--block { width: 100%; margin-top: 0.5rem; }
.ddm-form label.ddm-check {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.65rem;
  margin: 0.85rem 0;
  font-size: 1.05rem;
  font-weight: 500;
  cursor: pointer;
  line-height: 1.45;
}
.ddm-form label.ddm-check input[type="checkbox"] {
  width: 1.25rem;
  height: 1.25rem;
  min-width: 1.25rem;
  margin: 0;
  padding: 0;
  border-radius: 4px;
  flex-shrink: 0;
  accent-color: var(--ddm-teal);
  cursor: pointer;
}
.ddm-form label.ddm-check span {
  flex: 1;
}
.ddm-form-note {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--ddm-muted);
  text-align: center;
}
.ddm-field-err {
  color: #991b1b;
  font-size: 0.95rem;
  margin: -0.35rem 0 0.75rem;
}
.ddm-form-flash { margin-bottom: 1rem; }
@media (max-width: 900px) {
  .ddm-contact-layout { grid-template-columns: 1fr; }
}

/* Footer */
.ddm-footer {
  background: var(--ddm-bg);
  color: rgba(255,255,255,0.8);
  padding: 3rem 0 2rem;
  font-size: 0.98rem;
}
.ddm-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
}
.ddm-footer a { color: var(--ddm-accent); text-decoration: none; }
.ddm-footer ul { list-style: none; margin: 0; padding: 0; }
.ddm-footer li { margin-bottom: 0.4rem; }
.ddm-footer h4 { color: #fff; margin: 0 0 0.75rem; font-size: 1rem; }

/* Float */
.ddm-float {
  position: fixed;
  right: 1.25rem;
  bottom: 6rem;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.ddm-float a {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 1.35rem;
  box-shadow: 0 10px 28px rgba(0,0,0,0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ddm-float a:hover {
  transform: scale(1.06);
  box-shadow: 0 14px 36px rgba(0,0,0,0.32);
}
.ddm-float .wa { background: #25d366; }
.ddm-float .tel { background: var(--ddm-teal); }
.ddm-float .ddm-icon-wa {
  display: block;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

/* Cookie */
.ddm-cookie[hidden] {
  display: none !important;
}

.ddm-cookie {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 950;
  max-width: 520px;
  margin: 0 auto;
  background: var(--ddm-ink);
  color: #fff;
  padding: 1rem 1.25rem;
  border-radius: var(--ddm-radius);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.ddm-cookie button {
  background: var(--ddm-accent);
  border: none;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
}

/* Gallery page */
.ddm-gallery-nav-section {
  padding-top: 0;
  padding-bottom: 0.5rem;
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--ddm-bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.ddm-gallery-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 0.65rem;
  padding: 0.75rem 0;
}
.ddm-gallery-nav a {
  display: inline-block;
  padding: 0.45rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ddm-text);
  background: var(--ddm-surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.ddm-gallery-nav a:hover,
.ddm-gallery-nav a:focus-visible {
  background: var(--ddm-teal);
  color: #fff;
  border-color: var(--ddm-teal);
}
.ddm-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 72rem;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .ddm-gallery { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .ddm-gallery { grid-template-columns: repeat(4, 1fr); gap: 1.15rem; }
}
.ddm-gallery__item {
  display: block;
  position: relative;
  border-radius: var(--ddm-radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--ddm-surface);
  box-shadow: var(--ddm-shadow);
  text-decoration: none;
  color: inherit;
}
.ddm-gallery__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (hover: hover) {
  .ddm-gallery__item img {
    transition: transform 0.35s ease;
  }
  .ddm-gallery__item:hover img,
  .ddm-gallery__item:focus-visible img {
    transform: scale(1.04);
  }
}
.ddm-gallery-section {
  content-visibility: auto;
  contain-intrinsic-size: auto 800px;
}
.ddm-gallery__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2rem 0.75rem 0.65rem;
  font-size: 0.8rem;
  line-height: 1.35;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.82));
  opacity: 0;
  transition: opacity 0.25s;
}
.ddm-gallery__item:hover .ddm-gallery__caption,
.ddm-gallery__item:focus-visible .ddm-gallery__caption {
  opacity: 1;
}
.ddm-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(5, 8, 12, 0.92);
  border: none;
  margin: 0;
  max-width: none;
  max-height: none;
  width: 100%;
  height: 100%;
}
.ddm-lightbox[open] {
  display: flex;
}
.ddm-lightbox::backdrop {
  background: rgba(0, 0, 0, 0.85);
}
.ddm-lightbox img {
  max-width: min(96vw, 1200px);
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--ddm-radius);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}
.ddm-lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.75rem;
  height: 2.75rem;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}
.ddm-lightbox__close:hover { background: var(--ddm-teal); }

/* Breadcrumb */
.ddm-crumb { font-size: 0.95rem; margin-bottom: 0.75rem; opacity: 0.85; }
.ddm-crumb a { color: inherit; }

/* Timeline */
.ddm-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}
.ddm-timeline__item {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: var(--ddm-surface);
  border-radius: var(--ddm-radius);
  box-shadow: var(--ddm-shadow);
}
.ddm-timeline__when {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ddm-teal);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.ddm-timeline__item p { margin: 0.35rem 0 0; color: var(--ddm-muted); }

/* Mosaic */
.ddm-mosaic {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.75rem;
}
.ddm-mosaic__cell {
  margin: 0;
  border-radius: var(--ddm-radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.ddm-mosaic__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Visual row */
.ddm-visual-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.ddm-visual-card {
  margin: 0;
  border-radius: var(--ddm-radius);
  overflow: hidden;
  background: var(--ddm-surface);
  box-shadow: var(--ddm-shadow);
}
.ddm-visual-card img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.ddm-visual-card figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  color: var(--ddm-muted);
}
.ddm-visual-row--pack {
  max-width: 56rem;
  margin: 0 auto 3rem;
}
.ddm-visual-row--pack .ddm-visual-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* Pullquote */
.ddm-pullquote {
  margin: 1.5rem 0 0;
  padding: 1.25rem 1.5rem;
  border-left: 4px solid var(--ddm-accent);
  background: var(--ddm-surface);
  border-radius: 0 var(--ddm-radius) var(--ddm-radius) 0;
}
.ddm-pullquote p { margin: 0; font-style: italic; }
.ddm-pullquote cite {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.95rem;
  font-style: normal;
  color: var(--ddm-muted);
}

/* Process (contact) */
.ddm-process { margin-bottom: 2rem; }
.ddm-process__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}
.ddm-process__list li {
  padding: 0.85rem 1rem;
  background: var(--ddm-surface);
  border-radius: 12px;
  border: 1px solid rgba(15,20,25,0.06);
}
.ddm-process__list strong { display: block; margin-bottom: 0.25rem; }
.ddm-process__list span { color: var(--ddm-muted); font-size: 0.98rem; }

/* Contact premium */
.ddm-contact-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.ddm-btn--wa { background: #25d366; color: #fff; }
.ddm-btn--wa:hover { color: #fff; transform: translateY(-2px); }
.ddm-contact-map {
  margin: 1.5rem 0 0;
  border-radius: var(--ddm-radius);
  overflow: hidden;
  box-shadow: var(--ddm-shadow);
}
.ddm-contact-map figcaption {
  padding: 0.65rem 0;
  font-size: 0.95rem;
  color: var(--ddm-muted);
}
.ddm-contact-hero-text { max-width: 42rem; margin-bottom: 0.5rem; }
.ddm-contact-intro { max-width: 48rem; margin-left: auto; margin-right: auto; }
.ddm-contact-trust--highlight {
  border-left: 4px solid var(--ddm-teal);
  background: linear-gradient(135deg, var(--ddm-surface) 0%, rgba(45, 156, 148, 0.06) 100%);
}
.ddm-contact-trust--highlight p {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.55;
}
.ddm-contact-trust--highlight .fa {
  margin-top: 0.2rem;
  flex-shrink: 0;
}
.ddm-contact-form-wrap .ddm-h2 { font-size: clamp(1.35rem, 2.5vw, 1.65rem); }

/* Equipo / E-E-A-T */
.ddm-team {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
  max-width: 56rem;
  margin: 0 auto;
}
.ddm-team__visual {
  margin: 0;
  border-radius: var(--ddm-radius);
  overflow: hidden;
  box-shadow: var(--ddm-shadow);
}
.ddm-team__visual img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.ddm-team__visual figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  color: var(--ddm-muted);
  background: var(--ddm-surface);
}
@media (max-width: 900px) {
  .ddm-team { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .ddm-nav-toggle { display: block; }
  .ddm-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ddm-bg);
    padding: 1rem;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .ddm-nav.is-open { display: block; }
  .ddm-nav > ul {
    flex-direction: column;
    align-items: stretch;
    flex-wrap: wrap;
  }
  .ddm-nav__submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    box-shadow: none;
    border: none;
    background: rgba(255,255,255,0.04);
    margin: 0.25rem 0 0.5rem;
    padding: 0.25rem 0;
  }
  .ddm-nav__dropdown.is-open .ddm-nav__submenu { display: block; }
  .ddm-nav__dropbtn { width: 100%; justify-content: space-between; }
  .ddm-trust__grid { grid-template-columns: 1fr 1fr; }
  .ddm-split { grid-template-columns: 1fr; }
  .ddm-feature { grid-template-columns: 1fr; gap: 2rem; }
  .ddm-feature__visual { order: -1; }
  .ddm-footer__grid { grid-template-columns: 1fr 1fr; }
  .ddm-form .ddm-row { grid-template-columns: 1fr; }
  .ddm-visual-row { grid-template-columns: 1fr; }
  .ddm-timeline__item { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .ddm-trust__grid { grid-template-columns: 1fr; }
  .ddm-footer__grid { grid-template-columns: 1fr; }
}
