/* ═══════════════════════════════════════════════════════════════
   inner.css — Estilos para páginas internas
   Aplica a: /servicios/, /casos/, /nosotros/, /contacto/
   Importar DESPUÉS de styles.css
   ═══════════════════════════════════════════════════════════════ */


/* ──────────────────────────────────────────────────────────────
   BREADCRUMBS
────────────────────────────────────────────────────────────── */
.breadcrumbs {
  padding: 7rem 0 1.5rem; /* Compensa navbar fixed */
  border-bottom: 1px solid var(--white-08);
}

.breadcrumbs__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--white-40);
  text-transform: uppercase;
}

.breadcrumbs__list li { display: flex; align-items: center; }

.breadcrumbs__list a {
  color: var(--white-40);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumbs__list a:hover { color: var(--gold); }

.breadcrumbs__list [aria-current="page"] {
  color: var(--gold);
}


/* ──────────────────────────────────────────────────────────────
   SERVICE HERO
────────────────────────────────────────────────────────────── */
.service-hero {
  padding: 4rem 0 var(--section-pad);
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

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

.service-hero__title {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  margin: 1.5rem 0 2rem;
  color: var(--white);
}

.service-hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--white-70);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.service-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.service-hero__img {
  margin-top: clamp(3rem, 6vw, 5rem);
  border-radius: 2px;
  overflow: hidden;
}

.service-hero__placeholder {
  aspect-ratio: 16 / 7;
  background: var(--dark-3);
  /* REEMPLAZA: con imagen real del servicio */
}


/* ──────────────────────────────────────────────────────────────
   SERVICE PROBLEM
────────────────────────────────────────────────────────────── */
.service-problem {
  padding: var(--section-pad) 0;
  border-bottom: 1px solid var(--white-08);
}

.service-problem__grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 900px) {
  .service-problem__grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
  }
}

.service-problem__left h2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  margin-top: 1rem;
}

.service-problem__right p {
  font-size: 0.95rem;
  color: var(--white-70);
  line-height: 1.8;
  max-width: none;
  margin-bottom: 1.25rem;
}


/* ──────────────────────────────────────────────────────────────
   SERVICE INCLUDES
────────────────────────────────────────────────────────────── */
.service-includes {
  padding: var(--section-pad) 0;
  background: var(--dark);
}

.service-includes__grid {
  display: grid;
  gap: 2px;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) {
  .service-includes__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .service-includes__grid { grid-template-columns: repeat(4, 1fr); }
}

.service-includes__item {
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid var(--white-08);
  transition: background 0.3s, border-color 0.3s;
  position: relative;
}
.service-includes__item:hover {
  background: var(--white-08);
  border-color: var(--gold-border);
}

.service-includes__num {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.service-includes__item h3 {
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.service-includes__item p {
  font-size: 0.85rem;
  color: var(--white-40);
  line-height: 1.7;
  max-width: none;
}


/* ──────────────────────────────────────────────────────────────
   SERVICE PROCESS
────────────────────────────────────────────────────────────── */
.service-process {
  padding: var(--section-pad) 0;
}

.service-process__steps {
  max-width: 720px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: steps;
}

.service-process__step {
  display: flex;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--white-08);
  position: relative;
}

.service-process__step:first-child { padding-top: 0; }

.service-process__num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  flex-shrink: 0;
  padding-top: 0.25rem;
  min-width: 3rem;
}

.service-process__step h3 {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.service-process__step p {
  font-size: 0.9rem;
  color: var(--white-40);
  line-height: 1.75;
  max-width: none;
}


/* ──────────────────────────────────────────────────────────────
   SERVICE CASES (heredado del portfolio pero reducido)
────────────────────────────────────────────────────────────── */
.service-cases {
  padding: var(--section-pad) 0;
  background: var(--dark);
}


/* ──────────────────────────────────────────────────────────────
   CASO DE ESTUDIO — estilos exclusivos
────────────────────────────────────────────────────────────── */
.case-hero { padding: 4rem 0 0; }

.case-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.case-meta-pill {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4em 1em;
  border: 1px solid var(--white-15);
  border-radius: 100px;
  color: var(--white-40);
}

.case-hero__title {
  font-size: clamp(2.5rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.case-hero__client {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--white-40);
  margin-bottom: 3rem;
}

.case-hero__client strong { color: var(--gold); }

.case-hero__img { margin-top: 4rem; }

.case-hero__placeholder {
  aspect-ratio: 16 / 7;
  background: var(--ph-color, var(--dark-3));
}

/* OVERVIEW */
.case-overview {
  padding: var(--section-pad) 0;
  border-bottom: 1px solid var(--white-08);
}

.case-overview__grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 900px) {
  .case-overview__grid { grid-template-columns: 1fr 1fr; align-items: center; }
}

.case-info-list { list-style: none; }

.case-info-item {
  display: flex;
  justify-content: space-between;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--white-08);
  gap: 2rem;
}

.case-info-item dt {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-40);
  flex-shrink: 0;
}

.case-info-item dd {
  font-size: 0.9rem;
  color: var(--white);
  text-align: right;
}

.case-overview__result {
  text-align: center;
  padding: 3rem;
  border: 1px solid var(--gold-border);
  background: var(--gold-dim);
}

.case-overview__result-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.case-overview__result-num {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 10vw, 6rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1.25rem;
}

.case-overview__result-desc {
  font-size: 0.88rem;
  color: var(--white-70);
  line-height: 1.65;
  max-width: none;
}

/* SECCIONES RETO / SOLUCIÓN */
.case-section {
  padding: var(--section-pad) 0;
  border-bottom: 1px solid var(--white-08);
}

.case-section__inner {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 900px) {
  .case-section__inner {
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
    align-items: start;
  }
}

.case-section__content h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.case-section__content p {
  font-size: 0.95rem;
  color: var(--white-70);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  max-width: none;
}

/* INSIGHT */
.case-insight {
  padding: var(--section-pad) 0;
  background: var(--dark);
}

.case-insight__inner { max-width: 860px; }

.case-insight__quote h2 {
  font-size: clamp(1.6rem, 4vw, 3rem);
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  line-height: 1.35;
  margin-top: 1.5rem;
}

/* GALERÍA */
.case-execution { padding: var(--section-pad) 0; }

.case-gallery {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.case-gallery__row {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .case-gallery__row { grid-template-columns: 1fr 1fr; }
}

.case-gallery__placeholder {
  width: 100%;
  display: block;
  border-radius: 2px;
}

.case-gallery__caption {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--white-40);
  margin-top: 0.75rem;
  text-transform: uppercase;
}

/* RESULTADOS */
.case-results {
  padding: var(--section-pad) 0;
  background: var(--dark);
}

.case-results__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
}
@media (min-width: 600px) {
  .case-results__grid { grid-template-columns: repeat(3, 1fr); }
}

.case-result-item {
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid var(--white-08);
  transition: background 0.3s;
}
.case-result-item:hover { background: var(--white-08); }

.case-result-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}

.case-result-value {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 300;
  color: var(--white);
  display: block;
  line-height: 1;
  margin-bottom: 1rem;
}

.case-result-desc {
  font-size: 0.85rem;
  color: var(--white-40);
  line-height: 1.65;
  display: block;
  max-width: none;
}

/* TESTIMONIO DEL CASO */
.case-testimonial {
  padding: var(--section-pad) 0;
}

.case-testimonial__card {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4rem);
  border-radius: 4px;
}

.case-testimonial__quote {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  font-weight: 300;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}


/* ──────────────────────────────────────────────────────────────
   PÁGINA DE SERVICIOS — estilos exclusivos
────────────────────────────────────────────────────────────── */
.srv-hero {
  padding: 4rem 0 var(--section-pad);
}

.srv-hero__title {
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  margin: 1.5rem 0 2rem;
}

.srv-hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--white-70);
  line-height: 1.75;
  max-width: 600px;
}

/* Lista de servicios */
.srv-list { padding-bottom: var(--section-pad); }

.srv-divider {
  height: 1px;
  background: var(--white-08);
  margin: clamp(3rem, 8vw, 6rem) 0;
}

/* Ítem de servicio */
.srv-item { scroll-margin-top: 100px; }

.srv-item__header {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  margin-bottom: 3rem;
}

.srv-item__num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  padding-top: 0.4rem;
  flex-shrink: 0;
}

.srv-item__title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-top: 0.75rem;
}

/* Body del ítem */
.srv-item__body {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (min-width: 900px) {
  .srv-item__body {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.srv-item__lead {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

.srv-item__desc p:not(.srv-item__lead) {
  font-size: 0.95rem;
  color: var(--white-70);
  line-height: 1.8;
  max-width: none;
}

/* Capacidades */
.srv-item__caps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.srv-item__caps li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--white-08);
}
.srv-item__caps li:last-child { border-bottom: none; padding-bottom: 0; }

.srv-cap__icon {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--gold);
  flex-shrink: 0;
  padding-top: 0.15rem;
  line-height: 1.6;
}

.srv-item__caps strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.srv-item__caps p {
  font-size: 0.85rem;
  color: var(--white-40);
  line-height: 1.65;
  max-width: none;
  margin: 0;
}

/* Equipos */
.srv-equipment {
  margin-top: 2rem;
  padding: 1.75rem;
  border: 1px solid var(--white-08);
  background: var(--dark-2);
}

.srv-equipment__label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.srv-equipment__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.srv-equipment__list li {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  padding: 0.35em 0.9em;
  border: 1px solid var(--white-15);
  border-radius: 100px;
  color: var(--white-40);
}

/* Footer del ítem */
.srv-item__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--white-08);
}

.srv-item__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.srv-item__tags span {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4em 0.9em;
  border: 1px solid var(--white-15);
  border-radius: 100px;
  color: var(--white-40);
}
