/* ==========================================================================
   Entre Todos Recreación — hoja de estilos única
   Sin animaciones ni transiciones: sólo la maquetación y los colores.
   ========================================================================== */

:root {
  --pink: #eb3962;
  --dark: #222222;
  --text: #777777;
  --muted: #999999;
  --white: #ffffff;
  --container: 1170px;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.66;
  color: var(--text);
  background: var(--white);
}

img { max-width: 100%; height: auto; border: 0; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h2, h3, h4, h5, h6, p { margin: 0; }
[class^="ion-"], [class*=" ion-"] {
  display: inline-block;
  line-height: 1;
  font-size: inherit;
}
button { font: inherit; }

.container {
  width: 100%;
  max-width: calc(var(--container) + 30px);
  margin: 0 auto;
  padding: 0 15px;
}

/* ---------- títulos compartidos ---------- */
.heading {
  font-weight: 700;
  text-align: center;
}
.heading--pink {
  font-size: 30px;
  line-height: 1.26;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--pink);
}
.heading--dark {
  font-size: 30px;
  line-height: 1.24;
  color: var(--dark);
}
.heading--left { text-align: left; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.page-header {
  position: relative;
  z-index: 4;
}

.header-top { background: var(--white); }

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 123px;
}

.branding__logo img { width: 190px; height: auto; }

/* bloque de datos de contacto (en el original es un carrusel de 3) */
.header-info {
  display: flex;
  align-items: center;
  gap: 30px;
  flex: 0 1 auto;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 232px;
  padding-left: 19px;
}

/* linea gris divisoria entre items (no antes del primero) */
.info-item + .info-item { border-left: 1px solid #ededed; }

.info-icon {
  font-size: 20px;
  color: var(--pink);
  flex: none;
}

.info-content { display: block; }

.info-title {
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--dark);
}

.info-sub-title {
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text);
}

/* hamburguesa (sólo mobile) */
.mobile-menu-toggle {
  display: none;
  width: 30px;
  height: 24px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
}
.mobile-menu-toggle span {
  display: block;
  height: 2px;
  background: var(--dark);
}

/* ---------- barra rosada: menú + redes ----------
   Cuelga del borde inferior del header en position absolute, así queda
   montada sobre el hero o el banner, igual que el original. */
.header-below-holder {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
}

.header-below {
  padding: 0 30px;
  background: var(--pink);
  border-radius: 0 0 6px 6px;
}

.header-below-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu__container { display: flex; }

.menu__container > li > a {
  display: block;
  padding: 21px 14px;
  font-size: 15px;
  font-weight: 500;
  line-height: 19px;
  color: rgba(255, 255, 255, 0.5);
}

.menu__container > li > a:hover,
.menu__container > .current-menu-item > a { color: var(--white); }

.header-social {
  display: flex;
  align-items: center;
  gap: 4px;
}

.header-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  font-size: 16px;
  color: var(--white);
}
.header-social a:hover { color: rgba(255, 255, 255, 0.5); }

/* ==========================================================================
   HERO (video)
   ========================================================================== */
.hero {
  position: relative;
  height: 800px;
  overflow: hidden;
  background: #000;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ==========================================================================
   INTRO
   ========================================================================== */
.section--intro { padding: 60px 0 0; }

.section--intro .heading { margin-bottom: 42px; }

.intro-text {
  margin: 0 auto;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  color: var(--dark);
}
.intro-text p { margin-bottom: 30px; }
.intro-text p:last-child { margin-bottom: 0; }

/* linea divisoria de seccion */
.rule {
  height: 0;
  margin: 62px 0 0;
  border: 0;
  border-top: 1px solid #ddd;
}

.has-top-border { border-top: 1px solid #eaeaea; }

/* ==========================================================================
   SERVICIOS
   ========================================================================== */
.section--services { padding: 62px 0 156px; }

.section--services .heading { margin-bottom: 116px; }

/* ==========================================================================
   CARRUSEL (marcas del inicio + servicios en mobile)
   ========================================================================== */
.carousel { overflow: hidden; }

.carousel__track {
  display: flex;
  align-items: stretch;
  will-change: transform;
}

.carousel__slide {
  flex: 0 0 auto;
  min-width: 0;
}

/* puntitos indicadores */
.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.carousel__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
}

.carousel__dot.is-active { background: var(--pink); }

/* en desktop los 3 servicios se ven juntos, los puntos no hacen falta */
@media (min-width: 768px) {
  .carousel--services + .carousel__dots { display: none; }
}

/* medidas de arranque, antes de que el script calcule el ancho exacto */
.carousel--services .carousel__slide { width: calc((100% - 40px) / 3); margin-right: 20px; }
.carousel--clients .carousel__slide { width: calc((100% - 40px) / 5); margin-right: 10px; }

@media (max-width: 767px) {
  .carousel--services .carousel__slide { width: 100%; }
  .carousel--clients .carousel__slide { width: calc((100% - 10px) / 2); }
}

.service-card__image { overflow: hidden; }
.service-card__image img { width: 100%; }

.service-card__title {
  margin-top: 20px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark);
  text-align: center;
}
.service-card a:hover .service-card__title { color: var(--pink); }

/* ==========================================================================
   CLIENTES
   ========================================================================== */
.section--clients { padding: 62px 0; }

.section--clients .heading { margin-bottom: 30px; }

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 170px;
}

.client-logo img {
  max-width: 100%;
  max-height: 110px;
  width: auto;
  object-fit: contain;
}

/* ==========================================================================
   CONTACTO (mitad foto / mitad blanco)
   ========================================================================== */
.contact-split {
  display: flex;
  min-height: 407px;
}

.contact-split__media,
.contact-split__body {
  flex: 1 1 50%;
  min-width: 0;
  display: flex;
  align-items: center;
}

.contact-split__media {
  background-image: url("../imagenes-entretodos/2019/02/entre-todos-contacto.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 40px 30px 40px calc((100vw - var(--container)) / 2);
}

.contact-split__heading {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
}

.contact-split__body { padding: 40px 30px 40px 78px; }

.contact-split__inner { width: 100%; max-width: 500px; }

.contact-split__inner .heading { margin-bottom: 30px; }

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 22px;
}
.contact-list li:last-child { margin-bottom: 0; }

.contact-list__icon {
  font-size: 20px;
  line-height: 1;
  color: var(--pink);
  flex: none;
  padding-top: 2px;
}

.contact-list__text {
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--dark);
}

.contact-list .sub-title {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}

.contact-list .link:hover { color: var(--pink); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.page-footer {
  padding: 123px 0 0;
  background: var(--dark);
  color: rgba(255, 255, 255, 0.5);
}

.footer-grid {
  display: grid;
  grid-template-columns: 16.66% repeat(4, 20.83%);
  gap: 30px 0;
  padding-bottom: 60px;
}

.footer-col { padding-right: 30px; }

.footer-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.55;
  color: var(--white);
}

.footer-sep {
  display: block;
  height: 1px;
  margin: 20px 0 25px;
  background: rgba(255, 255, 255, 0.15);
}

/* insignias Great Place To Work */
.footer-col--badges { display: grid; gap: 25px; justify-items: start; }
.footer-col--badges img { width: 110px; }

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

.footer-social { display: flex; gap: 10px; }

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.footer-social a:hover { color: var(--white); }

.footer-menu li { margin-bottom: 8px; }
.footer-menu a:hover { color: var(--white); }

.footer-bottom {
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
}

/* ==========================================================================
   PÁGINAS INTERNAS — banner de título
   ========================================================================== */
.page-banner {
  position: relative;
  min-height: 302px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.page-banner .container { position: relative; }

.page-banner__inner {
  text-align: center;
  padding: 40px 0;
}

.page-banner__title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
}

.breadcrumb {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb li + li::before {
  content: "-";
  padding: 0 8px;
}

.breadcrumb a:hover { color: var(--white); }

/* ==========================================================================
   PÁGINAS INTERNAS — estructura
   ========================================================================== */
.page-main { padding: 62px 0; }

.page-main__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: start;
}

.content-col { padding-right: 30px; }

.block { margin-bottom: 62px; }
.block:last-child { margin-bottom: 0; }

/* títulos de sección */
.heading-pink {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.55;
  color: var(--pink);
  margin-bottom: 22px;
}

.heading-dark-30 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.24;
  color: var(--dark);
  margin-bottom: 35px;
}

.heading-propuestas {
  font-size: 33px;
  font-weight: 700;
  line-height: 1.24;
  color: var(--dark);
  text-align: center;
  margin: 62px 0 45px;
}

.heading-gallery { margin-top: 62px; }

/* bloque de texto grande (Misión y Visión) */
.lead-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 29.88px;
  color: var(--text);
}

.lead {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.55;
  color: var(--dark);
  margin-bottom: 25px;
}

/* cuerpo de texto */
.rich-text { font-weight: 500; }
.rich-text p { margin-bottom: 25px; }
.rich-text p:last-child { margin-bottom: 0; }
.rich-text .dash-list { line-height: 2; }

/* ---------- barra lateral con el menú ---------- */
.page-sidebar { background: #f2f2f3; }

.sidebar-menu { padding: 62px 25px 70px; }

.sidebar-menu li { margin-bottom: 1px; }

.sidebar-menu a {
  display: block;
  padding: 18px 25px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--text);
  background: var(--white);
}

.sidebar-menu a:hover { color: var(--pink); }

.sidebar-menu .is-current a {
  background: var(--pink);
  color: var(--white);
}

/* ==========================================================================
   SOBRE NOSOTROS — valores
   ========================================================================== */
.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  justify-items: center;
}

.value { text-align: center; }

.value__pill {
  position: relative;
  width: 270px;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  background-color: var(--pink);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.value__overlay {
  position: absolute;
  inset: 0;
  background: rgba(34, 34, 34, 0.45);
}

.value__title {
  position: relative;
  padding: 0 16px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--white);
}

.value__text {
  margin-top: 22px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.66;
  color: var(--text);
}

/* ---------- tira de 42 logos de clientes ---------- */
.client-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.client-strip .client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 calc((100% - 180px) / 7);
  height: 150px;
}

.client-strip .client-logo img {
  max-width: 100%;
  max-height: 140px;
  width: auto;
  object-fit: contain;
}

/* ==========================================================================
   TEAM BUILDING / TEAM BONDING — propuestas
   ========================================================================== */
.proposals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px 30px;
}

.proposal {
  display: block;
  text-align: center;
}

.proposal__image {
  display: block;
  max-width: 200px;
  margin: 0 auto;
}

.proposal__image img { width: 100%; }

.proposal__title {
  display: block;
  margin-top: 18px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--dark);
}

.proposal:hover .proposal__title { color: var(--pink); }

/* ==========================================================================
   EVENTOS — galerías por caso
   ========================================================================== */
.gallery-case { margin-bottom: 50px; }
.gallery-case:last-child { margin-bottom: 0; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-grid img { width: 100%; }

.gallery-caption {
  margin-top: 22px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--dark);
  text-align: center;
}

/* ==========================================================================
   BLOG
   ========================================================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px 30px;
}

.post-card { padding-bottom: 20px; }

.post-card__wrap {
  background: var(--white);
  border-radius: 5px;
  box-shadow: 0 20px 20px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  height: 100%;
}

.post-card__image { display: block; }

.post-card__image img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.post-card__info { padding: 31px 40px 54px; }

.post-card__meta {
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 25px;
}

.post-card__date {
  display: inline-block;
  font-weight: 600;
  color: #c0c0c0;
}

/* el punto gris que separa fecha y categoría */
.post-card__cat-wrap {
  position: relative;
  display: inline-block;
  padding-left: 15px;
}

.post-card__cat-wrap::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #eee;
}

.post-card__cat {
  font-weight: 700;
  color: var(--pink);
}
.post-card__cat:hover { color: var(--dark); }

.post-card__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: var(--dark);
}

.post-card__title a:hover { color: var(--pink); }

/* ==========================================================================
   PÁGINAS DE DETALLE DE PROPUESTAS
   ========================================================================== */
.detail-logo { margin-bottom: 30px; }

.detail-logo img {
  width: 200px;
  max-width: 100%;
  height: auto;
}

.detail-text {
  margin-bottom: 22.5px;
  font-weight: 500;
  line-height: 27px;
  text-align: justify;
}

.detail-subtitle {
  margin: 45px 0 25px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--pink);
}

.detail-list {
  margin-bottom: 25px;
  font-weight: 500;
}

.detail-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
}

.detail-list li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--pink);
}

/* video de YouTube en 16:9 */
.detail-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 30px 0;
  background: #000;
}

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

.detail-gallery-title {
  margin: 45px 0 25px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark);
  text-align: center;
}

.detail-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.detail-gallery img {
  width: 100%;
  aspect-ratio: 186 / 150;
  object-fit: cover;
}

/* ==========================================================================
   POSTS DEL BLOG
   ========================================================================== */
.entry-banner {
  position: relative;
  min-height: 277px;
  display: flex;
  align-items: center;
  background-color: var(--dark);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.entry-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.entry-banner .container { position: relative; }

.entry-banner__title {
  padding: 40px 0;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--white);
  text-align: center;
}

/* cuerpo del artículo: 18px justificado, como el original */
.post-single {
  font-size: 18px;
  line-height: 1.66;
  font-weight: 500;
}

.post-single p {
  margin-bottom: 25px;
  text-align: justify;
  hyphens: auto;
}

.post-single p:last-child { margin-bottom: 0; }

.post-single strong {
  font-weight: 700;
  color: var(--dark);
}

.post-lead {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  text-align: left !important;
}

.post-figure {
  margin: 0 0 25px;
}

.post-figure img {
  width: 100%;
  border-radius: 15px;
}

/* fila de imagen + texto */
.post-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
  margin-bottom: 25px;
}

.post-pair .post-figure { margin-bottom: 0; }

.post-pair__text p:last-child { margin-bottom: 0; }

/* ==========================================================================
   PÁGINA DE CONTACTO
   ========================================================================== */
.contact-page { display: flex; }

.contact-page__form,
.contact-page__info {
  flex: 1 1 50%;
  min-width: 0;
  display: flex;
  align-items: center;
}

.contact-page__form {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 90px 30px 90px calc((100vw - var(--container)) / 2);
}

.contact-page__info { padding: 90px 30px 90px 78px; }

.contact-page__inner { width: 100%; max-width: 480px; }

.contact-page__heading {
  margin-bottom: 40px;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
}

.contact-page__info .heading { margin-bottom: 30px; }

/* ---------- formulario ---------- */
.contact-form__row { padding: 10px 0; }

.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  padding: 0 25px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  background: var(--white);
  border: 1px solid #ccc;
  border-radius: 2px;
}

.contact-form input { height: 52px; }

.contact-form textarea {
  min-height: 120px;
  padding: 18px 25px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #999; }

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 0;
  border-color: var(--dark);
}

.contact-form__submit {
  display: block;
  width: 100%;
  height: 66px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  background: #000;
  border: 0;
  border-radius: 5px;
  cursor: pointer;
}

.contact-form__submit:hover { background: var(--pink); }

/* cartel de resultado del envío */
.form-alert {
  margin-bottom: 25px;
  padding: 16px 20px;
  border-radius: 3px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}

.form-alert.is-ok {
  color: #1d6b3a;
  background: #e6f5ec;
  border: 1px solid #b6e0c6;
}

.form-alert.is-error {
  color: #8a1c2e;
  background: #fdeaee;
  border: 1px solid #f4bcc7;
}

/* honeypot: fuera de pantalla, nunca visible ni tabulable */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* etiquetas solo para lectores de pantalla */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1199px) {
  .info-item { width: auto; }
  .header-info { gap: 22px; }
  .contact-split__media { padding-left: 40px; }
  .contact-page__form { padding-left: 40px; }
  .contact-page__info { padding-left: 40px; }
}

@media (max-width: 991px) {
  .header-info .info-item:nth-child(3) { display: none; }

  .page-main__grid { grid-template-columns: 1fr; }
  .content-col { padding-right: 0; margin-bottom: 50px; }
  .sidebar-menu { padding: 35px 25px 40px; }

  .values { grid-template-columns: repeat(2, 1fr); }
  .client-strip .client-logo { flex-basis: calc((100% - 120px) / 5); }
  .detail-video { margin: 25px 0; }
  .post-single { font-size: 17px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { height: 560px; }
  .section--services .heading { margin-bottom: 60px; }
  .section--services { padding-bottom: 80px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .header-wrap { min-height: 90px; gap: 15px; }
  .branding__logo img { width: 150px; }
  .header-info { display: none; }
  .mobile-menu-toggle { display: flex; }

  /* en mobile la barra va a todo el ancho, sin esquinas redondeadas */
  .header-below-holder {
    position: static;
    max-width: none;
    padding: 0;
  }

  .header-below {
    padding: 0 20px;
    border-radius: 0;
  }

  .header-below-wrap {
    display: block;
    padding: 0;
  }
  .page-navigation { display: none; }
  .header-below.is-open .page-navigation { display: block; }
  .menu__container { display: block; }
  .menu__container > li > a { padding: 12px 0; }
  .header-social {
    justify-content: center;
    padding: 8px 0;
  }

  .hero { height: 420px; }

  .heading--pink { font-size: 22px; letter-spacing: 2px; }
  .heading--dark { font-size: 24px; }

  /* servicios: 1 por vista en mobile, lo maneja el carrusel */
  .section--services { padding: 40px 0 60px; }
  .section--services .heading { margin-bottom: 40px; }

  .client-logo { height: 120px; }

  .page-banner { min-height: 220px; }
  .page-banner__title { font-size: 30px; }
  .page-main { padding: 45px 0; }
  .heading-propuestas { font-size: 26px; margin: 45px 0 35px; }
  .heading-dark-30 { font-size: 24px; }

  .values { grid-template-columns: 1fr; }
  .proposals { grid-template-columns: repeat(2, 1fr); gap: 35px 20px; }
  .client-strip { gap: 20px; }
  .client-strip .client-logo { flex-basis: calc((100% - 40px) / 3); height: 110px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .detail-gallery { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .detail-logo img { width: 150px; }
  .detail-subtitle { font-size: 20px; margin: 35px 0 20px; }
  .detail-gallery-title { font-size: 20px; margin: 35px 0 20px; }
  .detail-text { text-align: left; }
  .entry-banner { min-height: 200px; }
  .entry-banner__title { font-size: 26px; padding: 35px 0; }
  .post-single { font-size: 16px; }
  .post-single p { text-align: left; }
  .post-lead { font-size: 19px; }
  .post-pair { grid-template-columns: 1fr; gap: 20px; }
  .blog-grid { grid-template-columns: 1fr; }

  .contact-page { display: block; }
  .contact-page__form { padding: 50px 20px; }
  .contact-page__info { padding: 45px 20px; }
  .contact-page__heading { font-size: 36px; margin-bottom: 30px; }
  .contact-page__inner { max-width: none; }

  .contact-split { display: block; }
  .contact-split__media {
    min-height: 260px;
    padding: 40px 20px;
  }
  .contact-split__heading { font-size: 36px; }
  .contact-split__body { padding: 45px 20px; }

  .page-footer { padding-top: 60px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-col { padding-right: 0; }
}
