/* Estilos de la plantilla page-mercancias-peligrosas.php — externalizado del <style> inline. */
  /* CSS específico de Mercancías Peligrosas */
  /* ── HERO ── */
  .hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    background: #0B1E35;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://transestrella.com/wp-content/uploads/2025/06/camion-cisterna.webp');
    background-size: cover;
    background-position: center;
    opacity: .18;
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(8, 50, 102, .98) 0%, rgba(8, 50, 102, .90) 42%, rgba(11, 30, 53, .6) 100%);
  }

  /* Subtle danger accent stripe */
  .hero-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--ts-red), transparent);
  }

  .hero-line {
    position: absolute;
    top: 0;
    right: 36%;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(245, 166, 35, .1), transparent);
    transform: rotate(10deg);
  }

  .hero-content {
    position: relative;
    z-index: 5;
    max-width: 1240px;
    margin: 0 auto;
    padding: 120px 40px 96px;
    width: 100%;
  }

  .breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
  }

  .breadcrumb a {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4);
    text-decoration: none;
  }

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

  .breadcrumb-sep {
    color: rgba(255, 255, 255, .2);
    font-size: 12px;
  }

  .breadcrumb span {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--ts-gold);
  }

  /* Alert banner */
  .hero-alert {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(192, 57, 43, .12);
    border: 1px solid rgba(192, 57, 43, .35);
    border-radius: 6px;
    padding: 8px 16px;
    margin-bottom: 22px;
  }

  .hero-alert svg {
    width: 16px;
    height: 16px;
    stroke: var(--ts-red-soft);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
  }

  .hero-alert span {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--ts-red-soft);
  }

  .hero h1 {
    font-family: var(--font-display);
    font-size: clamp(44px, 6vw, 80px);
    font-weight: 800;
    line-height: .92;
    text-transform: uppercase;
    color: #FFFFFF;
    letter-spacing: .01em;
    margin-bottom: 22px;
    max-width: 760px;
  }

  .hero h1 em {
    color: var(--ts-gold);
    font-style: normal;
    display: block;
  }

  .hero-desc {
    font-size: 17px;
    line-height: 1.78;
    color: rgba(255, 255, 255, .65);
    max-width: 560px;
    margin-bottom: 38px;
  }

  .hero-btns {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 60px;
  }

  .hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 44px;
    border-top: 1px solid rgba(255, 255, 255, .08);
  }

  .hero-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 100px;
    padding: 7px 16px;
  }

  .hero-pill svg {
    width: 14px;
    height: 14px;
    stroke: var(--ts-gold);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
  }

  .hero-pill span {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .72);
  }

  /* ── INTRO ── */
  .intro {
    padding: 88px 40px;
    background: #FFFFFF;
  }

  .intro-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }

  .intro-text .eyebrow {
    margin-bottom: 16px;
  }

  .intro-text h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.2vw, 42px);
    font-weight: 800;
    text-transform: uppercase;
    color: #333333;
    line-height: 1.0;
    margin-bottom: 18px;
  }

  .intro-text h2 span {
    color: var(--ts-gold);
  }

  .intro-text p {
    font-size: 15px;
    color: #333333;
    line-height: 1.8;
    margin-bottom: 14px;
  }

  .intro-visual {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .intro-img {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--ts-gray-line);
  }

  .intro-img img {
    width: 100%;
    display: block;
    height: 240px;
    object-fit: cover;
  }

  /* Normativa panel */
  .normativa-panel {
    background: #FEF9F0;
    border: 1px solid rgba(245, 166, 35, .25);
    border-left: 4px solid var(--ts-gold);
    border-radius: 10px;
    padding: 22px 24px;
  }

  .normativa-panel-title {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--ts-gold);
    margin-bottom: 12px;
  }

  .normativa-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .normativa-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #333333;
    line-height: 1.5;
  }

  .normativa-dot {
    width: 6px;
    height: 6px;
    background: var(--ts-gold);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 5px;
  }

  /* ── CLASES ONU ── */
  .classes {
    padding: 88px 40px;
    background: var(--ts-gray-bg);
  }

  .classes-inner {
    max-width: 1240px;
    margin: 0 auto;
  }

  .classes-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 52px;
  }

  .classes-header h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 46px);
    font-weight: 800;
    text-transform: uppercase;
    color: #333333;
    line-height: 1.0;
    margin-bottom: 12px;
    margin-top: 12px;
  }

  .classes-header h2 span {
    color: var(--ts-gold);
  }

  .classes-header p {
    font-size: 16px;
    color: #333333;
  }

  .classes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--ts-gray-line);
  }

  .class-card {
    background: #FFFFFF;
    padding: 24px 22px;
    transition: background .2s;
    position: relative;
  }

  .class-card:hover {
    background: #FEF9F0;
  }

  .class-num {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--ts-red-soft);
    margin-bottom: 8px;
  }

  .class-icon-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
  }

  /* Rombo UN hazmat */
  .hazmat-diamond {
    width: 36px;
    height: 36px;
    transform: rotate(45deg);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .hazmat-diamond svg {
    width: 18px;
    height: 18px;
    transform: rotate(-45deg);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .hd-red {
    background: #C0392B;
  }

  .hd-red svg {
    stroke: #fff;
  }

  .hd-orange {
    background: #E67E22;
  }

  .hd-orange svg {
    stroke: #fff;
  }

  .hd-yellow {
    background: #F1C40F;
  }

  .hd-yellow svg {
    stroke: #333;
  }

  .hd-blue {
    background: #2980B9;
  }

  .hd-blue svg {
    stroke: #fff;
  }

  .hd-green {
    background: #27AE60;
  }

  .hd-green svg {
    stroke: #fff;
  }

  .hd-white {
    background: #ECF0F1;
    border: 1px solid #bdc3c7;
  }

  .hd-white svg {
    stroke: #333;
  }

  .hd-purple {
    background: #8E44AD;
  }

  .hd-purple svg {
    stroke: #fff;
  }

  .hd-gray {
    background: #7F8C8D;
  }

  .hd-gray svg {
    stroke: #fff;
  }

  .hd-striped {
    background: repeating-linear-gradient(45deg, #E74C3C, #E74C3C 4px, #FFFFFF 4px, #FFFFFF 8px);
    border: 1px solid #E74C3C;
  }

  .hd-striped svg {
    stroke: #333;
  }

  .class-card h4 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 800;
    text-transform: uppercase;
    color: #333333;
    margin-bottom: 5px;
    line-height: 1.1;
  }

  .class-card p {
    font-size: 12px;
    color: #333333;
    line-height: 1.6;
  }

  .class-examples {
    margin-top: 8px;
    font-size: 11px;
    color: var(--ts-gray);
    font-style: italic;
  }

  /* ── SECTORES / INDUSTRIAS ATENDIDAS ── */
  .sectors {
    padding: 88px 40px;
    background: #FFFFFF;
  }

  .sectors-inner {
    max-width: 1240px;
    margin: 0 auto;
  }

  .sectors-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 52px;
  }

  .sectors-header h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 46px);
    font-weight: 800;
    text-transform: uppercase;
    color: #333333;
    line-height: 1.0;
    margin-bottom: 12px;
    margin-top: 12px;
  }

  .sectors-header h2 span {
    color: var(--ts-gold);
  }

  .sectors-header p {
    font-size: 16px;
    color: #333333;
    line-height: 1.7;
  }

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

  .sector-card {
    background: #FFFFFF;
    border: 1px solid var(--ts-gray-line);
    border-radius: 12px;
    padding: 26px 24px;
    display: flex;
    flex-direction: column;
    transition: border-color .2s, box-shadow .22s, transform .22s;
    position: relative;
    overflow: hidden;
  }

  .sector-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--ts-gold);
    transition: height .25s;
  }

  .sector-card:hover {
    border-color: rgba(245, 166, 35, .35);
    box-shadow: 0 10px 26px rgba(8, 50, 102, .08);
    transform: translateY(-2px);
  }

  .sector-card:hover::before {
    height: 100%;
  }

  .sector-icon {
    width: 52px;
    height: 52px;
    background: rgba(15, 91, 167, .08);
    border: 1px solid rgba(15, 91, 167, .15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
  }

  .sector-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--ts-blue);
    fill: none;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .sector-card h3 {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 800;
    text-transform: uppercase;
    color: #333333;
    line-height: 1.1;
    margin-bottom: 10px;
  }

  .sector-classes {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
  }

  .sector-class-tag {
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--ts-red);
    background: rgba(192, 57, 43, .07);
    border: 1px solid rgba(192, 57, 43, .15);
    border-radius: 4px;
    padding: 3px 8px;
  }

  .sector-card p {
    font-size: 13.5px;
    color: #333333;
    line-height: 1.65;
    margin: 0;
  }

  .sector-card p strong {
    color: var(--ts-blue);
    font-weight: 700;
  }

  @media (max-width: 900px) {
    .sectors-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 600px) {
    .sectors {
      padding: 60px 20px;
    }
    .sectors-grid {
      grid-template-columns: 1fr;
    }
  }

  /* ── PROTOCOLOS ── */
  .protocols {
    padding: 88px 40px;
    background: var(--ts-blue-deep);
    position: relative;
    overflow: hidden;
  }

  .protocols::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .02) 1px, transparent 1px);
    background-size: 52px 52px;
  }

  .protocols-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
  }

  .protocols-text .eyebrow {
    margin-bottom: 16px;
  }

  .protocols-text h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.2vw, 44px);
    font-weight: 800;
    text-transform: uppercase;
    color: #FFFFFF;
    line-height: 1.0;
    margin-bottom: 18px;
  }

  .protocols-text h2 span {
    color: var(--ts-gold);
  }

  .protocols-text p {
    font-size: 15px;
    color: rgba(255, 255, 255, .6);
    line-height: 1.8;
    margin-bottom: 28px;
  }

  .protocol-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .protocol-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 9px;
    transition: border-color .2s;
  }

  .protocol-item:hover {
    border-color: rgba(245, 166, 35, .25);
  }

  .protocol-icon {
    width: 40px;
    height: 40px;
    background: rgba(245, 166, 35, .1);
    border: 1px solid rgba(245, 166, 35, .2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .protocol-icon svg {
    width: 19px;
    height: 19px;
    stroke: var(--ts-gold);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .protocol-body h5 {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 3px;
  }

  .protocol-body p {
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
    line-height: 1.55;
  }

  /* Certs panel */
  .protocols-certs {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .cert-big {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    padding: 28px 24px;
    text-align: center;
  }

  .cert-big-icon {
    width: 64px;
    height: 64px;
    background: #EEF3FA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
  }

  .cert-big-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--ts-blue);
    fill: none;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .cert-big h4 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 6px;
  }

  .cert-big p {
    font-size: 13px;
    color: rgba(255, 255, 255, .48);
    line-height: 1.6;
  }

  .certs-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .cert-small {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 10px;
    padding: 20px 18px;
    text-align: center;
  }

  .cert-small-num {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    color: var(--ts-gold);
    line-height: 1;
    margin-bottom: 4px;
  }

  .cert-small-label {
    font-size: 12px;
    color: rgba(255, 255, 255, .42);
    line-height: 1.4;
  }

  /* ── FLOTA ESPECIALIZADA ── */
  .fleet {
    padding: 88px 40px;
    background: #FFFFFF;
  }

  .fleet-inner {
    max-width: 1240px;
    margin: 0 auto;
  }

  .fleet-header {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 20px;
    margin-bottom: 48px;
  }

  .fleet-header-left h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    text-transform: uppercase;
    color: #333333;
    line-height: 1.0;
    margin-bottom: 10px;
    margin-top: 12px;
  }

  .fleet-header-left h2 span {
    color: var(--ts-gold);
  }

  .fleet-header-left p {
    font-size: 16px;
    color: #333333;
    max-width: 420px;
  }

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

  .fleet-card {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--ts-gray-line);
    display: flex;
    transition: box-shadow .22s;
  }

  .fleet-card:hover {
    box-shadow: 0 12px 28px rgba(8, 50, 102, .08);
  }

  .fleet-card-img {
    width: 200px;
    flex-shrink: 0;
    overflow: hidden;
  }

  .fleet-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s;
  }

  .fleet-card:hover .fleet-card-img img {
    transform: scale(1.05);
  }

  .fleet-card-body {
    padding: 24px 22px;
    flex: 1;
  }

  .fleet-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    background: rgba(192, 57, 43, .08);
    color: var(--ts-red);
    border-radius: 3px;
    padding: 3px 8px;
    margin-bottom: 8px;
  }

  .fleet-card-body h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    color: #333333;
    margin-bottom: 6px;
    line-height: 1.1;
  }

  .fleet-card-body p {
    font-size: 13px;
    color: #333333;
    line-height: 1.6;
    margin-bottom: 12px;
  }

  .fleet-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }

  .fleet-spec {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--ts-blue);
    background: #EEF3FA;
    border-radius: 4px;
    padding: 4px 8px;
  }

  /* ── PROCESO OPERATIVO ── */
  .process {
    padding: 88px 40px;
    background: var(--ts-gray-bg);
  }

  .process-inner {
    max-width: 1240px;
    margin: 0 auto;
  }

  .process-header {
    text-align: center;
    max-width: 520px;
    margin: 0 auto 52px;
  }

  .process-header h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    text-transform: uppercase;
    color: #333333;
    line-height: 1.0;
    margin-bottom: 12px;
    margin-top: 12px;
  }

  .process-header h2 span {
    color: var(--ts-gold);
  }

  .process-header p {
    font-size: 16px;
    color: #333333;
  }

  .process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--ts-gray-line);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--ts-gray-line);
  }

  .process-step {
    background: #FFFFFF;
    padding: 28px 24px;
    position: relative;
  }

  .step-num {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    color: var(--ts-blue);
    opacity: .07;
    position: absolute;
    top: 12px;
    right: 16px;
    line-height: 1;
  }

  .step-icon {
    width: 46px;
    height: 46px;
    background: rgba(245, 166, 35, .1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    border: 1px solid rgba(245, 166, 35, .18);
  }

  .step-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--ts-gold);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .process-step h4 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 800;
    text-transform: uppercase;
    color: #333333;
    margin-bottom: 7px;
    line-height: 1.1;
  }

  .process-step p {
    font-size: 13px;
    color: #333333;
    line-height: 1.65;
  }

  /* ── BUENAS PRÁCTICAS AMBIENTALES ── */
  .enviro {
    padding: 88px 40px;
    background: #FFFFFF;
  }

  .enviro-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
  }

  .enviro-text .eyebrow {
    margin-bottom: 16px;
  }

  .enviro-text h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.2vw, 42px);
    font-weight: 800;
    text-transform: uppercase;
    color: #333333;
    line-height: 1.0;
    margin-bottom: 18px;
  }

  .enviro-text h2 span {
    color: var(--ts-gold);
  }

  .enviro-text p {
    font-size: 15px;
    color: #333333;
    line-height: 1.8;
    margin-bottom: 14px;
  }

  .enviro-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 4px;
  }

  .enviro-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }

  .enviro-item-icon {
    width: 36px;
    height: 36px;
    background: rgba(39, 174, 96, .08);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(39, 174, 96, .15);
  }

  .enviro-item-icon svg {
    width: 16px;
    height: 16px;
    stroke: #27AE60;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .enviro-item-body h5 {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    color: #333333;
    margin-bottom: 2px;
  }

  .enviro-item-body p {
    font-size: 13px;
    color: #333333;
    line-height: 1.5;
  }

  .enviro-visual {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .enviro-img {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--ts-gray-line);
  }

  .enviro-img img {
    width: 100%;
    display: block;
    height: 240px;
    object-fit: cover;
  }

  .enviro-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .enviro-metric {
    background: var(--ts-gray-bg);
    border-radius: 10px;
    padding: 20px 16px;
    border: 1px solid var(--ts-gray-line);
    text-align: center;
  }

  .enviro-metric-num {
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 800;
    color: var(--ts-blue);
    line-height: 1;
    margin-bottom: 4px;
  }

  .enviro-metric-label {
    font-size: 12px;
    color: #333333;
    line-height: 1.4;
  }

  /* ── ALERTA NORMATIVA ── */
  .compliance {
    padding: 60px 40px;
    background: #FDF2F2;
    border-top: 3px solid rgba(192, 57, 43, .15);
    border-bottom: 3px solid rgba(192, 57, 43, .15);
  }

  .compliance-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
  }

  .compliance-icon {
    width: 72px;
    height: 72px;
    background: rgba(192, 57, 43, .1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .compliance-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--ts-red);
    fill: none;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .compliance-body h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--ts-red);
    margin-bottom: 8px;
  }

  .compliance-body p {
    font-size: 15px;
    color: #333333;
    line-height: 1.7;
    max-width: 780px;
  }

  .compliance-body strong {
    color: var(--ts-red);
  }

  /* ── OTROS SERVICIOS ── */
  .other-services {
    padding: 72px 40px;
    background: var(--ts-gray-bg);
  }

  .other-services-inner {
    max-width: 1240px;
    margin: 0 auto;
  }

  .other-header {
    text-align: center;
    margin-bottom: 36px;
  }

  .other-header h3 {
    font-family: var(--font-display);
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 800;
    text-transform: uppercase;
    color: #333333;
    margin-top: 10px;
  }

  .other-header p {
    font-size: 15px;
    color: var(--ts-gray);
    margin-top: 6px;
  }

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

  .other-card {
    border: 1px solid var(--ts-gray-line);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s;
    text-decoration: none;
    background: #FFFFFF;
  }

  .other-card:hover {
    border-color: var(--ts-gold);
    box-shadow: 0 6px 20px rgba(245, 166, 35, .08);
  }

  .other-card-img {
    height: 140px;
    overflow: hidden;
  }

  .other-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s;
  }

  .other-card:hover .other-card-img img {
    transform: scale(1.05);
  }

  .other-card-body {
    padding: 16px 18px;
  }

  .other-tag {
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--ts-gold);
    margin-bottom: 5px;
  }

  .other-card-body h4 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 800;
    text-transform: uppercase;
    color: #333333;
    line-height: 1.1;
    margin-bottom: 5px;
  }

  .other-card-body p {
    font-size: 13px;
    color: var(--ts-gray);
  }

  .other-link {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--ts-blue);
    margin-top: 10px;
  }

  /* ── CTA ── */
  .cta {
    background: var(--ts-blue-deep);
    padding: 88px 40px;
    position: relative;
    overflow: hidden;
  }

  .cta::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -8%;
    width: 55%;
    height: 180%;
    background: radial-gradient(ellipse, rgba(15, 91, 167, .2) 0%, transparent 68%);
  }

  .cta::after {
    content: '';
    position: absolute;
    bottom: -25%;
    right: -4%;
    width: 45%;
    height: 140%;
    background: radial-gradient(ellipse, rgba(245, 166, 35, .08) 0%, transparent 68%);
  }

  .cta-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
    position: relative;
    z-index: 2;
  }

  .cta-text h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 46px);
    font-weight: 800;
    text-transform: uppercase;
    color: #FFFFFF;
    line-height: 1.0;
    margin-bottom: 14px;
    margin-top: 12px;
  }

  .cta-text h2 span {
    color: var(--ts-gold);
  }

  .cta-text p {
    font-size: 16px;
    color: rgba(255, 255, 255, .58);
    line-height: 1.75;
    margin-bottom: 32px;
  }

  .cta-contacts {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .cta-contact {
    display: flex;
    align-items: center;
    gap: 13px;
  }

  .cta-c-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .cta-c-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--ts-gold);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .cta-c-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--ts-gray);
    margin-bottom: 1px;
  }

  .cta-c-val {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    color: #FFFFFF;
  }

  .form-box {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 14px;
    padding: 32px;
  }

  .form-box h3 {
    font-family: var(--font-display);
    font-size: 21px;
    font-weight: 800;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 6px;
  }

  .form-box-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, .45);
    margin-bottom: 20px;
    line-height: 1.55;
  }

  .form-notice {
    background: rgba(245, 166, 35, .09);
    border: 1px solid rgba(245, 166, 35, .22);
    border-radius: 7px;
    padding: 12px 14px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }

  .form-notice-icon {
    width: 20px;
    height: 20px;
    stroke: var(--ts-gold);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
    margin-top: 1px;
  }

  .form-notice-title {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    color: var(--ts-gold);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 2px;
  }

  .form-notice-text {
    font-size: 12px;
    color: rgba(255, 255, 255, .48);
    line-height: 1.5;
  }

  .forminator-placeholder {
    background: rgba(255, 255, 255, .04);
    border: 2px dashed rgba(255, 255, 255, .15);
    border-radius: 10px;
    padding: 36px 24px;
    text-align: center;
  }

  .forminator-placeholder svg {
    width: 36px;
    height: 36px;
    stroke: rgba(255, 255, 255, .25);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    margin: 0 auto 12px;
    display: block;
  }

  .forminator-placeholder p {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .3);
  }

  .forminator-placeholder span {
    font-size: 13px;
    color: rgba(255, 255, 255, .2);
    display: block;
    margin-top: 4px;
  }

  .form-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
    padding: 12px;
    background: rgba(37, 211, 102, .09);
    border: 1px solid rgba(37, 211, 102, .2);
    border-radius: 8px;
    text-decoration: none;
  }

  .form-wa svg {
    width: 18px;
    height: 18px;
    fill: #25D366;
    flex-shrink: 0;
  }

  .form-wa-text {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: #25D366;
    letter-spacing: .04em;
  }
