:root {
    --primary: #4A3B69;
    --primary-light: #5D4D7A;
    --accent: #8C77B6;
    --bg-light: #F4F0FA;
    --bg-white: #FFFFFF;
    --text-dark: #1A1523;
    --text-muted: #635873;
    --border: #E5DDF5;
}







.hero-timeline {
  width: 100%;
  max-width: 900px;
  margin: 2rem auto 0;
  padding: 0 1rem;
}

.hero-timeline img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .hero-timeline {
    max-width: 100%;
    padding: 0 0.5rem;
    margin-top: 1.5rem;
  }
}

















* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--bg-white);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

::selection {
    background: var(--accent);
    color: white;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
        background-color: #8a2be2c2;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.navbar-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-box {
    width: 45px;
    height: 45px;
    background: #e2d7f8;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 900;
    font-size: 0.75rem;
    transition: all 0.3s ease;
}

.navbar:not(.scrolled) .logo-box {
    background: white;
    color: var(--primary);
}

.logo-text {
    font-weight: 700;
    font-size: 0.875rem;
    color: #ffffff;
    transition: color 0.3s ease;
}

.navbar.scrolled .logo-text {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    color: #ffffff;
    transition: color 0.3s ease;
}

.navbar.scrolled .nav-links a {
    color: var(--primary);
}

.nav-links a:hover {
    color:   #1d0631c2;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.navbar.scrolled .menu-toggle {
    color: var(--primary);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: white;
    z-index: 1001;
    padding: 2rem;
    transition: right 0.3s ease;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}

.mobile-menu nav a {
    display: block;
    padding: 1rem 0;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid var(--border);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.overlay.open {
    opacity: 1;
    pointer-events: auto;
}





















/* Hero */
/* .hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-image: url("../img/Principal2.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
} */

.hero{
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* VIDEO */
.hero-video{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

/* .hero-video iframe{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120vw;
    height: 120vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
} */

.hero-video iframe{
    position: absolute;
    top: 50%;
    left: 50%;

    /* Mantiene el video cubriendo todo */
    width: 177.78vh; /* 16:9 */
    height: 56.25vw;

    min-width: 100%;
    min-height: 100%;

    transform: translate(-50%, -50%);

    pointer-events: none;
}

/* Tablets */
@media (max-width: 768px){
    .hero-video iframe{
        width: 220vw;
        height: 220vh;
    }
}

/* Móviles */
@media (max-width: 480px){
    .hero-video iframe{
        width: 300vw;
        height: 300vh;
    }
}

















/* OVERLAY */
.hero-overlay{
    position: absolute;
    inset: 0;
    background: rgba(68, 68, 68, 0.64);
    z-index: 1;
}

/* CONTENIDO */
.hero-content{
    position: relative;
    z-index: 2;
}

/* Aqui se cambio el max-width */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 1500px;
}

.hero-logo {
    width: 120px;
    height: 120px;

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

    margin: 0 auto 5rem;
}

.hero-logo span {
    color: white;
    font-weight: 900;
    font-size: 2rem;
}

.hero-logo img {
    max-width: 320px;
    height: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .hero-logo img {
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .hero-logo img {
        max-width: 220px;
    }
}



.hero h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 750;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

/* .hero h1 span {
    color: #8106d1;
} */

.hero p {
    font-size: 1.125rem;
    color: #7311a4;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    font-weight: 500;
}

.hero-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;

    max-width: 900px;
    margin: 0 auto;
}

.hero-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;

    padding: 1rem 1.25rem;

    border-radius: 12px;

    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;

    transition: all 0.3s ease;
}

.hero-btn.primary {
    background: white;
    color: var(--primary);
}

.hero-btn.primary:hover {
    background: var(--bg-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.hero-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;

    border: 1px solid rgba(255, 255, 255, 0.2);

    backdrop-filter: blur(10px);
}

.hero-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.hero-btn i {
    font-size: 1.1rem;
}

.hero-btn .arrow {
    margin-left: auto;
    opacity: 0.6;
}










































.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator div {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-indicator div::after {
    content: '';
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(10px);
        opacity: 0.5;
    }
}

/* Sections */
section {
    padding: 5rem 2rem;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 1rem;
    text-align: center;
}

.section-title {
    font-size: clamp(1.75rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.section-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-align: justify;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 500;
}




/* Section: Qué es */
.section-white {
    background: var(--bg-white);
}

.section-lilac {
    background: var(--bg-light);
}

.section-dark {
    /* background: var(--primary); */
    background: #362062;
}

.section-dark .section-label {
    color: var(--accent);
}

.section-dark .section-title {
    color: white;
}

.section-dark .section-text {
    color: rgba(255, 255, 255, 0.8);
}



/* Section: Requisitos */
.requisitos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.requisito-card {
    background: white;
    border: 5px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.requisito-card:hover {
    transform: translateY(-18px);
    box-shadow: 0 20px 40px rgba(74, 59, 105, 0.815);
}

.requisito-number {
    position: absolute;
    top: -20px;
    right: -10px;
    font-size: 7rem;
    font-weight: 900;
    color: rgba(74, 59, 105, 0.06);
    line-height: 1;
}

.requisito-badge {
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.requisito-card p {
    font-weight: 600;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
}

/* Section: Periodo (Dark) */
.periodo-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.periodo-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgb(212 186 230 / 72%);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.periodo-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.03);
}

.periodo-icon {
    width: 64px;
    height: 64px;
    background: rgb(95 50 186);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    color: white;
}

.periodo-card h3 {
    color: #5f32ba;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.periodo-card p {
    color: rgb(1 0 0 / 70%);
    font-weight: 500;
}

/* Section: Más tiempo */
.tiempo-blocks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.tiempo-block {
    background: var(--primary);
    border-radius: 16px;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.tiempo-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.tiempo-block:hover::before {
    left: 100%;
}

.tiempo-block:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(74, 59, 105, 0.3);
}

.tiempo-block-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.tiempo-block h3 {
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.tiempo-block p {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    font-size: 0.9rem;
}

.tiempo-block .arrow {
    color: rgba(255, 255, 255, 0.5);
    margin-top: 1rem;
    transition: transform 0.3s ease;
}

.tiempo-block:hover .arrow {
    transform: translateX(5px);
}

/* Section: AC */
.ac-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.ac-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.ac-card h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.ac-card h3 i {
    color: var(--accent);
}

.ac-card p {
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.7;
}

/* Section: Documentación AC */
.doc-list {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 2rem;
    border-left: 4px solid var(--primary);
}

.doc-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1rem 1.25rem;
    border-radius: 10px;
    margin-bottom: 0.75rem;
}

.doc-item:last-child {
    margin-bottom: 0;
}

.doc-item i {
    color: var(--primary);
    font-size: 1.1rem;
}

.doc-item span {
    font-weight: 600;
    color: var(--text-dark);
}

/* Section: Fórmula y Planilla */
.formula-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.formula-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(74, 59, 105, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s ease;
}

.formula-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(74, 59, 105, 0.15);
}

.formula-icon {
    width: 56px;
    height: 56px;
    background: var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.formula-card h3 {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.formula-card p {
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.6;
}

/* Section: Firmas - Accordion */
.accordion {
    margin-top: 2rem;
}

.accordion-item {
    background: var(--bg-light);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.accordion-item.active {
    border-color: var(--primary);
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: background 0.3s ease;
}

.accordion-header:hover {
    background: rgba(74, 59, 105, 0.05);
}

.accordion-header span {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary);
}

.accordion-header i {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-content-inner {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.7;
}

/* Section: Tiempo Firmas */
.timeline-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.timeline-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    padding-left: 2.5rem;
}

.timeline-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.timeline-step {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(74, 59, 105, 0.08);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.timeline-card h3 {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.timeline-card p {
    color: var(--text-muted);
    font-weight: 500;
}

/* Section: Migrante */
.migrante-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.migrante-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.migrante-text .section-label,
.migrante-text .section-title,
.migrante-text .section-text {
    text-align: left;
}

.migrante-highlight {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg-light);
    padding: 1rem 1.25rem;
    border-radius: 12px;
    margin-top: 1.5rem;
}

.migrante-highlight i {
    color: var(--primary);
    font-size: 1.25rem;
}

.migrante-highlight span {
    font-weight: 600;
    color: var(--primary);
}

/* Section: FAQ */
.faq-link {
    display: block;
    text-align: center;
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 900;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.4s ease;
}

.faq-link:hover {
    color: var(--accent);
    transform: scale(1.02);
}

.faq-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* Footer */
/* 
footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 2rem;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo-box {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 900;
    font-size: 0.7rem;
}

.footer-logo span {
    font-weight: 700;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
} */

























/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {

    .ac-grid,
    .migrante-grid {
        grid-template-columns: 1fr;
    }

    .periodo-cards,
    .tiempo-blocks,
    .formula-cards,
    .timeline-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero-buttons {
        grid-template-columns: 1fr;
    }

    .periodo-cards,
    .tiempo-blocks,
    .formula-cards,
    .timeline-cards,
    .requisitos-grid {
        grid-template-columns: 1fr;
    }

    section {
        padding: 3rem 1.25rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}




















.contenedorMich {
    display: flex;
    justify-content: center;
    align-items: center;
}

.imagenprueba {
    width: clamp(250px, 80%, 540px);
    height: auto;
    object-fit: contain;
    transition: transform 0.4s ease, filter 0.4s ease;
    display: block;
    backface-visibility: hidden;
    will-change: transform;

}

/* efecto flotante */
.imagenprueba:hover {
    transform: scale(1.05) translateY(-10px);
    filter: drop-shadow(0 15px 10px rgba(92, 67, 117, 0.5));
    image-rendering: -webkit-optimize-contrast;
}

.logo-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-box img {
    height: 40px;
    /* ajusta según tamaño que quieras */
    width: auto;
}

.logo-box span {
    font-weight: bold;
    font-size: 20px;
}




























































































































































































/* ══════════════════════════════════════
   MAPA METROBUS — CONEXIONES
══════════════════════════════════════ */
#convocatoria {
    position: relative;

    overflow: hidden;
}

.conv-grid {

    position: relative;

    /* max-width:1500px; */

    margin: auto;

    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: clamp(16px, 2vw, 50px);

    padding: 120px 80px 160px;

    z-index: 2;
}




/* ══════════════════════════════════════
   LINEA PRINCIPAL
══════════════════════════════════════ */

.conv-grid::before {

    content: '';

    position: absolute;

    left: 8%;

    right: 8%;

    top: 47%;

    height: 14px;

    border-radius: 100px;

    background:
        linear-gradient(90deg,
            #57b6ff,
            #b85cff,
            #ff58d0);

    box-shadow:
        0 0 25px rgba(184, 92, 255, .8);

    z-index: 0;
}

/* ══════════════════════════════════════
   EFECTO "USTED ESTÁ AQUÍ"
══════════════════════════════════════ */

.conv-item.active-station {

    transform: scale(1.08);

    border: 2px solid #d995ff;

    box-shadow:
        0 0 45px rgba(203, 120, 255, .55),
        0 30px 60px rgba(0, 0, 0, .35);
}

.conv-item.active-station::after {

    width: 20px;

    height: 20px;

    border: 8px solid #ffffff;

    background: #c14dff;

    left: -24px;

    box-shadow:
        0 0 0 12px rgba(193, 77, 255, .2),
        0 0 35px rgba(193, 77, 255, .95);

    animation: youAreHere 1.8s infinite;
}

@keyframes youAreHere {

    0% {
        transform: translateY(-50%) scale(1);
    }

    50% {
        transform: translateY(-50%) scale(1.25);
    }

    100% {
        transform: translateY(-50%) scale(1);
    }
}

/* ══════════════════════════════════════
   LETRERO
══════════════════════════════════════ */

.you-here-label {

    position: absolute;

    top: -22px;
    left: 40px;

    background: linear-gradient(135deg, #d14fff, #8f39ff);

    color: white;

    padding: 10px 18px;

    border-radius: 16px;

    font-size: .85rem;
    font-weight: 800;

    letter-spacing: 1px;

    white-space: nowrap;

    box-shadow:
        0 10px 25px rgba(193, 77, 255, .45);

    animation: labelFloat 2s ease-in-out infinite;
}

.you-here-label::before {

    content: '';

    position: absolute;

    left: -10px;
    top: 50%;

    transform: translateY(-50%);

    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid #b84dff;
}

@keyframes labelFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* ══════════════════════════════════════
   CONEXIONES TIPO METROBUS
══════════════════════════════════════ */

.metro-connection {

    position: absolute;

    width: 160px;
    height: 14px;

    background: #57b6ff;

    border-radius: 100px;

    z-index: 0;

    box-shadow:
        0 0 20px rgba(87, 182, 255, .5);
}

/* RAMAS */

.branch-purple {

    background: #b85cff;
}

.branch-pink {

    background: #ff58d0;
}

.branch-green {

    background: #56ff84;
}

/* ══════════════════════════════════════
   ESTACIONES
══════════════════════════════════════ */

.conv-item {

    position: relative;

    z-index: 2;

    background: rgba(252, 251, 255, 0.85);

    border: 1px solid rgba(201, 154, 255, .2);

    border-radius: 30px;

    padding: 45px 30px;

    min-height: 360px;

    backdrop-filter: blur(20px);

    transition: .45s ease;

    overflow: visible;

    background-image: url("../img/R_MAPA3.png");

    background-size: contain;

    background-position: top;

    background-repeat: no-repeat;





}





.conv-item:hover {

    transform:
        translateY(-12px);

    box-shadow:
        0 25px 50px rgba(0, 0, 0, .35),
        0 0 35px rgba(184, 92, 255, .22);
}



.conv-item::after {

    content: '';

    position: absolute;

    width: 15px;

    height: 15px;

    border-radius: 50%;

    background: white;

    border: 7px solid #b85cff;

    left: -18px;
    top: 50%;

    transform: translateY(-50%);

    z-index: 5;

    box-shadow:
        0 0 20px rgba(184, 92, 255, .8);
}




/* ══════════════════════════════════════
   ICONO TRANSPORTE
══════════════════════════════════════ */

.station-icon {

    width: 85px;

    height: 85px;

    border-radius: 22px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: linear-gradient(to bottom right, rgba(42, 1, 73, 0.91), rgba(87, 38, 143, 0.65));

    border: 1px solid rgba(255, 255, 255, .08);

    margin-bottom: 25px;

    box-shadow:
        0 0 20px rgba(184, 92, 255, .18);
}

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

@media(max-width:768px){

    .station-icon{

        width: 70px;

        height: 70px;

        border-radius: 18px;

        margin-bottom: 20px;

        box-shadow:
            0 0 16px rgba(184, 92, 255, .16);
    }

}


/* =========================
   SMALL MOBILE
========================= */

@media(max-width:480px){

    .station-icon{

        width: 40px;

        height: 40px;

        border-radius: 16px;

        margin-bottom: 16px;

        box-shadow:
            0 0 12px rgba(184, 92, 255, .14);
    }

}

.station-icon svg {

    width: 42px;

    height: 42px;

    fill: white;
}

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

@media(max-width:768px){

    .station-icon svg{

        width: 34px;

        height: 34px;
    }

}


/* =========================
   SMALL MOBILE
========================= */

@media(max-width:480px){

    .station-icon svg{

        width: 28px;

        height: 28px;
    }

}


/* ══════════════════════════════════════
   MINI MAPA SUPERIOR
══════════════════════════════════════ */

.mini-metro-map {

    position: absolute;

    top: 20px;
    right: 40px;

    width: 260px;
    height: 160px;

    opacity: .18;

    pointer-events: none;
}

.mini-line {

    position: absolute;

    height: 10px;

    border-radius: 100px;
}

.line-blue {

    width: 170px;

    background: #57b6ff;

    top: 50px;
    left: 0;

    transform: rotate(35deg);
}

.line-purple {

    width: 140px;

    background: #b85cff;

    top: 80px;
    left: 80px;

    transform: rotate(-20deg);
}

.line-green {

    width: 120px;

    background: #56ff84;

    top: 20px;
    left: 90px;

    transform: rotate(90deg);
}

/* ══════════════════════════════════════
   METROBUS ANIMADO
══════════════════════════════════════ */

.metrobus {

    position: absolute;

    width: 160px;
    height: 70px;

    bottom: 30px;

    left: -220px;

    z-index: 5;

    pointer-events: none;

    animation: metrobusMove 16s linear infinite;
}

@keyframes metrobusMove {

    0% {
        left: -220px;
    }

    100% {
        left: 110%;
    }
}

.metrobus-body {

    position: absolute;

    width: 160px;
    height: 55px;

    background:
        linear-gradient(135deg,
            #ff3f65,
            #c61f45);

    border-radius: 18px;

    top: 0;

    box-shadow:
        0 0 25px rgba(255, 63, 101, .45);
}

.metrobus-window {

    position: absolute;

    width: 100px;
    height: 22px;

    background: #c9ecff;

    top: 12px;
    left: 25px;

    border-radius: 8px;
}

.metrobus-wheel {

    position: absolute;

    width: 24px;

    height: 24px;

    background: #1e1e1e;

    border: 5px solid #8e8e8e;

    border-radius: 50%;

    bottom: -10px;

    animation: wheelSpin 1s linear infinite;
}

.metrobus-wheel.left {
    left: 18px;
}

.metrobus-wheel.right {
    right: 18px;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */

@media(max-width:1200px) {

    .conv-grid {

        grid-template-columns: 1fr 1fr;
    }

    .conv-grid::before {
        display: none;
    }
}

@media(max-width:768px) {

    .conv-grid {

        grid-template-columns: 1fr;

        padding: 60px 55px 120px;
    }

    .mini-metro-map {
        display: none;
    }

    .conv-item {
     min-height: 326px;
    }
}










































































/* =========================
   CONTENEDOR
========================= */

.metro-ui {
    width: 100%;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

/* =========================
   MAPA
========================= */

.metro-map {
    position: relative;
    width: 100%;
    max-width: 1800px;
    margin: auto;
    height: 800px;
}

/* =========================
   SVG
========================= */

.metro-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

/* =========================
   LÍNEAS
========================= */

.line {
    fill: none;
    stroke-width: 14;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 18 22;

    animation:
        metroMove 20s linear infinite;
}

.blue {
    stroke: #179195;
}

.yellow {
    stroke: #c2985c;
}

.green {
    stroke: #e55187;
}

.red {
    stroke: #f56bff;
}

.gray {
    stroke: #d8d8d8;
}

@keyframes metroMove {
    from {
        stroke-dashoffset: 0;
    }

    to {
        stroke-dashoffset: -400;
    }
}

/* =========================
   ESTACIONES
========================= */

.station {
    fill: white;
    stroke: #6b6b6b;
    stroke-width: 4;

    animation: pulseStation 3s infinite;
}

.station.active {
    fill: white;
    stroke: #b95cff;
    stroke-width: 7;

    filter: drop-shadow(0 0 18px #b95cff);

    animation:
        pulseActive 2s infinite;
}

@keyframes pulseStation {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }
}

@keyframes pulseActive {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 10px #b95cff);
    }

    50% {
        transform: scale(1.15);
        filter: drop-shadow(0 0 30px #b95cff);
    }

    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 10px #b95cff);
    }
}

/* =========================
   METRO
========================= */

.metro-train {
    position: absolute;
    right: 180px;
    bottom: 140px;
    animation:
        trainArrival 3s ease-out forwards;
}

/* Movimiento llegada */

@keyframes trainArrival {

    0% {
        transform:
            translateX(500px) translateY(80px) scale(.7);

        opacity: 0;
    }

    100% {
        transform:
            translateX(0) translateY(0) scale(1);

        opacity: 1;
    }
}

/* Glow */

.train-glow {
    position: absolute;
    width: 260px;
    height: 120px;
    background: radial-gradient(circle,
            rgba(183, 92, 255, .5),
            transparent 70%);

    filter: blur(25px);

    left: -40px;
    top: 10px;

    animation: glowPulse 2s infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: .8;
    }

    50% {
        transform: scale(1.15);
        opacity: 1;
    }
}

/* Frente */

.train-front {

    width: 260px;

    height: 150px;

    background:
        linear-gradient(145deg,
            #ffffff,
            #e7d6ff);

    border-radius:
        50px 50px 30px 30px;

    position: relative;

    box-shadow:
        0 20px 40px rgba(0, 0, 0, .15);

    overflow: hidden;
}

/* Ventana */

.train-window {

    width: 120px;
    height: 70px;

    background:
        linear-gradient(180deg,
            #2b0d4b,
            #150025);

    border-radius: 25px;

    position: absolute;

    top: 26px;
    left: 50%;

    transform: translateX(-50%);
}

/* Luces */

.train-lights {
    position: absolute;
    bottom: 22px;
    width: 100%;
    display: flex;
    justify-content: space-around;
    padding: 0 40px;
}

.train-lights span {

    width: 18px;
    height: 18px;

    border-radius: 50%;

    background: white;

    box-shadow:
        0 0 15px white,
        0 0 30px white;

    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .4;
    }
}

/* Nombre */

.train-name {

    position: absolute;

    top: 12px;
    left: 50%;

    transform: translateX(-50%);

    background: #2b0d4b;

    color: #ffe95c;

    font-size: .75rem;
    font-weight: 800;

    padding: 6px 14px;

    border-radius: 100px;

    letter-spacing: 1px;
}

/* =========================
   PANEL
========================= */

.metro-panel {

    position: absolute;

    left: 120px;

    top: 120px;

    /* width: 720px; */
    width: 1120px;

    padding: 40px;

    border-radius: 35px;

    border: 1px solid rgba(255, 255, 255, .15);

    backdrop-filter: blur(20px);

    background:
        rgba(255, 255, 255, .05);
}

/* Badge */

.metro-badge {

    display: inline-block;

    padding: 12px 20px;

    border-radius: 100px;

    background:
        linear-gradient(90deg,
            #a855f7,
            #d946ef);

    color: white;

    font-weight: 700;

    margin-bottom: 25px;
}

/* Texto */

.metro-panel h2 {

    font-size: 2.5rem;

    line-height: 1.1;

    margin-bottom: 25px;

    color: #1d1d1d;
}

.metro-panel h2 span {

    color: #b95cff;
}

.metro-panel p {

    font-size: 1.5rem;
    line-height: 2;
    font-weight: 500;
    color: #000000;
}

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

@media(max-width:1000px) {

    .metro-map {
        height: auto;
    }

    .metro-panel {

        position: relative;

        left: auto;

        top: auto;

        width: 100%;

        margin-bottom: 60px;
    }

    .metro-train {

        position: relative;

        right: auto;

        bottom: auto;

        margin: auto;

        margin-top: 40px;
    }

}


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

@media(max-width:1200px) {

    .metro-map {
        height: 700px;
    }

    .metro-panel {
        width: 60%;
        left: 60px;
        top: 80px;
    }

    .metro-panel h2 {
        font-size: 2.4rem;
    }

    .metro-train {
        right: 80px;
        bottom: 80px;
        transform: scale(.9);
    }

}

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

@media(max-width:992px) {

    .metro-ui {
        padding: 60px 15px;
    }

    .metro-map {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    /* MAPA */

    .metro-svg {
        height: auto;
        min-height: 420px;
    }

    /* PANEL */

    .metro-panel {

        position: relative;

        left: auto;

        top: auto;

        width: 100%;

        padding: 35px 28px;

        border-radius: 28px;

        order: 1;
    }

    .metro-panel h2 {
        font-size: 2.2rem;
    }

    .metro-panel p {
        font-size: 1rem;

        line-height: 1.8;
    }

    /* METRO */

    .metro-train {

        position: relative;

        right: auto;
        bottom: auto;

        margin: auto;

        transform: scale(.85);

        order: 2;
    }

}

/* =========================
   MOBILE
========================= */

@media(max-width:768px) {

    .metro-ui {
        padding: 40px 12px;
    }

    .metro-map {
        gap: 30px;
    }

    /* SVG */

    .metro-svg {
        min-height: 280px;
    }

    .line {
        stroke-width: 10;
    }

    .station {
        stroke-width: 3;
    }

    .station.active {
        stroke-width: 5;
    }

    /* PANEL */

    .metro-panel {

        padding: 28px 22px;

        border-radius: 24px;
    }

    .metro-badge {

        padding: 10px 16px;

        font-size: .85rem;
    }

    .metro-panel h2 {

        font-size: 1.8rem;

        margin-bottom: 18px;
    }

    .metro-panel p {

        font-size: .95rem;

        line-height: 1.7;
    }

    /* TRAIN */

    .metro-train {

        transform: scale(.68);
        margin-top: -50px;
        margin-bottom: 50px;
    }

    .train-front {

        width: 220px;
        height: 99px;
    }

    .train-window {

        width: 100px;
        height: 60px;
    }

}


@media(max-width:768px) {

    .metro-map {
        position: relative;
        overflow: hidden;
        min-height: 500px;
    }

    /* SVG COMO FONDO */

    .metro-svg {

        position: absolute;

        inset: 0;

        width: 100%;
        height: 100%;

        min-height: unset;

        z-index: 1;

        opacity: .35;

        pointer-events: none;

        transform: scale(1.2);
    }

    /* PANEL ENCIMA */

    .metro-panel {

        position: relative;

        z-index: 5;

        backdrop-filter: blur(4px);

        background: rgb(246 226 255 / 87%);
    }

    /* TREN ENCIMA DEL SVG */

    .metro-train {

        position: relative;

        z-index: 4;
    }

}

/* =========================
   SMALL MOBILE
========================= */

@media(max-width:480px) {

    .metro-svg {
        min-height: 220px;
    }

    .metro-panel {

        padding: 22px 18px;
    }

    .metro-panel h2 {

        font-size: 1.5em;
        line-height: 1.2;
    }

    .metro-panel p {

        font-size: .9rem;
        line-height: 1.6;
    }

    .metro-badge {

        font-size: .75rem;

        padding: 8px 14px;
    }

    .metro-train {

        transform: scale(.55);

        margin-top: -50px;

    }

}

@media(max-width:480px) {

    .metro-map {
        min-height: 420px;
    }

    .metro-svg {

        opacity: .25;

        transform: scale(1.35);

        top: -20px;
    }

}


































































































































































































































/* ══════════════════════════════════════  SECCION DE LO QUE DEBERIA SER EL PARQUE   ══════════════════════════════════════ */


/* =========================
   GENERAL
========================= */

#metro-network-cdmx {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 50px 20px;
    font-family: 'Montserrat', sans-serif;
}

/* =========================
   FONDO ANIMADO
========================= */

.metro-animated-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.metro-animated-bg span {
    position: absolute;
    width: 350px;
    height: 350px;
    border: 1px solid rgba(132, 94, 247, 0.10);
    border-radius: 50%;
    animation: floatMove 18s linear infinite;
}

.metro-animated-bg span:nth-child(1) {
    top: -100px;
    left: -100px;
}

.metro-animated-bg span:nth-child(2) {
    top: 20%;
    right: -120px;
    animation-duration: 22s;
}

.metro-animated-bg span:nth-child(3) {
    bottom: -150px;
    left: 20%;
    animation-duration: 30s;
}

.metro-animated-bg span:nth-child(4) {
    top: 45%;
    left: 55%;
    animation-duration: 26s;
}

.metro-animated-bg span:nth-child(5) {
    bottom: -120px;
    right: 10%;
    animation-duration: 18s;
}

@keyframes floatMove {

    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-40px) rotate(180deg);
    }

    100% {
        transform: translateY(0px) rotate(360deg);
    }

}

/* =========================
   WRAPPER
========================= */

.metro-main-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: auto;
}

/* =========================
   HEADER
========================= */

.metro-top-header {
    text-align: center;
    max-width: 900px;
    margin: auto auto 10px;
}

.metro-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 50px;
    margin-bottom: 25px;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, .45);
    backdrop-filter: blur(10px);
}

.metro-top-header h2,
.metro-contact-header h2 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #1d1d1d;
    font-weight: 800;
}

.metro-top-header p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

/* =========================
   MAPA METRO
========================= */

.metro-map-system {
    position: relative;
    height: 560px;
    /* margin-bottom:140px; */
    margin-bottom: 100px;
}

.metro-svg-network {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.metro-line {
    fill: none;
    stroke-width: 10;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 18;
    animation: metroFlow 8s linear infinite;
}

.metro-blue {
    stroke: #0094ff;
}

.metro-orange {
    stroke: #ff7a00;
}

.metro-purple {
    stroke: #8c52ff;
}

@keyframes metroFlow {

    from {
        stroke-dashoffset: 0;
    }

    to {
        stroke-dashoffset: -220;
    }

}

/* =========================
   ESTACIONES
========================= */

.metro-station {
    position: absolute;
}

.station-1 {
    top: 40px;
    left: 58%;
}

.station-2 {
    /* top:250px;
    left:78%; */
    top: 360px;
    left: 55%;
}

.metro-node {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    position: absolute;
    top: 82px;
    left: -55px;
    border: 6px solid white;
    animation: pulseNode 2s infinite;
    cursor: pointer;
    z-index: 3;
}

.metro-node.blue {
    background: #0094ff;
}

.metro-node.orange {
    /* background:#ff7a00; */
    background: #8c52ff;
}

@keyframes pulseNode {

    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, .12);
    }

    70% {
        transform: scale(1.08);
        box-shadow: 0 0 0 18px rgba(0, 0, 0, 0);
    }

    100% {
        transform: scale(1);
    }

}

/* =========================
   CARDS INFO
========================= */

.metro-info-card {
    /* width:340px; */
    padding: 35px;
    border-radius: 30px;
    background: rgba(255, 255, 255, .68);
    border: 1px solid rgba(255, 255, 255, .6);
    backdrop-filter: blur(18px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, .08);
    transition: .35s ease;
}

.metro-info-card:hover {
    transform: translateY(-10px);
}

.metro-info-card span {
    display: inline-block;
    margin-bottom: 15px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #666;
}

.metro-info-card h3 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #1d1d1d;
}

.metro-info-card p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.metro-info-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 50px;
    background: #1d1d1d;
    color: white;
    text-decoration: none;
    font-weight: 700;
    transition: .3s ease;
}

.metro-info-card a:hover {
    transform: scale(1.05);
}

/* =========================
   CONTACTO
========================= */

.metro-contact-network {
    position: relative;
    padding: 80px 0 20px;
}

.metro-contact-header {
    text-align: center;
    margin-bottom: 90px;
}

.metro-contact-header p {
    max-width: 720px;
    margin: auto;
    line-height: 1.8;
    color: #666;
    font-size: 18px;
}

.metro-contact-item:hover {
    transform: translateY(-12px);
}




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

@media(max-width:1100px) {

    .metro-map-system {
        height: auto;
        display: -webkit-inline-flex;
        flex-direction: column;
        gap: 40px;
        margin-bottom: 0px;
    }

    .metro-svg-network {
        display: none;
    }

    .metro-station {
        position: relative;
        top: auto !important;
        left: auto !important;
    }

    .metro-node {
        display: none;
    }

    .metro-info-card {
        width: 100%;
    }

}

@media(max-width:768px) {

    #metro-network-cdmx {
        padding: 45px 20px;
    }

    .metro-top-header h2,
    .metro-contact-header h2 {
        font-size: 2.3rem;
        margin-top: 2rem;
    }

    .metro-top-header p,
    .metro-contact-header p {
        font-size: 16px;
    }

    .metro-contact-item {
        width: 80%;
        min-height: auto;
    }

    .metro-info-card {
        padding: 28px;
    }

}
















































































































































































































































#home {
    clip-path: url(#cache);
}

#red {
    fill: none;
    opacity: 0.15;
    stroke: #CE1B5F;
    stroke-width: 12;
    stroke-miterlimit: 10;
    animation: show 4s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

#blue {
    fill: none;
    opacity: 0.15;
    stroke: #06A1C4;
    stroke-width: 12;
    stroke-miterlimit: 10;
    animation: show 4s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

#light-blue {
    fill: none;
    opacity: 0.15;
    stroke: #06A1C4;
    stroke-width: 6;
    stroke-miterlimit: 10;
    stroke-dasharray: 200;
    stroke-dashoffset: 800;
    animation: draw 4s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

@keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes show {
    0% {
        opacity: 0.15;
    }

    50% {
        opacity: 0.2;
    }

    100% {
        opacity: 0.15;
    }
}













































































































































































.headerMich {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 70px;
    position: relative;
    z-index: 3;
}

.headerMich h1 {
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1;
    margin: 25px 0;
    color: rgb(95, 0, 150);
    font-weight: 900;
    text-align: center;
    letter-spacing: -2px;
}

.headerMich h1 span {
    color: rgb(95, 0, 150);
}

.headerMich p {
    max-width: 850px;
    margin: auto;
    color: #000000;
    font-size: 18px;
    line-height: 1.8;
    text-align: center;
}

.system-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    border-radius: 50px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.dot-pulse {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #00ff99;
    animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {

    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.6);
        opacity: .5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }

}




:root {
    --bg: #0d0d14;
    --bg2: #13131e;
    --bg3: #1a1a2a;
    --card: #1e1e2e;
    --card2: #252536;
    --border: rgba(255, 255, 255, 0.08);
    --border2: rgba(255, 255, 255, 0.15);
    --text: #f0eeff;
    --text2: #260852;
    --text3: #5c5880;

    --l1: #E4004D;
    /* Rosa/Línea 1 */
    --l2: #004A97;
    /* Azul/Línea 2 */
    --l3: #6AB04C;
    /* Verde/Línea 3 */
    --l4: #9B59B6;
    /* Morado/Línea 4 */
    --l5: #F5A623;
    /* Amarillo/Línea 5 */
    --l6: #E44D26;
    /* Naranja/Línea 6 */
    --l7: #1ABC9C;
    /* Teal/Línea 7 */
    --l8: #E74C3C;
    /* Rojo/Línea 8 */
    --l9: #8E44AD;
    /* Violeta/Línea 9 */
}


.page {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 2.5rem 1.25rem 4rem;
}

 @media (max-width: 480px) {
    .page{
        padding: 1rem 0 0;
    }
    .headerMich{
        text-align: left;
    }
    .headerMich h1 {
        text-align: left;
        font-weight: 700;
    }
 }


.system-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(228, 0, 77, 0.12);
    border: 1px solid rgba(228, 0, 77, 0.3);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--l1);
    text-transform: uppercase;
    margin-bottom: 14px;
}

.system-tag .dot-pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--l1);
    animation: pulse-dot 1.4s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.7);
    }
}

/* ── Map decoration ── */
.map-strip {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 2rem;
    overflow-x: auto;
    padding: 0 4px 8px;
    scrollbar-width: none;
}

.map-strip::-webkit-scrollbar {
    display: none;
}

.map-line {
    flex: 1;
    height: 5px;
    min-width: 30px;
    border-radius: 3px;
    position: relative;
}

.map-stop {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    /* background: var(--bg); */
    border: 3px solid currentColor;
    flex-shrink: 0;
    transition: transform 0.2s;
}

/* ── Train ── */
.train-section {
    margin-bottom: 1.5rem;
}

.section-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text3);
    text-transform: uppercase;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.train-track {
    position: relative;
    padding: 20px 0 12px;
}

.track-rail {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 4px;
    background: linear-gradient(90deg,
            var(--l1) 0%, var(--l2) 12%, var(--l3) 24%, var(--l4) 36%,
            var(--l5) 48%, var(--l6) 60%, var(--l7) 72%, var(--l8) 84%, var(--l9) 100%);
    opacity: 0.3;
    border-radius: 2px;
    z-index: 0;
}

.track-ties {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(50% - 8px);
    height: 20px;
    background-image: repeating-linear-gradient(90deg,
            transparent 0px,
            transparent 18px,
            rgba(255, 255, 255, 0.04) 18px,
            rgba(255, 255, 255, 0.04) 22px);
    z-index: 0;
}

.wagons-row {
    display: flex;
    align-items: center;
    gap: 0;
    overflow-x: auto;
    position: relative;
    z-index: 1;
    padding: 31px 25px;
    scrollbar-width: none;
}

.wagons-row::-webkit-scrollbar {
    display: none;
}

.wagon {
    flex-shrink: 0;
    width: 120px;
    height: 100px;
    border-radius: 8px 8px 5px 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    border: 2px solid transparent;
    transition: transform 0.22s cubic-bezier(.34, 1.56, .64, 1), border-color 0.2s, box-shadow 0.2s;
    background: #f5e1cb;
    gap: 2px;
}

.wagon::before {
    /* content: ''; */
    position: absolute;
    bottom: -8px;
    left: 15%;
    right: 15%;
    height: 4px;
    background: inherit;
    border-radius: 0 0 3px 3px;
    filter: brightness(0.6);
}

/* Window slits */
.wagon::after {
    /* content: ''; */
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    height: 14px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.wagon:hover {
    transform: translateY(-8px) scale(1.04);
}

.wagon.active {
    transform: translateY(-10px) scale(1.06);
}

.wagon-num {
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    margin-top: 12px;
}

.wagon-label {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-align: center;
    padding: 0 5px;
    line-height: 1.2;
    opacity: 0.85;
}

/* Coupler between wagons */
.coupler {
    flex-shrink: 0;
    width: 10px;
    height: 10px;
    background: var(--card2);
    border: 1.5px solid var(--border2);
    border-radius: 2px;
    z-index: 2;
}

/* Wheels */
.wagon-wheels {
    position: absolute;
    bottom: -24px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-around;
    padding: 0 16px;
}

.wheel {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--bg3);
    border: 2px solid var(--border2);
}

/* ── Station dots ── */
.stations-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    row-gap: 8px;
}

.station-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.station-circle {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 3px solid var(--bg);
    transition: transform 0.2s, box-shadow 0.2s;
}

.station-item:hover .station-circle,
.station-item.active .station-circle {
    transform: scale(1.5);
    box-shadow: 0 0 10px currentColor;
}

.station-line {
    width: 25px;
    height: 3px;
    background: rgba(137, 2, 227, 0.91);
    flex-shrink: 0;
}

.station-name {
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--text3);
    text-align: center;
    max-width: 65px;
    line-height: 1.2;
    transition: color 0.2s;
}

.station-item.active .station-name {
    color: var(--text2);
}

/* ── Detail card ── */
.detail-card {
    /* background: var(--card); */
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    transition: border-color 0.3s;
}

.detail-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.detail-card-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, currentColor 0%, transparent 60%);
    opacity: 0.06;
    pointer-events: none;
}

.req-icon-wrap {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.req-icon-wrap i {
    font-size: 22px;
}

.req-meta {
    flex: 1;
}

.req-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    padding: 2px 10px;
    border-radius: 10px;
    margin-bottom: 5px;
}

.req-title {
    font-size: 19px;
    font-weight: 700;
    color: #4e4593;
    line-height: 1.2;
}

.req-badge {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 28px;
    font-weight: 600;
    opacity: 0.15;
    line-height: 1;
    flex-shrink: 0;
}

.detail-card-body {
    padding: 18px 20px;
    font-size: 15px;
    color: var(--text2);
    line-height: 1.7;
}

.detail-card-body a {
    color: #7eb8f7;
    text-decoration: underline;
    text-decoration-style: dotted;
}

.detail-card-body a:hover {
    color: #a8d1ff;
}

/* ── Navigation ── */
.nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .nav-row{

        justify-content: center;
    }

}

.nav-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 10px;
    border: 1px solid rgba(139, 0, 221, 0.25);
    background: rgba(193, 155, 218, 0.42);
    color: #000000;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Rajdhani', sans-serif;
    cursor: pointer;
    transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.1s;
    letter-spacing: 0.5px;
}

.nav-btn:hover:not(:disabled) {
    background: #9500ff;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.25);
    transform: scale(1.02);
}

.nav-btn:active:not(:disabled) {
    transform: scale(0.97);
}

.nav-btn:disabled {
    opacity: 0.25;
    cursor: default;
}

.progress-info {
    text-align: center;
}

.progress-fraction {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    color: var(--text3);
    display: block;
    margin-bottom: 6px;
}

.progress-bar-wrap {
    width: 120px;
    height: 3px;
    background: rgba(237, 191, 252, 0.61);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(.4, 0, .2, 1), background 0.4s;
}

/* ── Toast notification ── */
.toast {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-80px);
    background: var(--card2);
    border: 1px solid var(--border2);
    border-radius: 24px;
    padding: 10px 22px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.5px;
    z-index: 1000;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(.34, 1.56, .64, 1), opacity 0.4s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
}

/* ── Footer ── */
.footer-strip {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-line {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text3);
    text-transform: uppercase;
}

.footer-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

/* ── Wagon entrance animation ── */
@keyframes wagon-enter {
    from {
        transform: translateY(0) scale(1);
        opacity: 0.4;
    }

    to {
        transform: translateY(-10px) scale(1.06);
        opacity: 1;
    }
}

@keyframes shake-wagon {

    0%,
    100% {
        transform: translateY(-10px) scale(1.06) rotate(0deg);
    }

    25% {
        transform: translateY(-10px) scale(1.06) rotate(-2deg);
    }

    75% {
        transform: translateY(-10px) scale(1.06) rotate(2deg);
    }
}

.wagon.active {
    animation: wagon-enter 0.35s cubic-bezier(.34, 1.56, .64, 1) forwards;
}

.wagon.shaking {
    animation: shake-wagon 0.35s ease;
}

@keyframes card-slide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.detail-card {
    animation: card-slide 0.3s ease forwards;
}

/* ── Responsive ── */
@media (max-width: 520px) {
    .wagon {
        width: 64px;
        height: 52px;
    }

    .wagon-num {
        font-size: 18px;
    }

    .wagon-label {
        font-size: 8px;
    }

    .coupler {
        width: 7px;
        height: 7px;
    }

    .wheel {
        width: 10px;
        height: 10px;
    }

    .detail-card-header {
        gap: 10px;
        padding: 12px 14px;
    }

    .detail-card-body {
        padding: 14px;
        font-size: 14px;
    }

    .req-title {
        font-size: 16px;
    }

    .req-badge {
        font-size: 22px;
    }

    .nav-btn {
        padding: 8px 14px;
        font-size: 13px;
    }
}





















































.requirements-section {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: #fff;
    padding: 80px 0;
}

/* BORDE SUPERIOR */
.requirements-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;

    background: linear-gradient(90deg,
            #00d9ff,
            #7b2fff,
            #ff2fa0,
            #00d9ff);

    background-size: 300% 100%;

    animation: borderFlow 8s linear infinite;

    box-shadow:
        0 0 12px rgba(0, 217, 255, .7),
        0 0 24px rgba(123, 47, 255, .6);

    z-index: 20;
}

/* BORDE INFERIOR */
.requirements-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;

    background: linear-gradient(90deg,
            #ff2fa0,
            #7b2fff,
            #00d9ff,
            #ff2fa0);

    background-size: 300% 100%;

    animation: borderFlow 8s linear infinite reverse;

    box-shadow:
        0 0 12px rgba(255, 47, 160, .7),
        0 0 24px rgba(123, 47, 255, .6);

    z-index: 20;
}

/* animación */
@keyframes borderFlow {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 300% 50%;
    }
}

.metro-section {
    position: relative;
    overflow: hidden;
    isolation: isolate;


    

}

/* BORDE SUPERIOR */
.metro-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;

    background: linear-gradient(90deg,
            #00d9ff,
            #7b2fff,
            #ff2fa0,
            #00d9ff);

    background-size: 300% 100%;

    animation: borderFlow 8s linear infinite;

    box-shadow:
        0 0 12px rgba(0, 217, 255, .7),
        0 0 24px rgba(123, 47, 255, .6);

    z-index: 20;
}

/* BORDE INFERIOR */
.metro-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;

    background: linear-gradient(90deg,
            #ff2fa0,
            #7b2fff,
            #00d9ff,
            #ff2fa0);

    background-size: 300% 100%;

    animation: borderFlow 8s linear infinite reverse;

    box-shadow:
        0 0 12px rgba(255, 47, 160, .7),
        0 0 24px rgba(123, 47, 255, .6);

    z-index: 20;
}

/* ANIMACIÓN */
@keyframes borderFlow {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 300% 50%;
    }
}




































@media (prefers-color-scheme: light) {
    :root {
        --bg: #f8fafc;
        --card: #ffffff;
        --text: #0f172a;
    }
}

/* TARJETAS */
.movie-card {
    position: relative;
    height: 380px;
    border-radius: 15px;
    overflow: hidden;
    border: none;
    cursor: pointer;
    padding: 0;
    background: var(--card);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}










































/* capa fondo */
.bike-background {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

/* rutas */
.bike-paths {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.bike-paths path {
    fill: none;
    stroke: rgba(68, 11, 128, 0.029);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 14 12;

    animation: bikeRoad 14s linear infinite;
}

@keyframes bikeRoad {
    from {
        stroke-dashoffset: 0;
    }

    to {
        stroke-dashoffset: -300;
    }
}

/* bicis */
.bike {
    position: absolute;
    font-size: 2rem;
    opacity: .5;

    filter:
        drop-shadow(0 0 10px rgba(255, 255, 255, .25));

    will-change: transform;
}

/* rutas animadas */
.bike1 {
    offset-path: path("M100 700 C300 500 500 500 700 700");
    animation: ride1 12s linear infinite;
}

.bike2 {
    offset-path: path("M150 200 C350 350 650 50 1000 250");
    animation: ride2 14s linear infinite reverse;
}

.bike3 {
    offset-path: path("M50 400 C250 200 450 650 700 500 S1050 300 1150 650");
    animation: ride3 16s linear infinite;
}

.bike4 {
    offset-path: path("M200 100 C500 250 700 200 1100 500");
    animation: ride4 18s linear infinite reverse;
}

@keyframes ride1 {
    from {
        offset-distance: 0%;
    }

    to {
        offset-distance: 100%;
    }
}

@keyframes ride2 {
    from {
        offset-distance: 0%;
    }

    to {
        offset-distance: 100%;
    }
}

@keyframes ride3 {
    from {
        offset-distance: 0%;
    }

    to {
        offset-distance: 100%;
    }
}

@keyframes ride4 {
    from {
        offset-distance: 0%;
    }

    to {
        offset-distance: 100%;
    }
}



















































































































































/* =========================
   CARDS LIMPIAS CON IMAGEN
========================= */

.metro-contact-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.metro-contact-item{
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    min-height: 420px;
    padding: 40px 35px;
    display: flex;
    align-items: flex-end;

    /* IMAGEN */
    background-image: url('../img/CartoonSubway.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    isolation: isolate;
}

/* OVERLAY */
.metro-contact-item::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.55);
    z-index: 1;
}

/* CONTENIDO */
.metro-wagon-content{
    position: relative;
    z-index: 2;
    color: #fff;
}






.metro-wagon-content h3{
    font-size: 2rem;
    margin-bottom: 15px;
    color: #fff;
}

.metro-wagon-content p,
.metro-wagon-content span,
.metro-wagon-content a{
    color: rgba(255,255,255,.92);
    line-height: 1.6;
    font-size: 1rem;
}

.metro-wagon-content a{
    text-decoration: underline;
}

/* ICONO */
.metro-contact-icon{
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.metro-contact-icon i{
    font-size: 1.8rem;
    color: #fff;
}

/* IMÁGENES */

/* CARD 1 */
.metro-wagon-blue{
    background-image: url('../img/CartoonSubway.png') !important;
}

/* CARD 2 */
.metro-wagon-purple{
    background-image: url('../img/CartoonSubway.png') !important;
}

/* CARD 3 */
.metro-wagon-orange{
    background-image: url('../img/CartoonSubway.png') !important;
}



/* RESPONSIVE */
@media(max-width: 991px){

    .metro-contact-grid{
        grid-template-columns: 1fr;
    }

}













































































/* ── Variables ── */
:root {
    --ms-orange: #E05A1C;
    --ms-orange-dim: rgba(224, 90, 28, 0.12);
    --ms-blue: #1E6DB5;
    --ms-blue-dim: rgba(30, 109, 181, 0.1);
    --ms-green: #2C9E5A;
    --ms-green-dim: rgba(44, 158, 90, 0.1);
    --ms-ink: #1A1A2E;
    --ms-ink-mid: #2E2E48;
    --ms-ink-light: #484868;
    --ms-text: rgb(95, 0, 150);
    --ms-text-dim: #141313;
    --ms-border: rgba(174, 139, 68, 0.437);
}

/* ── Root wrapper ── */
.mapa-root {
    /* background-color: #004A97; */
    position: relative;
    color: var(--ms-text);
    overflow: hidden;
}

/* ── SVG de fondo continuo ── */
/* .mapa-svg-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
} */

.ml {
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ml-orange {
    stroke: var(--ms-orange);
    opacity: 0.13;
}

.ml-blue {
    stroke: var(--ms-blue);
    opacity: 0.10;
}

.ml-green {
    stroke: var(--ms-green);
    opacity: 0.10;
}

.ms {
    stroke: var(--ms-ink);
    stroke-width: 2;
}

.ms-orange {
    fill: var(--ms-orange);
    opacity: 0.3;
}

.ms-blue {
    fill: var(--ms-blue);
    opacity: 0.25;
}

.ms-green {
    fill: var(--ms-green);
    opacity: 0.25;
}

.ms-transfer {
    fill: none;
    stroke: rgba(240, 236, 228, 0.2);
    stroke-width: 2;
}

/* ── Layout ── */
.ms-section {
    position: relative;
    z-index: 1;
    padding: 72px 24px;
}

.ms-container {
    max-width: 1080px;
    margin: 0 auto;
}

/* ── Divisor ── */
.ms-divider {
    position: relative;
    z-index: 1;
    height: 30px;
    padding: 0 24px;
}

.ms-divider svg {
    width: 100%;
    height: 100%;
}

/* ── Cabecera de sección ── */
.ms-section-head {
    margin-bottom: 48px;
}

.ms-label-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ms-text-dim);
    margin-bottom: 14px;
}

.ms-chip-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.ms-section-title {
    font-family: var(--ms-font-display);
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    letter-spacing: 0.04em;
    color: var(--ms-text);
    margin: 0 0 18px;
    line-height: 1.05;
    max-width: 800px;
}

.ms-section-text {
    font-size: 15px;
    color: var(--ms-text-dim);
    line-height: 1.75;
    max-width: 680px;
}

.ms-section-text strong {
    color: var(--ms-text);
}

/* ═══ §1 PASOS ═══ */
.pasos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.pasos-card {
    position: relative;
    border: 1px solid var(--ms-border);
    border-radius: 14px;
    padding: 32px 28px 28px;
    background: rgba(255, 255, 255, 0.03);
    overflow: hidden;
    transition: border-color 0.3s, background 0.3s;
}

.pasos-card:hover {
    border-color: rgba(224, 90, 28, 0.35);
    background: rgba(224, 90, 28, 0.04);
}

.pasos-card--accent {
    border-color: rgba(224, 90, 28, 0.25);
}

.pasos-card-icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: var(--ms-orange-dim);
    border: 1px solid rgba(224, 90, 28, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ms-orange);
    font-size: 18px;
    margin-bottom: 18px;
}

.pasos-card h3 {
    font-weight: 600;
    font-size: 15px;
    color: #211e1e;
    margin: 0 0 12px;
    line-height: 1.35;
}

.pasos-card p {
    font-size: 14px;
    color: #141313;
    line-height: 1.7;
    margin: 0;
}

.pasos-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pasos-list li {
    font-size: 14px;
    color: #141313;
    line-height: 1.55;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.pasos-list li .fas {
    color: var(--ms-orange);
    font-size: 11px;
    margin-top: 4px;
    flex-shrink: 0;
}

.pasos-card-number {
    position: absolute;
    bottom: 16px;
    right: 20px;
    font-family: var(--ms-font-display);
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.04);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

/* ═══ §2 FÓRMULA ═══ */
.formula-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.formula-node {
    border: 1px solid var(--ms-border);
    border-radius: 14px;
    padding: 26px;
    background: rgba(255, 255, 255, 0.025);
    transition: border-color 0.3s, transform 0.3s;
}

.formula-node:hover {
    transform: translateY(-4px);
}

.formula-node--mid {
    border-color: rgba(30, 109, 181, 0.2);
}

.formula-node--large {
    border-color: rgba(44, 158, 90, 0.2);
}

.formula-node-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.formula-node-icon {
    font-size: 22px;
}

.formula-node-badge {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 4px 12px;
    border-radius: 99px;
    border: 1px solid;
    text-transform: uppercase;
}

.formula-node h3 {
    font-family: var(--ms-font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--ms-text);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 14px;
}

.formula-demarcaciones {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.formula-demarcaciones li {
    font-size: 13px;
    color: var(--ms-text-dim);
    padding-left: 14px;
    position: relative;
}

.formula-demarcaciones li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: rgba(240, 236, 228, 0.3);
    font-size: 10px;
    top: 1px;
}

.formula-split {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--ms-border);
    border-radius: 10px;
    overflow: hidden;
}

.formula-split-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 8px;
    gap: 3px;
}

.formula-split-sep {
    width: 1px;
    height: 44px;
    background: var(--ms-border);
    flex-shrink: 0;
}

.formula-num {
    font-family: var(--ms-font-display);
    font-size: 2rem;
    color: var(--ms-text);
    line-height: 1;
}

.formula-label {
    font-size: 10px;
    color: var(--ms-text-dim);
    text-align: center;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.paridad-block {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    border: 1px solid rgba(224, 90, 28, 0.2);
    border-radius: 14px;
    padding: 24px 28px;
    background: rgba(224, 90, 28, 0.04);
}

.paridad-icon {
    font-size: 26px;
    color: var(--ms-orange);
    flex-shrink: 0;
    margin-top: 2px;
}

.paridad-text strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--ms-text);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.paridad-text p {
    font-size: 14px;
    color: var(--ms-text-dim);
    line-height: 1.7;
    margin: 0;
}

.paridad-text p strong {
    display: inline;
    text-transform: none;
    letter-spacing: 0;
    font-size: 14px;
    color: var(--ms-orange);
    font-weight: 600;
}

/* ═══ §3 ACORDEÓN ═══ */
.ms-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ms-acc-item {
    border: 1px solid var(--ms-border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.ms-acc-item:has(.ms-acc-header[aria-expanded="true"]) {
    border-color: rgba(224, 90, 28, 0.3);
}

.ms-acc-header {
    width: 100%;
    background: rgba(255, 255, 255, 0.025);
    border: none;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    color: var(--ms-text);
    font-family: var(--ms-font-body);
    transition: background 0.25s;
}

.ms-acc-header:hover {
    background: rgba(255, 255, 255, 0.05);
}

.ms-acc-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.ms-acc-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.ms-acc-title {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.ms-acc-chevron {
    font-size: 13px;
    color: var(--ms-text-dim);
    transition: transform 0.3s ease;
}

.ms-acc-header[aria-expanded="true"] .ms-acc-chevron {
    transform: rotate(180deg);
}

.ms-acc-body {
    overflow: hidden;
}

.ms-acc-inner {
    padding: 6px 22px 22px;
}

/* Stats row */
.ms-stat-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
}

.ms-stat-box {
    border: 1px solid var(--ms-border);
    border-radius: 10px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ms-stat-box--accent {
    border-color: rgba(224, 90, 28, 0.25);
    background: rgba(224, 90, 28, 0.05);
}

.ms-stat-label {
    font-size: 11px;
    color: var(--ms-text-dim);
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.ms-stat-num {
    font-family: var(--ms-font-display);
    font-size: 2rem;
    color: var(--ms-text);
    line-height: 1;
}

.ms-stat-num small {
    font-family: var(--ms-font-body);
    font-size: 13px;
    font-weight: 400;
    color: var(--ms-text-dim);
}

/* Tabla */
.ms-table-wrap {
    overflow-x: auto;
    border-radius: 10px;
    border: 1px solid var(--ms-border);
}

.ms-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.ms-table th {
    background: rgba(255, 255, 255, 0.05);
    color: var(--ms-text-dim);
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    padding: 12px 14px;
    text-align: left;
    border-bottom: 1px solid var(--ms-border);
    white-space: nowrap;
}

.ms-table td {
    padding: 10px 14px;
    color: var(--ms-text-dim);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.ms-table tr:last-child td {
    border-bottom: none;
}

.ms-table tbody tr:hover td {
    background: rgba(255, 255, 255, 0.03);
    color: var(--ms-text);
}

.ms-table td:first-child {
    font-weight: 500;
    color: var(--ms-text);
}

/* ═══ §4 TIMELINE ═══ */
.timeline-metro {
    position: relative;
}

.timeline-track {
    width: 100%;
    height: 60px;
    margin-bottom: -20px;
    opacity: 0.5;
}

.timeline-track svg {
    width: 100%;
    height: 100%;
}

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

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
}

.timeline-item-dot {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid;
    background: var(--ms-ink-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ms-font-display);
    font-size: 20px;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.timeline-item:hover .timeline-item-dot {
    transform: scale(1.1);
}

.timeline-item-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.timeline-item-tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid;
    padding: 4px 14px;
    border-radius: 99px;
}

.timeline-item-days {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.tl-days-num {
    font-family: var(--ms-font-display);
    font-size: 4.5rem;
    color: var(--ms-text);
    line-height: 1;
}

.tl-days-label {
    font-size: 14px;
    color: var(--ms-text-dim);
    font-weight: 300;
}

.tl-dates {
    font-size: 12px;
    color: var(--ms-text-dim);
    margin: 0;
}

/* ── Responsive ── */
@media (max-width: 640px) {
    .ms-section {
        padding: 50px 18px;
    }

    .timeline-items {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .timeline-track {
        display: none;
    }

    .pasos-grid {
        grid-template-columns: 1fr;
    }

    .formula-grid {
        grid-template-columns: 1fr;
    }

    .ms-stat-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 420px) {
    .ms-stat-row {
        grid-template-columns: 1fr;
    }
}

































































































































































































































  /* ═══════════════════════════════════════════════════
     SCOPE TOTAL: solo afecta hijos de .tcdmx-grid
     No toca body, html, *, ni clases externas
  ═══════════════════════════════════════════════════ */

  .tcdmx-grid {
    --t-mb:    #d91b1b;
    --t-mb2:   #ff3c3c;
    --t-tr:    #1252aa;
    --t-tr2:   #4a9eff;
    --t-cb:    #007a6e;
    --t-cb2:   #1db891;
    --t-bg:    #ffffff;
    --t-card:  #f4f4f6;
    --t-ink:   #111111;
    --t-muted: rgba(30,30,30,0.45);
    --t-sep:   rgba(0,0,0,0.08);
    --t-fd:    'Bebas Neue', sans-serif;
    --t-fb:    'DM Sans', sans-serif;

    display: flex;
    gap: 60px;
    align-items: flex-end;
    justify-content: center;
    padding: 48px 32px;
    background: var(--t-bg);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
  }

  /* blobs de color suaves sobre blanco */
  .tcdmx-grid::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 38% 28% at 14% 85%, rgba(217,27,27,0.07)  0%, transparent 70%),
      radial-gradient(ellipse 30% 24% at 51% 88%, rgba(18,82,170,0.07)  0%, transparent 70%),
      radial-gradient(ellipse 34% 26% at 87% 82%, rgba(0,122,110,0.07)  0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
  }

  /* ── CARD BASE ── */
  .tcdmx-card {
    position: relative;
    width: 310px;
    border-radius: 10px;
    background: var(--t-card);
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
    border: 1.5px solid rgba(0,0,0,0.07);
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    transition:
      transform 0.45s cubic-bezier(.23,1.4,.32,1),
      box-shadow 0.45s ease;
    box-sizing: border-box;
  }

  .tcdmx-card * { box-sizing: border-box; }

  /* hovers individuales */
  .metrobusa:hover {
    transform: translateY(-20px) rotate(-1deg);
    box-shadow: 0 28px 55px -10px rgba(217,27,27,0.35);
  }
  .tcdmx-trolebus:hover {
    transform: translateY(-20px);
    box-shadow: 0 28px 55px -10px rgba(18,82,170,0.35);
  }
  .tcdmx-cablebus:hover {
    transform: translateY(-20px) rotate(1deg);
    box-shadow: 0 28px 55px -10px rgba(0,122,110,0.35);
  }

  /* barra superior de color */
  .tcdmx-bar {
    height: 5px;
    width: 100%;
  }
  .metrobusa    .tcdmx-bar { background: linear-gradient(90deg, var(--t-mb),  var(--t-mb2)); }
  .tcdmx-trolebus .tcdmx-bar { background: linear-gradient(90deg, var(--t-tr),  var(--t-tr2)); }
  .tcdmx-cablebus .tcdmx-bar { background: linear-gradient(90deg, var(--t-cb),  var(--t-cb2)); }

  /* zona ilustración */
  .tcdmx-art {
    padding: 20px 16px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 148px;
    position: relative;
  }

  /* líneas de velocidad horizontales sutiles */
  .tcdmx-art::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
      0deg,
      transparent,
      transparent 11px,
      rgba(0,0,0,0.018) 12px
    );
    pointer-events: none;
  }

  .tcdmx-svg {
    width: 190px;
    transition: filter 0.4s, transform 0.4s;
    position: relative;
    z-index: 1;
  }

  .metrobusa:hover    .tcdmx-svg { filter: drop-shadow(0 6px 18px rgba(217,27,27,0.5));  transform: translateX(4px); }
  .tcdmx-trolebus:hover .tcdmx-svg { filter: drop-shadow(0 6px 18px rgba(18,82,170,0.5));  transform: translateX(4px); }
  .tcdmx-cablebus:hover .tcdmx-svg { filter: drop-shadow(0 6px 18px rgba(0,122,110,0.5)); transform: translateY(-4px); }

  /* divisor */
  .tcdmx-divider {
    height: 1px;
    margin: 0 16px;
    background: var(--t-sep);
  }

  /* etiqueta tipo */
  .tcdmx-tag {
    font-family: var(--t-fb);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 10px 16px 0;
    color: var(--t-muted);
  }

  /* nombre grande */
  .tcdmx-name {
    font-family: var(--t-fd);
    font-size: 42px;
    letter-spacing: 0.04em;
    line-height: 1;
    padding: 2px 16px 0;
    color: var(--t-ink);
  }

  .tcdmx-name em { font-style: normal; }
  .metrobusa    .tcdmx-name em { color: var(--t-mb2); }
  .tcdmx-trolebus .tcdmx-name em { color: var(--t-tr2); }
  .tcdmx-cablebus .tcdmx-name em { color: var(--t-cb2); }

  /* stats */
  .tcdmx-stats {
    display: flex;
    padding: 12px 16px 18px;
  }

  .tcdmx-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    position: relative;
  }

  .tcdmx-stat + .tcdmx-stat::before {
    content: '';
    position: absolute;
    left: 0; top: 4px; bottom: 4px;
    width: 1px;
    background: var(--t-sep);
  }

  .tcdmx-val {
    font-family: var(--t-fd);
    font-size: 24px;
    line-height: 1;
    padding-left: 8px;
  }
  .metrobusa    .tcdmx-val { color: var(--t-mb); }
  .tcdmx-trolebus .tcdmx-val { color: var(--t-tr); }
  .tcdmx-cablebus .tcdmx-val { color: var(--t-cb); }

  .tcdmx-lbl {
    font-family: var(--t-fb);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--t-muted);
    padding-left: 8px;
  }

  /* badge esquina */
  .tcdmx-badge {
    position: absolute;
    top: 12px; right: 12px;
    font-family: var(--t-fb);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 3px 7px;
    border-radius: 3px;
    z-index: 5;
    color: #fff;
  }
  .metrobusa    .tcdmx-badge { background: var(--t-mb); }
  .tcdmx-trolebus .tcdmx-badge { background: var(--t-tr); }
  .tcdmx-cablebus .tcdmx-badge { background: var(--t-cb); }

  /* shimmer scan */
  .tcdmx-scan {
    position: absolute;
    top: -60%; left: 0; right: 0;
    height: 50%;
    background: linear-gradient(rgba(181, 147, 231, 0), rgba(207, 174, 255, 0.37), rgba(114, 63, 212, 0));
    animation: tcdmx-scan 5s linear infinite;
    pointer-events: none;
    z-index: 4;
  }
  @keyframes tcdmx-scan {
    0%   { top: -60%; }
    100% { top: 110%; }
  }

  /* entrada */
  .tcdmx-card {
    animation: tcdmx-rise 0.7s cubic-bezier(.23,1.3,.32,1) both;
  }
  .tcdmx-card:nth-child(1) { animation-delay: 0.05s; }
  .tcdmx-card:nth-child(2) { animation-delay: 0.18s; }
  .tcdmx-card:nth-child(3) { animation-delay: 0.31s; }

  @keyframes tcdmx-rise {
    from { opacity: 0; transform: translateY(40px) scale(0.95); }
    to   { opacity: 1; transform: translateY(0)    scale(1);    }
  }

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

@media(max-width:1200px){

  .tcdmx-grid{
    gap: 30px;
    padding: 40px 24px;
  }

  .tcdmx-card{
    width: 290px;
  }

}

/* =========================
TABLETS
========================= */

@media(max-width:992px){

  .tcdmx-grid{
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    align-items: stretch;
    justify-content: center;
    gap: 28px;
  }

  .tcdmx-card{
    width: 100%;
    max-width: 100%;
  }

  .tcdmx-name{
    font-size: 38px;
  }

  .tcdmx-val{
    font-size: 21px;
  }

}

/* =========================
MÓVILES
========================= */

@media(max-width:768px){

  .tcdmx-grid{
    grid-template-columns: 1fr;
    padding: 30px 18px;
    gap: 24px;
  }

  .tcdmx-card{
    width: 100%;
    border-radius: 20px;
  }

  .tcdmx-art{
    min-height: auto;
    padding: 18px 14px 6px;
  }

  .tcdmx-svg{
    width: 100%;
    max-width: 220px;
  }

  .tcdmx-name{
    font-size: 34px;
    line-height: .95;
  }

  .tcdmx-stats{
    flex-direction: column;
    gap: 16px;
  }

  .tcdmx-stat + .tcdmx-stat::before{
    display: none;
  }

  .tcdmx-val{
    font-size: 19px;
    padding-left: 0;
    word-break: break-word;
  }

  .tcdmx-lbl{
    padding-left: 0;
    font-size: 8px;
    line-height: 1.5;
  }

  .tcdmx-badge{
    font-size: 7px;
    padding: 4px 6px;
  }

}

/* =========================
MÓVILES PEQUEÑOS
========================= */

@media(max-width:480px){

  .tcdmx-grid{
    padding: 24px 12px;
  }

  .tcdmx-card{
    border-radius: 18px;
  }

  .tcdmx-tag{
    font-size: 8px;
  }

  .tcdmx-name{
    font-size: 28px;
  }

  .tcdmx-val{
    font-size: 16px !important;
    line-height: 1.4;
  }

  .tcdmx-lbl{
    font-size: 7px;
    letter-spacing: .08em;
  }

  .tcdmx-svg{
    max-width: 180px;
  }

  .metrobusa:hover,
  .tcdmx-trolebus:hover,
  .tcdmx-cablebus:hover{
    transform: translateY(-8px);
  }

}






































































































































































































































































































































/* ═══════════════════════════════════════════════════════
   SCOPE TOTAL: todo bajo .mcdmx-section
   No toca ningún selector externo
═══════════════════════════════════════════════════════ */

.mcdmx-section {
  --mcdmx-white:    #ffffff;
  --mcdmx-bg:       #f7f7f5;
  --mcdmx-ink:      #111111;
  --mcdmx-muted:    #6b6b6b;
  --mcdmx-border:   #e0e0e0;
  --mcdmx-c1:       #e3000f; /* rojo Metro */
  --mcdmx-c2:       #0057a8; /* azul Metro */
  --mcdmx-c3:       #009b4e; /* verde Metro */
  --mcdmx-c1l:      #ffeaea;
  --mcdmx-c2l:      #e8f0fb;
  --mcdmx-c3l:      #e6f6ee;
  --mcdmx-fd:       'Syne', sans-serif;
  --mcdmx-fb:       'Inclusive Sans', sans-serif;
  --mcdmx-radius:   14px;

  font-family: var(--mcdmx-fb);
  color: var(--mcdmx-ink);
  background: var(--mcdmx-white);
  padding: 72px 40px 80px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  box-sizing: border-box;
}

.mcdmx-section *,
.mcdmx-section *::before,
.mcdmx-section *::after {
  box-sizing: border-box;
}

/* ── Red de metro decorativa de fondo ── */
.mcdmx-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(0,0,0,0.035) 1px, transparent 1px),
    linear-gradient(0deg,  rgba(0,0,0,0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

/* línea horizontal decorativa como vía de metro */
.mcdmx-section::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(227,0,15,0.12) 15%,
    rgba(0,87,168,0.12) 50%,
    rgba(0,155,78,0.12) 85%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 0;
}

/* ── HEADER ── */
.mcdmx-header {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto 56px;
  text-align: center;
}

.mcdmx-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mcdmx-fb);
  font-size: 11px;
  font-weight: 600; /* Inclusive Sans no tiene 700, usa el disponible */
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mcdmx-c1);
  margin-bottom: 20px;
}

.mcdmx-eyebrow-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--mcdmx-c1);
  animation: mcdmx-pulse 2s ease-in-out infinite;
}

@keyframes mcdmx-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.5); opacity: 0.6; }
}

.mcdmx-title {
  font-family: var(--mcdmx-fd);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--mcdmx-ink);
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

.mcdmx-title-accent {
  position: relative;
  display: inline-block;
}

.mcdmx-title-accent::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 2px;
  height: 4px;
  background: linear-gradient(90deg, var(--mcdmx-c1), var(--mcdmx-c2));
  border-radius: 2px;
}

.mcdmx-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--mcdmx-muted);
  max-width: 620px;
  margin: 0 auto;
}

/* ── VÍAS ── línea de metro visual entre header y cards ── */
.mcdmx-track-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
}

.mcdmx-track {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 700px;
  position: relative;
}

.mcdmx-track-line {
  flex: 1;
  height: 4px;
  border-radius: 2px;
}

.mcdmx-track-line--r { background: linear-gradient(90deg, transparent, var(--mcdmx-c1)); }
.mcdmx-track-line--b { background: linear-gradient(90deg, var(--mcdmx-c1), var(--mcdmx-c2)); }
.mcdmx-track-line--g { background: linear-gradient(90deg, var(--mcdmx-c2), var(--mcdmx-c3)); }
.mcdmx-track-line--e { background: linear-gradient(90deg, var(--mcdmx-c3), transparent); }

/* estaciones */
.mcdmx-station {
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 0 0 2px currentColor;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.mcdmx-station--r { color: var(--mcdmx-c1); background: var(--mcdmx-c1); }
.mcdmx-station--b { color: var(--mcdmx-c2); background: var(--mcdmx-c2); }
.mcdmx-station--g { color: var(--mcdmx-c3); background: var(--mcdmx-c3); }

/* ── GRID DE CARDS ── */
.mcdmx-grid {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 24px;
  max-width: 1040px;
  margin: 0 auto;
  align-items: stretch;
}

/* ── CARD ── */
.mcdmx-card {
  flex: 1;
  background: var(--mcdmx-white);
  border: 1.5px solid var(--mcdmx-border);
  border-radius: var(--mcdmx-radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(.23,1.3,.32,1), box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.mcdmx-card:hover {
  transform: translateY(-8px);
}

#mcdmx-card-ac:hover    { box-shadow: 0 20px 50px -10px rgba(227,0,15,0.25); }
#mcdmx-card-sat:hover   { box-shadow: 0 20px 50px -10px rgba(0,87,168,0.25); }
#mcdmx-card-bank:hover  { box-shadow: 0 20px 50px -10px rgba(0,155,78,0.25); }

/* borde superior de color */
.mcdmx-card-topbar {
  height: 6px;
  width: 100%;
}

#mcdmx-card-ac   .mcdmx-card-topbar { background: linear-gradient(90deg, var(--mcdmx-c1), #ff4d58); }
#mcdmx-card-sat  .mcdmx-card-topbar { background: linear-gradient(90deg, var(--mcdmx-c2), #4a9eff); }
#mcdmx-card-bank .mcdmx-card-topbar { background: linear-gradient(90deg, var(--mcdmx-c3), #4dd98a); }

/* número de línea - estilo metro */
.mcdmx-card-lineno {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mcdmx-fd);
  font-size: 14px;
  font-weight: 800;
  color: white;
  z-index: 2;
}

#mcdmx-card-ac   .mcdmx-card-lineno { background: var(--mcdmx-c1); }
#mcdmx-card-sat  .mcdmx-card-lineno { background: var(--mcdmx-c2); }
#mcdmx-card-bank .mcdmx-card-lineno { background: var(--mcdmx-c3); }

/* ícono SVG metro-estilo */
.mcdmx-card-icon {
  padding: 28px 24px 0;
}

.mcdmx-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}

#mcdmx-card-ac   .mcdmx-icon-wrap { background: var(--mcdmx-c1l); }
#mcdmx-card-sat  .mcdmx-icon-wrap { background: var(--mcdmx-c2l); }
#mcdmx-card-bank .mcdmx-icon-wrap { background: var(--mcdmx-c3l); }

.mcdmx-icon-wrap svg {
  width: 28px; height: 28px;
}

/* body de la card */
.mcdmx-card-body {
  padding: 16px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.mcdmx-card-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

#mcdmx-card-ac   .mcdmx-card-label { color: var(--mcdmx-c1); }
#mcdmx-card-sat  .mcdmx-card-label { color: var(--mcdmx-c2); }
#mcdmx-card-bank .mcdmx-card-label { color: var(--mcdmx-c3); }

.mcdmx-card-title {
  font-family: var(--mcdmx-fd);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--mcdmx-ink);
  margin: 0 0 12px;
}

.mcdmx-card-desc {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--mcdmx-muted);
  flex: 1;
  margin: 0 0 20px;
}

/* botón ver más */
.mcdmx-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mcdmx-fb);
  font-size: 13px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  width: fit-content;
  text-decoration: none;
}

.mcdmx-card-btn:hover { opacity: 0.85; transform: translateX(3px); }

#mcdmx-card-ac   .mcdmx-card-btn { background: var(--mcdmx-c1l); color: var(--mcdmx-c1); }
#mcdmx-card-sat  .mcdmx-card-btn { background: var(--mcdmx-c2l); color: var(--mcdmx-c2); }
#mcdmx-card-bank .mcdmx-card-btn { background: var(--mcdmx-c3l); color: var(--mcdmx-c3); }

/* flecha botón */
.mcdmx-btn-arrow {
  font-size: 16px;
  transition: transform 0.2s;
}
.mcdmx-card-btn:hover .mcdmx-btn-arrow { transform: translateX(3px); }

/* ── MODALES ── */
.mcdmx-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: mcdmx-fade-in 0.25s ease;
}

.mcdmx-overlay.mcdmx-open {
  display: flex;
}

@keyframes mcdmx-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.mcdmx-modal {
  background: white;
  border-radius: 20px;
  width: 100%;
  max-width: 580px;
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
  animation: mcdmx-modal-up 0.35s cubic-bezier(.23,1.3,.32,1);
}

@keyframes mcdmx-modal-up {
  from { opacity: 0; transform: translateY(30px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.mcdmx-modal-head {
  padding: 32px 32px 24px;
  position: sticky;
  top: 0;
  background: white;
  border-radius: 20px 20px 0 0;
  border-bottom: 1px solid var(--mcdmx-border);
  z-index: 2;
}

.mcdmx-modal-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

#mcdmx-modal-ac   .mcdmx-modal-tag { color: var(--mcdmx-c1); }
#mcdmx-modal-sat  .mcdmx-modal-tag { color: var(--mcdmx-c2); }
#mcdmx-modal-bank .mcdmx-modal-tag { color: var(--mcdmx-c3); }

.mcdmx-modal-title {
  font-family: var(--mcdmx-fd);
  font-size: 24px;
  font-weight: 800;
  color: var(--mcdmx-ink);
  margin: 0;
  line-height: 1.15;
}

.mcdmx-close-btn {
  position: absolute;
  top: 20px; right: 20px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--mcdmx-border);
  background: white;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--mcdmx-muted);
  transition: background 0.2s, color 0.2s;
  line-height: 1;
}
.mcdmx-close-btn:hover { background: #f0f0f0; color: var(--mcdmx-ink); }

.mcdmx-modal-body {
  padding: 28px 32px 36px;
}

/* bloques de info dentro del modal */
.mcdmx-info-block {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--mcdmx-border);
}
.mcdmx-info-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.mcdmx-info-block-title {
  font-family: var(--mcdmx-fd);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mcdmx-info-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

#mcdmx-modal-ac   .mcdmx-info-dot { background: var(--mcdmx-c1); }
#mcdmx-modal-sat  .mcdmx-info-dot { background: var(--mcdmx-c2); }
#mcdmx-modal-bank .mcdmx-info-dot { background: var(--mcdmx-c3); }

.mcdmx-info-text {
  font-size: 14.5px;
  line-height: 1.7;
  color: #444;
  margin: 0;
}

/* animación entrada cards */
.mcdmx-card {
  animation: mcdmx-card-rise 0.6s cubic-bezier(.23,1.3,.32,1) both;
}
.mcdmx-grid .mcdmx-card:nth-child(1) { animation-delay: 0.05s; }
.mcdmx-grid .mcdmx-card:nth-child(2) { animation-delay: 0.15s; }
.mcdmx-grid .mcdmx-card:nth-child(3) { animation-delay: 0.25s; }

@keyframes mcdmx-card-rise {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* responsive básico */
@media (max-width: 720px) {
  .mcdmx-grid { flex-direction: column; }
  .mcdmx-section { padding: 48px 20px 60px; }
  .mcdmx-track-wrap { display: none; }
}


































































































































































































/* ══════════════════════════════════════════════════════
   IECM CONTACT — FULL STYLES
   ESTILO FUTURISTA / GLASS / NEUTRAL
   SIN COLORES ASOCIADOS A PARTIDOS
   Scoped únicamente a .iecm-contact
══════════════════════════════════════════════════════ */

.iecm-contact {

  /* PALETA */
  --ic-ink: #ffffff;
  --ic-muted: rgba(255,255,255,0.72);
  --ic-dim: rgba(255,255,255,0.42);

  --ic-c1: #B26BFF;
  --ic-c2: #FF8ACB;
  --ic-c3: #FFB86B;
  --ic-c4: #8C7CFF;
  --ic-c5: #FF6FAE;
  --ic-c6: #C9A7FF;

  /* GLASS */
  --ic-glass: rgba(10,10,30,.52);
  --ic-glass2: rgba(255,255,255,.06);
  --ic-gborder: rgba(255,255,255,.16);

  --ic-rad: 22px;

  position: relative;
  overflow: hidden;
  isolation: isolate;

  color: var(--ic-ink);

  padding: 90px 0 0;

  font-family: 'Montserrat', sans-serif;

  background-image: url("../img/Principal2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* =====================================================
RESET INTERNO
===================================================== */

.iecm-contact *,
.iecm-contact *::before,
.iecm-contact *::after{
  box-sizing:border-box;
}

/* =====================================================
OVERLAY
===================================================== */

.iecm-bg-overlay{

  position:absolute;
  inset:0;

  background:
  linear-gradient(
    145deg,
    rgba(5,5,25,.90),
    rgba(10,10,35,.55),
    rgba(5,5,20,.78)
  );

  z-index:0;
}

/* =====================================================
GLOW LAYER
===================================================== */

.iecm-glow-layer{

  position:absolute;
  inset:0;

  background:

    radial-gradient(
      ellipse 50% 40% at 8% 55%,
      rgba(178,107,255,.22) 0%,
      transparent 65%
    ),

    radial-gradient(
      ellipse 40% 35% at 92% 25%,
      rgba(255,138,203,.18) 0%,
      transparent 65%
    ),

    radial-gradient(
      ellipse 45% 30% at 55% 95%,
      rgba(255,184,107,.14) 0%,
      transparent 65%
    ),

    radial-gradient(
      ellipse 35% 30% at 75% 10%,
      rgba(201,167,255,.15) 0%,
      transparent 65%
    );

  z-index:0;
  pointer-events:none;
}

/* =====================================================
GRAIN
===================================================== */

.iecm-grain{

  position:absolute;
  inset:0;

  opacity:.22;

  background-image:
  url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cg fill='%23ffffff' fill-opacity='.12'%3E%3Ccircle cx='10' cy='10' r='1'/%3E%3C/g%3E%3C/svg%3E");

  z-index:1;
}

/* =====================================================
TOPBAR
===================================================== */

.iecm-topbar{

  position:relative;
  z-index:5;

  display:flex;
  align-items:center;

  gap:20px;

  padding:0 52px;

  margin-bottom:60px;
}

.iecm-line-pill{

  display:flex;
  align-items:center;
  gap:12px;

  padding:10px 18px 10px 10px;

  border-radius:100px;

  background:rgba(178,107,255,.14);

  border:1px solid rgba(178,107,255,.24);

  backdrop-filter:blur(12px);
}

.iecm-line-circle{

  width:38px;
  height:38px;

  border-radius:50%;

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

  background:
  linear-gradient(
    135deg,
    var(--ic-c1),
    var(--ic-c5)
  );

  font-size:15px;
  font-weight:700;

  box-shadow:
  0 0 25px rgba(178,107,255,.45);
}

.iecm-line-label{

  font-size:11px;

  letter-spacing:.22em;

  text-transform:uppercase;

  color:rgba(255,255,255,.75);

  font-weight:600;
}

.iecm-topbar-line{

  flex:1;

  height:1px;

  background:
  linear-gradient(
    90deg,
    rgba(178,107,255,.6),
    rgba(255,138,203,.4),
    rgba(255,184,107,.3),
    transparent
  );
}

/* =====================================================
HERO
===================================================== */

.iecm-hero{

  position:relative;
  z-index:5;

  display:grid;

  grid-template-columns:1.1fr .9fr;

  gap:50px;

  align-items:start;

  padding:0 52px 70px;
}

/* =====================================================
LEFT
===================================================== */

.iecm-kicker{

  display:flex;
  align-items:center;
  gap:12px;

  margin-bottom:18px;

  font-size:11px;

  text-transform:uppercase;

  letter-spacing:.30em;

  color:var(--ic-c3);

  font-weight:700;
}

.iecm-kicker::before{

  content:'';

  width:32px;
  height:2px;

  background:
  linear-gradient(
    90deg,
    var(--ic-c3),
    var(--ic-c2)
  );
}

.iecm-question{

  margin:0 0 30px;

  font-size:clamp(30px,4vw,56px);

  line-height:1.08;

  font-weight:900;

  color:white;

  text-shadow:
  0 4px 25px rgba(0,0,0,.35);
}

.iecm-question em{

  font-style:normal;

  background:
  linear-gradient(
    135deg,
    var(--ic-c2),
    var(--ic-c1)
  );

  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

/* =====================================================
ANSWER BLOCK
===================================================== */

.iecm-answer-block{

  position:relative;

  overflow:hidden;

  padding:28px;

  border-radius:var(--ic-rad);

  background:var(--ic-glass);

  backdrop-filter:blur(18px);

  border:1px solid var(--ic-gborder);

  box-shadow:
  0 10px 40px rgba(0,0,0,.25);
}

.iecm-answer-block::before{

  content:'';

  position:absolute;

  top:0;
  left:0;

  width:4px;
  height:100%;

  background:
  linear-gradient(
    180deg,
    var(--ic-c1),
    var(--ic-c2),
    var(--ic-c3)
  );
}

.iecm-answer-tag{

  margin-bottom:12px;

  font-size:10px;

  letter-spacing:.24em;

  text-transform:uppercase;

  color:var(--ic-c2);

  font-weight:700;
}

.iecm-answer-text{

  font-size:16px;

  line-height:1.9;

  color:rgba(255,255,255,.85);
}

.iecm-answer-text strong{

  color:white;
}

/* =====================================================
DEADLINE
===================================================== */

.iecm-deadline{

  display:inline-flex;
  align-items:center;
  gap:10px;

  margin-top:22px;

  padding:10px 18px;

  border-radius:100px;

  background:rgba(255,184,107,.12);

  border:1px solid rgba(255,184,107,.25);

  color:var(--ic-c3);

  font-size:12px;

  letter-spacing:.08em;

  font-weight:700;
}

.iecm-deadline-dot{

  width:8px;
  height:8px;

  border-radius:50%;

  background:var(--ic-c3);

  animation:iecmPulse 1.5s infinite;
}

@keyframes iecmPulse{

  0%{
    transform:scale(1);
    opacity:1;
  }

  50%{
    transform:scale(1.5);
    opacity:.4;
  }

  100%{
    transform:scale(1);
    opacity:1;
  }
}

/* =====================================================
SIREC CARD
===================================================== */

.iecm-sirec-card{

  overflow:hidden;

  border-radius:var(--ic-rad);

  background:var(--ic-glass);

  backdrop-filter:blur(18px);

  border:1px solid var(--ic-gborder);

  box-shadow:
  0 10px 40px rgba(0,0,0,.25);
}

.iecm-sirec-head{

  display:flex;
  align-items:center;
  gap:16px;

  padding:24px;

  background:rgba(178,107,255,.08);

  border-bottom:1px solid rgba(255,255,255,.08);
}

.iecm-sirec-icon{

  width:52px;
  height:52px;

  border-radius:16px;

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

  font-size:24px;

  background:rgba(178,107,255,.15);

  border:1px solid rgba(178,107,255,.25);
}

.iecm-sirec-title{

  font-size:24px;

  font-weight:900;

  background:
  linear-gradient(
    135deg,
    var(--ic-c2),
    var(--ic-c1)
  );

  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.iecm-sirec-sub{

  margin-top:4px;

  font-size:10px;

  text-transform:uppercase;

  letter-spacing:.18em;

  color:rgba(255,255,255,.5);
}

.iecm-sirec-body{

  padding:18px 24px 24px;
}

.iecm-sirec-row{

  display:flex;
  gap:14px;

  padding:14px 0;

  border-bottom:1px solid rgba(255,255,255,.06);
}

.iecm-sirec-row:last-child{
  border-bottom:none;
}

.iecm-sirec-badge{

  flex-shrink:0;

  padding:6px 12px;

  border-radius:10px;

  font-size:10px;

  text-transform:uppercase;

  letter-spacing:.12em;

  font-weight:700;
}

.iecm-sirec-badge--r{

  background:rgba(255,138,203,.14);

  border:1px solid rgba(255,138,203,.24);

  color:#FFC2E3;
}

.iecm-sirec-badge--b{

  background:rgba(178,107,255,.14);

  border:1px solid rgba(178,107,255,.24);

  color:#E5D8FF;
}

.iecm-sirec-info{

  font-size:14px;

  line-height:1.7;

  color:rgba(255,255,255,.75);
}

/* =====================================================
CONTACT GRID
===================================================== */

.iecm-contact-grid{

  position:relative;
  z-index:5;

  display:grid;

  grid-template-columns:repeat(2,1fr);

  gap:24px;

  padding:0 52px 70px;
}

/* =====================================================
CARDS
===================================================== */

.iecm-contact-card{

  position:relative;

  overflow:hidden;

  padding:34px 28px;

  border-radius:var(--ic-rad);

  background:var(--ic-glass);

  backdrop-filter:blur(18px);

  border:1px solid var(--ic-gborder);

  transition:.45s ease;

  box-shadow:
  0 10px 40px rgba(0,0,0,.18);
}

.iecm-contact-card:hover{

  transform:
  translateY(-10px)
  scale(1.02);
}

/* =====================================================
TOPBAR CARD
===================================================== */

.iecm-card-topbar{

  position:absolute;

  top:0;
  left:0;

  width:100%;
  height:4px;
}

#iecm-card-phone .iecm-card-topbar{

  background:
  linear-gradient(
    90deg,
    var(--ic-c1),
    var(--ic-c4)
  );
}

#iecm-card-email .iecm-card-topbar{

  background:
  linear-gradient(
    90deg,
    var(--ic-c2),
    var(--ic-c5)
  );
}

#iecm-card-address .iecm-card-topbar{

  background:
  linear-gradient(
    90deg,
    var(--ic-c3),
    var(--ic-c2)
  );
}

/* =====================================================
NUMBER
===================================================== */

.iecm-card-num{

  position:absolute;

  top:-10px;
  right:12px;

  font-size:110px;

  font-weight:900;

  opacity:.05;

  line-height:1;
}

/* =====================================================
ICON
===================================================== */

.iecm-card-icon{

  width:60px;
  height:60px;

  border-radius:18px;

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

  margin-bottom:22px;

  font-size:28px;
}

#iecm-card-phone .iecm-card-icon{

  background:rgba(178,107,255,.14);

  border:1px solid rgba(178,107,255,.25);
}

#iecm-card-email .iecm-card-icon{

  background:rgba(255,138,203,.14);

  border:1px solid rgba(255,138,203,.25);
}

#iecm-card-address .iecm-card-icon{

  background:rgba(255,184,107,.14);

  border:1px solid rgba(255,184,107,.25);
}

/* =====================================================
TEXTOS CARD
===================================================== */

.iecm-card-method{

  margin-bottom:10px;

  font-size:30px;

  letter-spacing:.24em;

  text-transform:uppercase;

  font-weight:700;
}

#iecm-card-phone .iecm-card-method{
  color:#E5D8FF;
}

#iecm-card-email .iecm-card-method{
  color:#FFC2E3;
}

#iecm-card-address .iecm-card-method{
  color:#FFD7A3;
}

.iecm-card-value{

  margin-bottom:14px;

  font-size:clamp(20px,2vw,28px);

  line-height:1.2;

  font-weight:800;
}

.iecm-card-value a{

  color:white;

  text-decoration:none;
}

.iecm-card-detail{

  font-size:14px;

  line-height:1.8;

  color:rgba(255,255,255,.66);
}

/* =====================================================
CHIPS
===================================================== */

.iecm-chip{

  display:inline-flex;

  margin-top:18px;

  padding:8px 14px;

  border-radius:10px;

  font-size:11px;

  letter-spacing:.08em;

  font-weight:700;
}

#iecm-card-phone .iecm-chip{

  background:rgba(178,107,255,.12);

  border:1px solid rgba(178,107,255,.25);

  color:#E5D8FF;
}

#iecm-card-email .iecm-chip{

  background:rgba(255,138,203,.12);

  border:1px solid rgba(255,138,203,.25);

  color:#FFC2E3;
}

#iecm-card-address .iecm-chip{

  background:rgba(255,184,107,.12);

  border:1px solid rgba(255,184,107,.25);

  color:#FFD7A3;
}

/* =====================================================
NOTA
===================================================== */

.iecm-note{

  margin-top:18px;

  padding:12px 14px;

  border-radius:12px;

  background:rgba(255,184,107,.08);

  border-left:3px solid rgba(255,184,107,.35);

  color:#FFD7A3;

  font-size:13px;

  line-height:1.6;
}

/* =====================================================
LINK
===================================================== */

.iecm-dir-link{

  display:inline-flex;
  align-items:center;
  gap:8px;

  margin-top:18px;

  color:#FFD7A3;

  text-decoration:none;

  font-size:11px;

  letter-spacing:.14em;

  text-transform:uppercase;

  font-weight:700;
}

.iecm-dir-arrow{

  transition:.3s ease;
}

.iecm-dir-link:hover .iecm-dir-arrow{

  transform:translateX(5px);
}

/* =====================================================
FOOTER
===================================================== */

.iecm-footer-bar{

  position:relative;
  z-index:5;

  padding:20px 52px;

  border-top:1px solid rgba(255,255,255,.08);

  background:rgba(0,0,0,.25);

  backdrop-filter:blur(12px);
}

.iecm-footer-brand{

  display:flex;
  align-items:center;
  gap:10px;

  font-size:11px;

  text-transform:uppercase;

  letter-spacing:.20em;

  color:rgba(255,255,255,.55);
}

.iecm-footer-brand::before{

  content:'';

  width:7px;
  height:7px;

  border-radius:50%;

  background:var(--ic-c2);

  box-shadow:
  0 0 18px rgba(255,138,203,.8);
}

/* =====================================================
METRO STRIP
===================================================== */

.iecm-metro-strip{

  position:relative;

  height:24px;

  overflow:hidden;

  background:rgba(0,0,0,.35);

  border-top:1px solid rgba(255,255,255,.06);
}

.iecm-mini-train{

  position:absolute;

  top:3px;

  animation:iecmTrain 8s linear infinite;
}

@keyframes iecmTrain{

  0%{
    left:-240px;
  }

  100%{
    left:calc(100% + 30px);
  }
}

/* =====================================================
ANIMATIONS
===================================================== */

.iecm-contact-card,
.iecm-answer-block,
.iecm-sirec-card{

  animation:iecmFadeUp .8s ease both;
}

@keyframes iecmFadeUp{

  from{
    opacity:0;
    transform:translateY(30px);
  }

  to{
    opacity:1;
    transform:translateY(0);
  }
}

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

@media(max-width:1100px){

  .iecm-hero{

    grid-template-columns:1fr;

    gap:35px;
  }

  .iecm-contact-grid{

    grid-template-columns:1fr 1fr;
  }

}

@media(max-width:768px){

  .iecm-topbar,
  .iecm-hero,
  .iecm-contact-grid,
  .iecm-footer-bar{

    padding-left:24px;
    padding-right:24px;
  }

  .iecm-topbar{

    margin-bottom:40px;
  }

  .iecm-question{

    font-size:38px;
  }

  .iecm-contact-grid{

    grid-template-columns:1fr;
  }

  .iecm-card-value{

    font-size:24px;
  }

}

@media(max-width:540px){

  .iecm-question{

    font-size:30px;
  }

  .iecm-answer-block,
  .iecm-contact-card{

    padding:24px 20px;
  }

  .iecm-line-pill{

    width:100%;
  }

  .iecm-topbar{

    flex-direction:column;
    align-items:flex-start;
  }

  .iecm-topbar-line{

    width:100%;
  }

}























.social {
  display: flex;
    justify-content: center;
  flex-flow: wrap;
  gap: 2rem;
  list-style: none;
  padding: 0.5rem 0 1rem 0;
}

.social li {
  position: relative;
  flex-basis: 2.5rem;
}

.social li::after {
  position: absolute;
  /* content: "Tooltip"; */
  content: attr(data-tooltip);
  inset: -45% auto auto 50%;
  z-index: -1;
  translate: -50% 280%;
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
  color: #fff;
  /* background: #070707; */
  background: var(--bg, #070707);
  border-radius: 0.25rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  /* transition: all 0.3s ease-in-out; */
  transition: inset 0.4s cubic-bezier(0.47, 2, 0.41, 1.5),
    visibility 0.3s ease-in-out, opacity 0.2s ease-in-out;
}

.social li:has(a:hover, a:focus-visible)::after {
  opacity: 1;
  visibility: visible;
  inset-block-start: -60%;
}

.social a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1;
  font-size: 1.75rem;
  /* color: #070707; */
  color: #fff;
  background-color: var(--bg);


  /* border: 1px solid; */
  border-radius: 100%;
  text-decoration: none;
  outline: none;
  overflow: hidden;
  transition: color 0.3s ease-in-out;
}

.social a > i {
  position: relative;
  z-index: 1;
}

.social a::after {
  position: absolute;
  content: "";
  inset: 0 0 0;
  /* background: #070707; */
  background: var(--bg, #070707);
  pointer-events: none;
  transition: inset 0.3s ease-in-out;
}

.social a:hover,
.social a:focus-visible {
  color: #fff;
}

.social a:hover::after,
.social a:focus-visible::after {
  inset-block-start: 0;
}




















.metroSimpleFooterBrandQ11 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.metroSimpleFooterLogoQ11 {
    max-width: 50px;
    width: 100%;
    height: auto;
    display: block;
}
@media (max-width: 480px) {
    .metroSimpleFooterLogoQ11 {
        max-width: 35px;
    }
}