<style>
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --amarillo: #E8A020;
    --rojo:     #bf1e2e;
    --negro:    #1a1a1a;
    --gris:     #f5f3ef;
    --texto:    #333;
    --borde:    #e2ddd6;
  }

  body {
    font-family: 'Barlow', sans-serif;
    background: #fff;
    color: var(--texto);
  }

  /* ── HERO BANNER ── */
  .mp-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2e2e2e 60%, #3a2a10 100%);
    padding: 56px 24px 52px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .mp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(232,160,32,0.04) 40px,
      rgba(232,160,32,0.04) 41px
    );
  }

  .mp-hero-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amarillo);
    margin-bottom: 12px;
    position: relative;
  }

  .mp-hero h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(38px, 6vw, 64px);
    font-weight: 800;
    color: #fff;
    line-height: 1;
    position: relative;
  }

  .mp-hero h1 span {
    color: var(--amarillo);
  }

  .mp-hero-sub {
    margin-top: 16px;
    font-size: 15px;
    color: rgba(255,255,255,0.55);
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    position: relative;
  }

  /* Línea decorativa amarilla */
  .mp-hero-line {
    width: 48px;
    height: 3px;
    background: var(--amarillo);
    border-radius: 2px;
    margin: 20px auto 0;
    position: relative;
  }

  /* ── SECCIÓN SERVICIOS ── */
  .mp-servicios {
    max-width: 1100px;
    margin: 0 auto;
    padding: 64px 24px 80px;
  }

  /* Grid de tarjetas */
  .mp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  /* Tarjeta individual */
  .mp-card {
    background: #fff;
    border: 1px solid var(--borde);
    border-radius: 10px;
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    cursor: default;
  }

  .mp-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px;
    height: 100%;
    background: var(--amarillo);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
  }

  .mp-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.09);
    border-color: transparent;
  }

  .mp-card:hover::before {
    transform: scaleY(1);
  }

  /* Número decorativo */
  .mp-card-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: rgba(232,160,32,0.12);
    line-height: 1;
    margin-bottom: 8px;
    transition: color 0.25s;
  }

  .mp-card:hover .mp-card-num {
    color: rgba(232,160,32,0.22);
  }

  /* Ícono */
  .mp-card-icon {
    width: 40px;
    height: 40px;
    background: var(--gris);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    transition: background 0.25s;
  }

  .mp-card:hover .mp-card-icon {
    background: var(--amarillo);
  }

  .mp-card-icon svg {
    width: 20px; height: 20px;
    stroke: var(--amarillo);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.25s;
  }

  .mp-card:hover .mp-card-icon svg {
    stroke: #fff;
  }

  /* Título del servicio */
  .mp-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--negro);
    line-height: 1.25;
    margin-bottom: 10px;
  }

  /* Línea separadora */
  .mp-card-sep {
    width: 28px;
    height: 2px;
    background: var(--amarillo);
    border-radius: 2px;
    margin-bottom: 12px;
    transition: width 0.3s ease;
  }

  .mp-card:hover .mp-card-sep {
    width: 44px;
  }

  /* Descripción */
  .mp-card p {
    font-size: 13.5px;
    line-height: 1.7;
    color: #555;
  }

  /* Specs numéricos (ahora en fondo claro) */
  .mp-specs {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--borde);
  }

  .mp-spec {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .mp-spec-val {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--amarillo);
    line-height: 1;
  }

  .mp-spec-label {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  /* ── FOTO BANNER entre hero y grid ── */
  .mp-banner-foto {
    width: 100%;
    max-height: 340px;
    overflow: hidden;
    display: block;
    line-height: 0;
  }

  .mp-banner-foto img {
    width: 100%;
    max-height: 340px;
    object-fit: cover;
    object-position: center 40%;
    display: block;
  }

  /* ── CTA FINAL ── */
  .mp-cta-section {
    background: var(--gris);
    border-top: 1px solid var(--borde);
    padding: 48px 24px;
    text-align: center;
  }

  .mp-cta-section h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--negro);
    margin-bottom: 8px;
  }

  .mp-cta-section p {
    font-size: 15px;
    color: #666;
    margin-bottom: 24px;
  }

  .mp-btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--amarillo);
    color: #fff !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 14px 28px;
    border-radius: 7px;
    transition: background 0.2s, transform 0.15s;
  }

  .mp-btn-cta:hover {
    background: var(--rojo) !important;
    color: #fff !important;
    transform: translateY(-2px);
  }

  .mp-btn-cta svg {
    width: 16px; height: 16px;
    stroke: #fff; fill: none;
    stroke-width: 2.5;
    stroke-linecap: round; stroke-linejoin: round;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .mp-grid { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 600px) {
    .mp-grid { grid-template-columns: 1fr; }
    .mp-specs { gap: 16px; }
  }

  /* ── ANIMACIÓN DE ENTRADA ── */
  .mp-card {
    opacity: 0;
    transform: translateY(24px);
    animation: mpFadeUp 0.5s ease forwards;
  }

  .mp-card:nth-child(1) { animation-delay: 0.05s; }
  .mp-card:nth-child(2) { animation-delay: 0.12s; }
  .mp-card:nth-child(3) { animation-delay: 0.19s; }
  .mp-card:nth-child(4) { animation-delay: 0.26s; }
  .mp-card:nth-child(5) { animation-delay: 0.33s; }
  .mp-card:nth-child(6) { animation-delay: 0.40s; }

  @keyframes mpFadeUp {
    to { opacity: 1; transform: translateY(0); }
  }
</style>