/* ===================== */
/* RED DE TALLERES */
/* ===================== */

.network-hero {
  padding: 72px 0 46px;
  background: var(--bg);
  margin-top: -15px;
}

.network-hero-content {
  max-width: 980px;
}

.network-hero-content h1 {
  margin: 0 0 18px;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1;
  font-weight: 900;
  color: #111827;
}

.network-hero-content p {
  margin: 0;
  max-width: 850px;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.75;
}

/* ===================== */
/* BUSCADOR */
/* ===================== */

.network-search-section {
  padding: 64px 0;
  margin-bottom: -24px;
  margin-top: -60px;
}

.network-search-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 34px;
}

.network-search-header {
  max-width: 860px;
  margin-bottom: 28px;
}

.network-search-header h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 900;
  color: #111827;
}

.network-search-header p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.network-search-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.network-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;

  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);

  padding: 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.network-card:hover,
.network-workshop-form-card:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.network-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.network-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 999px;
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.network-card h3 {
  margin: 0;
  color: #111827;
  font-size: 22px;
  font-weight: 900;
}

.network-card p {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.65;
}

.network-card .button-secondary {
  width: fit-content;
  margin-top: auto;
}


/* ===================== */
/* BUSCADOR + FORMULARIO */
/* ===================== */
.network-workshop-form-card {
  grid-column: 1 / 2;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.network-workshop-form-card h3,
.network-search-advantages-header h3 {
  margin: 0 0 12px;
  color: #111827;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.2;
}

.network-workshop-form-card p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.network-workshop-form {
  display: grid;
  gap: 14px;
}

.network-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.network-form-group {
  display: grid;
  gap: 7px;
}

.network-form-group label {
  color: #111827;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.network-form-group input,
.network-form-group textarea,
.network-form-group select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  color: var(--text);
  padding: 12px 13px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.network-form-group select {
  appearance: none;
  cursor: pointer;
  font-family: 'Work Sans', sans-serif;
  color: #001c76;
  font-weight: 700;
  background-color: #fff;
  background-image: linear-gradient(45deg, transparent 50%, #6b7280 50%),
                    linear-gradient(135deg, #6b7280 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 38px;
}

.network-form-group select option {
  font-family: 'Work Sans', sans-serif;
  color: #111827;
  background-color: #ffffff;
  font-weight: 600;
}

.network-form-group select option[value=""] {
  color: #6b7280;
}
.network-form-group textarea {
  resize: none;
  min-height: 96px;
}

.network-form-group input:focus,
.network-form-group textarea:focus {
  border-color: #001c76;
  box-shadow: 0 0 0 3px rgba(0, 28, 118, 0.10);
}

.network-form-button {
  margin-top: 4px;
  width: 100%;
  max-width: none;
  max-height: none;
}

.network-search-advantages {
  grid-column: 2 / 4;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 24px;
}
.network-search-advantages img {
  margin: 27px 0 0 0;
  border-radius: 10px;
  height: 200px;
}

.network-search-advantages-header {
  margin-bottom: 18px;
}

.network-info-list--search {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.network-info-list--search article {
  min-height: 112px;
}
.formulario-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 46px;
}

/* ===================== */
/* BOSCH CAR SERVICE */
/* ===================== */

.bosch-service-section {
  padding: 46px 0;
  background: var(--bg);
}

.bosch-service-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

/* HERO */
.bosch-service-hero {
  position: relative;
  min-height: 455px;
  overflow: visible;
}

.bosch-service-hero-bg {
  width: 100%;
  height: 245px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* CARD SUPERPUESTA */
.bosch-service-intro-card {
  position: absolute;
  left: 50%;
  top: 95px;
  z-index: 3;

  width: min(760px, calc(100% - 90px));
  padding: 26px 34px 28px;

  background: #fff;
  border: 1px solid #eef2f7;
  border-radius: 20px;
  box-shadow: 0 14px 36px rgba(17, 24, 39, 0.10);

  text-align: center;
  transform: translateX(-50%);
}

/* LOGO + TEXTO BOSCH */
.section-kicker-bosch {
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center;
  gap: 6px;

  margin-bottom: 10px;
  line-height: 1;
  vertical-align: middle;
}

.section-kicker-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 28px;

  width: 38px;
  height: 38px;
  line-height: 1;
}

.logo-bosch {
  display: block;
  width: 38px;
  height: 38px;
  object-fit: contain;
  margin-right: 20px;
}

.section-kicker-text {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

/* TEXTO INTRO */
.bosch-service-accent {
  display: block;
  width: 52px;
  height: 3px;
  margin: -20px auto 16px;

  background: #ef233c;
  border-radius: 999px;
}

.bosch-service-intro-card h2 {
  margin: 0 0 12px;
  color: #001c76;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  line-height: 1.08;
}

.bosch-service-intro-card p {
  max-width: 620px;
  margin: 0 auto;

  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.55;
}

/* BOTONES */
.bosch-service-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}
.expert-service-actions {
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.bosch-service-button {
  min-width: 200px;
  min-height: 46px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  border-radius: 8px;

  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.bosch-service-button span {
  font-size: 22px;
  line-height: 1;
}

.bosch-service-button-primary {
  background: #00208a;
  color: #fff;
}

.bosch-service-button-primary:hover {
  background: #001c76;
  transform: translateY(-2px);
}

.bosch-service-button-outline {
  background: #fff;
  color: #00208a;
  border: 1px solid #00208a;
}

.bosch-service-button-outline:hover {
  background: #f5f8ff;
  transform: translateY(-2px);
}

/* BODY */
.bosch-service-body {
  padding: 0 32px 28px;
}

/* TARJETAS */
.bosch-service-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 0;
}

.bosch-service-features article {
  padding: 20px 16px;

  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);

  text-align: center;
}

.bosch-service-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #001c76;
  background: #fff;
  border: 1px solid #d8e0ef;
  border-radius: 999px;
}

.bosch-service-icon svg {
  width: 30px;
  height: 30px;
}

.bosch-service-features h3 {
  margin: 0 0 8px;
  color: #001c76;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
}

.bosch-service-features p {
  margin: 0;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.45;
}

/* ESTADÍSTICAS */
.bosch-service-stats {
  max-width: 760px;
  margin: 22px auto 0;
  padding-top: 20px;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: center;
  gap: 0;

  border-top: 1px solid var(--border);
}

.bosch-service-stats article {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  padding: 0 16px;
  border-right: 1px solid var(--border);
}

.bosch-service-stats article:last-child {
  border-right: none;
}

.bosch-service-stat-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  color: #001c76;
}

.bosch-service-stat-icon svg {
  width: 100%;
  height: 100%;
}

.bosch-service-stats h4 {
  margin: 0 0 4px;
  color: #001c76;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.bosch-service-stats p {
  margin: 0;
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.35;
}
.network-form-alert {
  margin: 0 0 18px;
  padding: 13px 15px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.network-form-alert p {
  margin: 0;
}

.network-form-alert p + p {
  margin-top: 6px;
}

.network-form-alert-ok {
  color: #065f46;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
}

.network-form-alert-error {
  color: #991b1b;
  background: #fef2f2;
  border: 1px solid #fecaca;
}
/* ===================== */
/* RESPONSIVE BOSCH */
/* ===================== */

@media (max-width: 1100px) {
  .bosch-service-hero {
    min-height: 520px;
  }

  .bosch-service-intro-card {
    width: calc(100% - 60px);
  }

  .bosch-service-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bosch-service-stats {
    max-width: 620px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .bosch-service-section {
    padding: 42px 0;
  }

  .bosch-service-hero {
    min-height: 540px;
  }

  .bosch-service-hero-bg {
    height: 250px;
  }

  .bosch-service-intro-card {
    top: 140px;
    width: calc(100% - 24px);
    padding: 26px 18px 24px;
    border-radius: 18px;
  }

  .bosch-service-intro-card h2 {
    font-size: 30px;
    line-height: 1.12;
  }

  .bosch-service-intro-card p {
    font-size: 14px;
    line-height: 1.6;
  }

  .bosch-service-body {
    padding: 0 18px 24px;
  }

  .bosch-service-actions {
    gap: 12px;
  }

  .bosch-service-button {
    width: 100%;
    min-width: 0;
    min-height: 50px;
    font-size: 14px;
  }

  .bosch-service-features {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .bosch-service-stats {
    max-width: 100%;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .bosch-service-stats article {
    justify-content: flex-start;
    padding: 14px 16px;
    border-right: none;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #fff;
  }
}

@media (max-width: 480px) {
  .bosch-service-hero {
    min-height: 590px;
  }

  .bosch-service-intro-card h2 {
    font-size: 25px;
  }

  .bosch-service-icon {
    width: 64px;
    height: 64px;
  }

  .bosch-service-icon svg {
    width: 32px;
    height: 32px;
  }
}
/* ===================== */
/* INFORMACIÓN */
/* ===================== */

.network-info-section {
  padding: 64px 0 78px;
}

.network-info-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  gap: 32px;
  align-items: stretch;

  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 34px;
}

.network-info-content h2 {
  margin: 0 0 14px;
  color: #111827;
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 900;
  line-height: 1.15;
}

.network-info-content p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.75;
}

.network-info-list {
  display: grid;
  gap: 14px;
}

.network-info-list article {
  display: flex;
  gap: 14px;
  align-items: flex-start;

  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
}

.network-info-list span {
  color: #001c76;
  font-size: 18px;
  font-weight: 900;
  flex-shrink: 0;
}

.network-info-list p {
  margin: 0;
  color: var(--text-soft);
  font-weight: 700;
  line-height: 1.5;
}
/* ===================== */
/* EXPERT SERVICE CAR INFO */
/* ===================== */
/* ===================== */
/* TALLER AD */
/* ===================== */

.taller-ad-section {
  padding: 64px 0;
}

.taller-ad-box {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: stretch;

  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);

  padding: 30px;
  overflow: hidden;
}

.taller-ad-image {
  min-height: 520px;
  border-radius: 22px;
  overflow: hidden;
  background: #eef2f7;
  box-shadow: var(--shadow-sm);
}

.taller-ad-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.taller-ad-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.taller-ad-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.taller-ad-logo {
  max-width: 150px;
  max-height: 58px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.taller-ad-content h2 {
  margin: 0 0 12px;
  color: #111827;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.08;
  max-width: 720px;
}

.taller-ad-accent {
  display: block;
  width: 58px;
  height: 5px;
  background: #ef233c;
  border-radius: 999px;
  margin: 6px 0 28px;
}

.taller-ad-content p {
  margin: 0 0 16px;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.75;
  max-width: 760px;
}

.taller-ad-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 26px 0 28px;
}

.taller-ad-features article {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  padding: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.taller-ad-icon {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: #f0f4f8;
  color: #001c76;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.taller-ad-icon svg {
  width: 24px;
  height: 24px;
}

.taller-ad-features h3 {
  margin: 0 0 8px;
  color: #001c76;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
}

.taller-ad-features p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  text-align: center;
}

.taller-ad-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;

  width: fit-content;
  min-width: 260px;

  background: #001c76;
  color: #fff;

  padding: 17px 30px;
  border-radius: 10px;

  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;

  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.taller-ad-button::after {
  content: "";
  position: absolute;
  right: -28px;
  top: 0;
  width: 72px;
  height: 100%;
  background: #ef233c;
  transform: skewX(28deg);
}

.taller-ad-button span {
  position: relative;
  z-index: 2;
  font-size: 28px;
  line-height: 1;
}

.taller-ad-button:hover {
  background: #00165f;
  transform: translateY(-2px);
}
.network-expert-section {
  padding: 64px 0;
}

/* Hace que esta sección pueda ser más ancha si lo necesitas */
.network-expert-section .container {
  width: min(calc(100% - 48px), var(--container));
}

/* Layout principal */
.network-expert-layout {
  width: 100%;
  display: block;
}

/* Caja completa */
.network-expert-content {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 34px;
}

/* Variante con imagen lateral */
.network-expert-content--with-image {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 0;
  padding: 0;
  overflow: hidden;
}

/* Parte izquierda del contenido */
.network-expert-text {
  padding: 34px;
}

/* Imagen lateral derecha */
.network-expert-side-image {
  width: 100%;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
}

.network-expert-side-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Títulos */
.network-expert-content h2,
.network-services-title h2,
.network-gallery-section .section-heading h2 {
  margin: 14px 0 14px;
  color: #111827;
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 900;
  line-height: 1.15;
}

/* Textos */
.network-expert-content p,
.network-services-title p,
.network-gallery-section .section-heading p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 17px;
}

/* Puntos destacados */
.network-expert-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.network-expert-points article {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
}

.network-expert-points span {
  color: #001c76;
  font-size: 18px;
  font-weight: 900;
  flex-shrink: 0;
}

.network-expert-points p {
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
}

/* ===================== */
/* GALERÍA INCLINADA */
/* ===================== */

.network-gallery-section {
  padding: 64px 0;
}

.network-gallery-section .section-heading {
  margin-bottom: 34px;
}

.network-slanted-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1180px;
  margin: 0 auto;
}

.network-slanted-card {
  position: relative;
  height: 340px;
  overflow: hidden;
  background: #eef2f7;
  box-shadow: var(--shadow-sm);
  transform: skewX(-9deg);
  margin: 0 -8px;
}

.network-slanted-card img {
  width: 120%;
  height: 100%;
  object-fit: cover;
  transform: skewX(9deg) scale(1.08);
  transform-origin: center;
}

.network-slanted-card:first-child {
  border-radius: 18px 0 0 18px;
}

.network-slanted-card:last-child {
  border-radius: 0 18px 18px 0;
}

/* ===================== */
/* SERVICIOS RED */
/* ===================== */

.network-services-section {
  padding: 64px 0 78px;
}

.network-services-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 34px;
}

.network-services-title {
  max-width: 850px;
  margin-bottom: 28px;
}

.network-services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.network-services-grid article {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.network-services-grid span {
  display: inline-flex;
  margin-bottom: 14px;
  color: #001c76;
  font-size: 18px;
  font-weight: 900;
}

.network-services-grid h3 {
  margin: 0 0 10px;
  color: #111827;
  font-size: 20px;
  font-weight: 900;
}

.network-services-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

/* ===================== */
/* RESPONSIVE */
/* ===================== */

@media (max-width: 1024px) {
  .network-expert-layout {
    grid-template-columns: 1fr;
  }

  .network-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .network-slanted-card {
    height: 280px;
  }
}

@media (max-width: 768px) {
  .network-expert-section,
  .network-gallery-section,
  .network-services-section {
    padding: 38px 0;
  }

  .network-expert-section .container,
  .network-gallery-section .container,
  .network-services-section .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .network-expert-content,
  .network-requirements-box,
  .network-services-box {
    padding: 22px;
    border-radius: 14px;
  }

  .network-expert-content,
  .network-services-title,
  .network-gallery-section .section-heading {
    text-align: center;
  }

  .network-expert-content .titulo-carroceria,
  .network-gallery-section .titulo-carroceria {
    justify-content: center;
  }

  .network-expert-content h2,
  .network-services-title h2,
  .network-gallery-section .section-heading h2 {
    font-size: 25px;
    line-height: 1.2;
  }

  .network-expert-content p,
  .network-services-title p,
  .network-gallery-section .section-heading p {
    font-size: 14px;
    line-height: 1.6;
  }

  .network-expert-points {
    grid-template-columns: 1fr;
  }

  .network-expert-points article {
    text-align: left;
  }

  .network-requirements-box {
    text-align: center;
  }

  .network-requirements-box h3 {
    font-size: 22px;
  }

  .network-requirements-box li {
    text-align: left;
    font-size: 14px;
  }

  .network-slanted-gallery {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .network-slanted-card {
    height: 220px;
    transform: none;
    margin: 0;
    border-radius: 14px;
  }

  .network-slanted-card img {
    width: 100%;
    transform: none;
  }

  .network-services-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .network-services-grid article {
    text-align: center;
    padding: 18px;
  }
}

@media (max-width: 480px) {
  .network-expert-section .container,
  .network-gallery-section .container,
  .network-services-section .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .network-expert-content,
  .network-requirements-box,
  .network-services-box {
    padding: 18px;
  }

  .network-slanted-card {
    height: 190px;
  }

  .network-expert-content h2,
  .network-services-title h2,
  .network-gallery-section .section-heading h2 {
    font-size: 22px;
  }
}
/* ===================== */
/* RESPONSIVE */
/* ===================== */

@media (max-width: 1024px) {
  .network-search-grid {
    grid-template-columns: 1fr;
  }

  .network-workshop-form-card,
  .network-search-advantages {
    grid-column: auto;
  }

  .network-info-list--search {
    grid-template-columns: 1fr;
  }

  .network-info-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .network-hero {
    padding: 42px 0 34px;
  }

  .network-hero .container,
  .network-search-section .container,
  .network-info-section .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .network-hero-content {
    text-align: center;
  }

  .network-hero-content .titulo-carroceria {
    justify-content: center;
  }

  .network-hero-content h1 {
    font-size: 30px;
    line-height: 1.1;
  }

  .network-hero-content p {
    font-size: 15px;
    line-height: 1.6;
  }

  .network-search-section,
  .network-info-section {
    padding: 38px 0;
  }

  .network-search-box,
  .network-info-box {
    padding: 22px;
    border-radius: 14px;
  }

  .network-search-header {
    text-align: center;
    margin-bottom: 22px;
  }

  .network-search-header h2,
  .network-info-content h2 {
    font-size: 25px;
    line-height: 1.2;
  }

  .network-search-header p,
  .network-info-content p {
    font-size: 14px;
    line-height: 1.6;
  }

  .network-card {
    min-height: auto;
    padding: 20px;
    text-align: center;
    align-items: center;
  }

  .network-card-header {
    flex-direction: column;
    gap: 10px;
  }

  .network-card h3 {
    font-size: 20px;
  }

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

  .network-card .button-secondary {
    margin: 0 auto;
  }

  .network-workshop-form-card,
  .network-search-advantages {
    padding: 20px;
  }

  .network-workshop-form-card,
  .network-search-advantages-header {
    text-align: center;
  }

  .network-form-row {
    grid-template-columns: 1fr;
  }

  .network-info-list article {
    text-align: left;
    padding: 14px;
  }
}

@media (max-width: 480px) {
  .network-hero .container,
  .network-search-section .container,
  .network-info-section .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .network-hero-content h1 {
    font-size: 26px;
  }

  .network-search-box,
  .network-info-box {
    padding: 18px;
  }

  .network-card,
  .network-workshop-form-card,
  .network-search-advantages {
    padding: 18px;
  }

  .network-card-icon {
    width: 48px;
    height: 48px;
    font-size: 14px;
  }

  .network-info-list article {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
/* ===================== */
/* SEPARACIÓN UNIFICADA ENTRE SECCIONES */
/* ===================== */

.network-hero,
.network-search-section,
.bosch-service-section,
.network-info-section,
.taller-ad-section,
.network-expert-section,
.network-gallery-section,
.network-services-section {
  padding-top: 46px;
  padding-bottom: 46px;
}

/* Evita dobles separaciones visuales por los HR */
.site-main > hr {
  margin: 0 auto;
}

/* Ajuste para que la primera sección no quede demasiado baja */
.network-hero {
  padding-top: 54px;
}

/* Responsive */
@media (max-width: 768px) {
  .network-hero,
  .network-search-section,
  .bosch-service-section,
  .network-info-section,
  .taller-ad-section,
  .network-expert-section,
  .network-gallery-section,
  .network-services-section {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .network-hero {
    padding-top: 38px;
  }
}

@media (max-width: 480px) {
  .network-hero,
  .network-search-section,
  .bosch-service-section,
  .network-info-section,
  .taller-ad-section,
  .network-expert-section,
  .network-gallery-section,
  .network-services-section {
    padding-top: 28px;
    padding-bottom: 28px;
  }
}
/* ===================== */
/* TABLET / PORTÁTIL PEQUEÑO */
/* ===================== */

@media (max-width: 1180px) {

  .network-hero,
  .network-search-section,
  .bosch-service-section,
  .network-info-section,
  .taller-ad-section,
  .network-expert-section,
  .network-gallery-section,
  .network-services-section {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .network-search-section {
    margin-top: 0;
    margin-bottom: 0;
  }

  .network-search-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .network-card {
    min-height: auto;
    padding: 20px;
  }

  .network-card h3 {
    font-size: 19px;
  }

  .network-card p {
    font-size: 14px;
    line-height: 1.55;
  }

  .formulario-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 34px;
  }

  .network-search-advantages img {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }

  .network-expert-content--with-image {
    grid-template-columns: minmax(0, 1fr) 230px;
  }

  .taller-ad-box {
    grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
    gap: 24px;
    padding: 26px;
  }

  .taller-ad-image {
    min-height: 430px;
  }

  .taller-ad-features {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ===================== */
/* TABLET */
/* ===================== */

@media (max-width: 1024px) {

  .network-hero .container,
  .network-search-section .container,
  .bosch-service-section .container,
  .network-info-section .container,
  .taller-ad-section .container,
  .network-expert-section .container,
  .network-gallery-section .container,
  .network-services-section .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .network-search-grid {
    grid-template-columns: 1fr;
  }

  .network-card {
    text-align: left;
    align-items: stretch;
  }

  .network-card-header {
    flex-direction: row;
    align-items: center;
  }

  .network-card .button-secondary {
    margin: 0;
  }

  .formulario-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .network-workshop-form-card,
  .network-search-advantages {
    grid-column: auto;
  }

  .network-info-list--search {
    grid-template-columns: 1fr;
  }

  .network-search-advantages img {
    height: 240px;
  }

  .network-expert-content--with-image {
    grid-template-columns: 1fr;
  }

  .network-expert-side-image {
    min-height: 260px;
  }

  .network-expert-side-image img {
    height: 260px;
    object-fit: cover;
  }

  .network-expert-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .taller-ad-box {
    grid-template-columns: 1fr;
  }

  .taller-ad-image {
    min-height: 320px;
  }

  .taller-ad-content {
    justify-content: flex-start;
  }

  .taller-ad-features {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .bosch-service-hero {
    min-height: 520px;
  }

  .bosch-service-intro-card {
    width: calc(100% - 56px);
  }

  .bosch-service-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bosch-service-stats {
    max-width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ===================== */
/* MÓVIL GRANDE */
/* ===================== */

@media (max-width: 768px) {

  .network-hero,
  .network-search-section,
  .bosch-service-section,
  .network-info-section,
  .taller-ad-section,
  .network-expert-section,
  .network-gallery-section,
  .network-services-section {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .network-hero {
    margin-top: 0;
  }

  .network-hero .container,
  .network-search-section .container,
  .bosch-service-section .container,
  .network-info-section .container,
  .taller-ad-section .container,
  .network-expert-section .container,
  .network-gallery-section .container,
  .network-services-section .container {
    width: min(calc(100% - 28px), var(--container));
  }

  /* HERO */
  .network-hero-content {
    text-align: center;
  }

  .network-hero-content .titulo-carroceria {
    justify-content: center;
  }

  .network-hero-content h1 {
    font-size: 30px;
    line-height: 1.1;
  }

  .network-hero-content p {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.6;
  }

  /* BUSCADOR */
  .network-search-box {
    padding: 22px;
    border-radius: 14px;
  }

  .network-search-header {
    text-align: center;
    margin-bottom: 20px;
  }

  .network-search-header h2 {
    font-size: 25px;
    line-height: 1.2;
  }

  .network-search-header p {
    font-size: 14px;
    line-height: 1.6;
  }

  .network-card {
    padding: 20px;
    text-align: center;
    align-items: center;
  }

  .network-card-header {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 14px;
  }

  .network-card-icon {
    width: 54px;
    height: 54px;
  }

  .network-card h3 {
    font-size: 20px;
  }

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

  .network-card .button-secondary {
    margin: 0 auto;
  }

  /* FORMULARIO */
  .formulario-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 28px;
  }

  .network-workshop-form-card,
  .network-search-advantages {
    padding: 20px;
    border-radius: 14px;
  }

  .network-workshop-form-card,
  .network-search-advantages-header {
    text-align: center;
  }

  .network-workshop-form-card h3,
  .network-search-advantages-header h3 {
    font-size: 21px;
  }

  .network-form-row {
    grid-template-columns: 1fr;
  }

  .network-form-group label {
    text-align: left;
  }

  .network-form-group input,
  .network-form-group textarea,
  .network-form-group select {
    font-size: 14px;
    padding: 11px 12px;
  }

  .network-search-advantages img {
    height: 200px;
    margin-top: 18px;
    object-fit: cover;
  }

  .network-info-list--search article,
  .network-info-list article {
    padding: 14px;
    text-align: left;
  }

  /* EXPERT SERVICE */
  .network-expert-section .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .network-expert-content {
    padding: 22px;
    border-radius: 14px;
  }

  .network-expert-content--with-image {
    padding: 0;
  }

  .network-expert-text {
    padding: 22px;
    text-align: center;
  }

  .network-expert-text > img {
    margin: 0 auto;
    max-width: 180px;
  }

  .network-expert-content .titulo-carroceria,
  .network-gallery-section .titulo-carroceria {
    justify-content: center;
  }

  .franja-destacada__contenido {
    justify-content: center;
    gap: 12px;
  }

  .franja-destacada__texto {
    font-size: 12px;
    letter-spacing: 0.08em;
  }

  .network-expert-content h2,
  .network-services-title h2,
  .network-gallery-section .section-heading h2 {
    font-size: 25px;
    line-height: 1.2;
  }

  .network-expert-content p,
  .network-services-title p,
  .network-gallery-section .section-heading p {
    font-size: 14px;
    line-height: 1.6;
  }

  .network-expert-points {
    grid-template-columns: 1fr;
  }

  .network-expert-points article {
    text-align: left;
  }

  .network-expert-side-image {
    min-height: 220px;
  }

  .network-expert-side-image img {
    height: 220px;
  }

  .expert-service-actions {
    justify-content: center;
    margin-top: 22px;
  }

  /* BOSCH */
  .bosch-service-panel {
    border-radius: 16px;
  }

  .bosch-service-hero {
    min-height: 560px;
  }

  .bosch-service-hero-bg {
    height: 220px;
  }

  .bosch-service-intro-card {
    top: 105px;
    width: calc(100% - 24px);
    padding: 22px 16px 20px;
    border-radius: 16px;
  }

  .section-kicker-bosch {
    gap: 4px;
    margin-bottom: 8px;
  }

  .section-kicker-logo {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .logo-bosch {
    width: 30px;
    height: 30px;
    margin-right: 8px;
  }

  .bosch-service-accent {
    margin: -8px auto 14px;
  }

  .bosch-service-intro-card h2 {
    font-size: 26px;
    line-height: 1.12;
  }

  .bosch-service-intro-card p {
    font-size: 13px;
    line-height: 1.55;
  }

  .bosch-service-body {
    padding: 0 16px 22px;
  }

  .bosch-service-actions {
    gap: 10px;
    margin-top: 16px;
  }

  .bosch-service-button {
    width: 100%;
    min-width: 0;
    min-height: 44px;
    font-size: 13px;
  }

  .bosch-service-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .bosch-service-features article {
    padding: 18px 14px;
  }

  .bosch-service-stats {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 18px;
    padding-top: 18px;
  }

  .bosch-service-stats article {
    justify-content: flex-start;
    padding: 14px 16px;
    border-right: 0;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #fff;
  }

  /* TALLER AD */
  .taller-ad-box {
    padding: 22px;
    border-radius: 14px;
  }

  .taller-ad-image {
    min-height: 240px;
    border-radius: 14px;
  }

  .taller-ad-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .taller-ad-logo {
    max-width: 130px;
  }

  .taller-ad-content {
    text-align: center;
    align-items: center;
  }

  .taller-ad-content h2 {
    font-size: 28px;
    line-height: 1.12;
  }

  .taller-ad-accent {
    margin: 6px auto 20px;
  }

  .taller-ad-content p {
    font-size: 14px;
    line-height: 1.6;
  }

  .taller-ad-features {
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 20px 0 22px;
  }

  .taller-ad-features article {
    padding: 16px;
  }

  .taller-ad-button {
    width: 100%;
    min-width: 0;
    padding: 14px 20px;
    font-size: 13px;
  }

  /* GALERÍA / SERVICIOS SI LOS ACTIVAS */
  .network-slanted-gallery {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .network-slanted-card {
    height: 220px;
    transform: none;
    margin: 0;
    border-radius: 14px;
  }

  .network-slanted-card img {
    width: 100%;
    transform: none;
  }

  .network-services-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .network-services-grid article {
    text-align: center;
    padding: 18px;
  }
}

/* ===================== */
/* MÓVIL PEQUEÑO */
/* ===================== */

@media (max-width: 480px) {

  .network-hero,
  .network-search-section,
  .bosch-service-section,
  .network-info-section,
  .taller-ad-section,
  .network-expert-section,
  .network-gallery-section,
  .network-services-section {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .network-hero .container,
  .network-search-section .container,
  .bosch-service-section .container,
  .network-info-section .container,
  .taller-ad-section .container,
  .network-expert-section .container,
  .network-gallery-section .container,
  .network-services-section .container {
    width: min(calc(100% - 22px), var(--container));
  }

  .network-hero-content h1 {
    font-size: 25px;
  }

  .network-hero-content p {
    font-size: 14px;
  }

  .network-search-box,
  .network-workshop-form-card,
  .network-search-advantages,
  .network-info-box,
  .network-expert-content,
  .taller-ad-box,
  .network-services-box {
    padding: 16px;
  }

  .network-card {
    padding: 16px;
  }

  .network-card-icon {
    width: 48px;
    height: 48px;
  }

  .network-card h3 {
    font-size: 18px;
  }

  .network-card p {
    font-size: 13px;
  }

  .network-workshop-form-card h3,
  .network-search-advantages-header h3 {
    font-size: 19px;
  }

  .network-search-advantages img {
    height: 170px;
  }

  .network-info-list article,
  .network-info-list--search article {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .network-expert-text {
    padding: 18px;
  }

  .franja-destacada__contenido {
    flex-direction: column;
    gap: 8px;
  }

  .franja-destacada__texto {
    font-size: 11px;
    line-height: 1.35;
  }

  .network-expert-points article {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .network-expert-side-image,
  .network-expert-side-image img {
    min-height: 180px;
    height: 180px;
  }

  /* BOSCH móvil pequeño */
  .bosch-service-hero {
    min-height: 600px;
  }

  .bosch-service-hero-bg {
    height: 190px;
  }

  .bosch-service-intro-card {
    top: 78px;
    padding: 20px 14px 18px;
  }

  .bosch-service-intro-card h2 {
    font-size: 22px;
  }

  .bosch-service-intro-card p {
    font-size: 12px;
  }

  .bosch-service-icon {
    width: 52px;
    height: 52px;
  }

  .bosch-service-icon svg {
    width: 27px;
    height: 27px;
  }

  .bosch-service-stats article {
    align-items: flex-start;
  }

  /* TALLER AD móvil pequeño */
  .taller-ad-image {
    min-height: 200px;
  }

  .taller-ad-content h2 {
    font-size: 24px;
  }

  .taller-ad-logo {
    max-width: 115px;
  }

  .taller-ad-icon {
    width: 44px;
    height: 44px;
  }

  .taller-ad-features h3 {
    font-size: 15px;
  }

  .taller-ad-features p {
    font-size: 12px;
  }
}
/* ========================================================= */
/* AJUSTES RESPONSIVE: OCULTAR IMÁGENES AD / EXPERT + BOSCH */
/* ========================================================= */

@media (max-width: 768px) {

  /* Quitar imagen lateral de Expert Service Car */
  .network-expert-side-image {
    display: none;
  }

  .network-expert-content--with-image {
    grid-template-columns: 1fr;
  }

  /* Quitar imagen de Taller AD */
  .taller-ad-image {
    display: none;
  }

  .taller-ad-box {
    grid-template-columns: 1fr;
  }

  /* Bosch: reducir separación entre bloque principal y tarjetas inferiores */
  .bosch-service-hero {
    min-height: 500px;
  }

  .bosch-service-intro-card {
    top: 95px;
  }

  .bosch-service-body {
    margin-top: -408px;
  }
}

@media (max-width: 480px) {

  /* Bosch más compacto en móvil pequeño */
  .bosch-service-hero {
    min-height: 475px;
  }

  .bosch-service-intro-card {
    top: 72px;
  }

  .bosch-service-body {
    margin-top: -26px;
  }
}