/* ── RESET BÁSICO ── */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    background-color: #0D0D0D !important;
    color: #FFFFFF !important;
    font-family: 'Inter', sans-serif;
}

/* ── BOTONES ── */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: all 0.25s ease;
    /* ↓ agrega estas 3 ↓ */
    position: relative;
    z-index: 0;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%);
}

.btn__arrow {
    display: inline-flex;
    margin-left: 8px;
    transition: transform 0.2s ease;
}

.btn--primario {
    background-color: #F5A623;
    color: #000000;
}

.btn--primario:hover {

    box-shadow: 0 10px 28px rgba(245, 166, 35, 0.32);
    transform: translateY(-2px);
}

.btn--primario::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: #D48B0F;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: -1;
}

.btn--primario:hover::before {
    transform: scaleX(1);
}

.btn--primario:hover .btn__arrow {
    transform: translateX(4px);
}

.btn--secundario {
    position: relative;
    background-color: #FFFFFF;
    color: #FFFFFF;
}

.btn--secundario:hover {
    color: #000000;
    box-shadow: 0 10px 24px rgba(245, 166, 35, 0.12);
    transform: translateY(-2px);
}

.btn--secundario::after {
    content: '';
    position: absolute;
    inset: 1px;
    background-color: #0D0D0D;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 13px), calc(100% - 13px) 100%, 0 100%);
    z-index: -2;
}

.btn--secundario::before {
    content: '';
    position: absolute;
    inset: 1px;
    background-color: #F5A623;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 13px), calc(100% - 13px) 100%, 0 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: -1;
}

.btn--secundario:hover::before {
    transform: scaleX(1);
}

.btn--secundario:hover .btn__arrow {
    transform: translateX(4px);
}

/* ── HERO ── */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px;
    gap: 60px;
    background-color: #0D0D0D;
    background-image:
        radial-gradient(circle, rgba(245, 166, 35, 0.22) 1.2px, transparent 1.2px),
        linear-gradient(rgba(245, 166, 35, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245, 166, 35, 0.06) 1px, transparent 1px);
    background-size: 48px 48px, 48px 48px, 48px 48px;
    background-position: -24px -24px, 0 0, 0 0;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.05;
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 0;
}



.hero::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 6%;
    width: 620px;
    height: 620px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.18) 0%, rgba(245, 166, 35, 0) 68%);
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 0;
}

.hero__contenido {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero__supra {
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #F5A623;
    text-transform: uppercase;
}

.hero__supra-mark {
    display: inline-block;
    width: 18px;
    height: 8px;
    margin-right: 10px;
    background: repeating-linear-gradient(45deg, #F5A623 0 3px, transparent 3px 6px);
}

.hero__titulo {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 5.5rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    color: #FFFFFF;
}

.hero__titulo--naranja {
    color: #F5A623;
    text-shadow:
        4px 4px 0 rgba(245, 166, 35, 0.18),
        8px 8px 0 rgba(245, 166, 35, 0.08);
}

.hero__subtitulo {
    font-size: 1rem;
    color: #AAAAAA;
    line-height: 1.6;
    max-width: 460px;
}

.hero__botones {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero__ciudades {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.hero__ciudad {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: #FFFFFF;
    border: 1px solid #333;
    padding: 6px 16px;
    border-radius: 999px;
}

.hero__punto {
    width: 8px;
    height: 8px;
    background-color: #F5A623;
    border-radius: 50%;
}

.hero__imagen {
    position: relative;
    z-index: 2;
    flex: 1.35;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__video-frame {
    position: relative;
    width: 100%;
}

.frame-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid #F5A623;
    z-index: 4;
    pointer-events: none;
}

.frame-corner--tl {
    top: -9px;
    left: -9px;
    border-right: none;
    border-bottom: none;
}

.frame-corner--tr {
    top: -9px;
    right: -9px;
    border-left: none;
    border-bottom: none;
}

.frame-corner--bl {
    bottom: -9px;
    left: -9px;
    border-right: none;
    border-top: none;
}

.frame-corner--br {
    bottom: -9px;
    right: -9px;
    border-left: none;
    border-top: none;
}

.hero__video-frame-inner {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    background-color: #0D0D0D;
    box-shadow: 0 0 0 1px rgba(245, 166, 35, 0.4), 0 0 36px rgba(245, 166, 35, 0.12);
    animation: frameGlow 4.5s ease-in-out infinite;
}

.hero__video-frame-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 90px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

.hero__video-frame-inner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 90px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

.hero__ficha {
    position: absolute;
    top: 100px;
    left: 28px;
    writing-mode: vertical-rl;
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(245, 166, 35, 0.22);
    z-index: 1;
}



@keyframes frameGlow {

    0%,
    100% {
        box-shadow: 0 0 0 1px rgba(245, 166, 35, 0.32), 0 0 26px rgba(245, 166, 35, 0.10);
    }

    50% {
        box-shadow: 0 0 0 1px rgba(245, 166, 35, 0.6), 0 0 50px rgba(245, 166, 35, 0.22);
    }
}

.hero__video-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #F5A623;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.9), 0 1px 2px rgba(0, 0, 0, 0.9);
}

.hero__video-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #F5A623;
    box-shadow: 0 0 6px rgba(245, 166, 35, 0.8);
}

.hero__video-cta {
    position: absolute;
    bottom: 16px;
    right: 16px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-decoration: none;
    padding-bottom: 2px;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.9), 0 1px 2px rgba(0, 0, 0, 0.9);
    transition: all 0.2s ease;
}

.hero__video-cta:hover {
    color: #F5A623;
    border-bottom-color: #F5A623;
}



@keyframes scanSweep {
    0% {
        top: 6%;
        opacity: 0;
    }

    8% {
        opacity: 0.9;
    }

    50% {
        top: 92%;
        opacity: 0.9;
    }

    58% {
        opacity: 0;
    }

    100% {
        top: 92%;
        opacity: 0;
    }
}

.hero__video {
    width: 100%;
    height: auto;
    display: block;
}


/* ── NECESIDADES ── */
.necesidades {
    background-color: #F5F5F0;
    padding: 80px;
    text-align: center;
}

.necesidades__titulo {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #1A1A1A;
    margin-bottom: 48px;
}

.necesidades__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    width: 100%;
}

.necesidades__card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: #FFFFFF;
    border: 1px solid #E0E0E0;
    padding: 24px;
    text-decoration: none;
    color: #1A1A1A;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.necesidades__card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    width: 16px;
    height: 16px;
    border-top: 2px solid #CCCCCC;
    border-left: 2px solid #CCCCCC;
    transition: border-color 0.2s ease, width 0.2s ease, height 0.2s ease;
}

.necesidades__card:hover {
    border-color: #F5A623;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.necesidades__card:hover::before {
    border-color: #F5A623;
    width: 22px;
    height: 22px;
}

.necesidades__card:hover .necesidades__icon {
    border-color: #F5A623;
    background-color: rgba(245, 166, 35, 0.06);
    color: #F5A623;
}

.necesidades__icon {
    width: 56px;
    height: 56px;
    padding: 10px;
    flex-shrink: 0;
    border: 1px solid #E0E0E0;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.necesidades__icon path {
    stroke-linecap: square;
    stroke-linejoin: miter;
}

.necesidades__flecha {
    margin-left: auto;
    color: #F5A623;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.necesidades__card:hover .necesidades__flecha {
    transform: translateX(4px);
}



/* ── PRODUCTOS ── */
.productos {
    background-color: #0D0D0D;
    padding: 80px;
    max-width: 100%;
}

.productos__titulo {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 48px;
}

.productos__punto {
    color: #F5A623;
}

.productos__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.productos__grid .producto-card:nth-child(4) {
    grid-column: span 2;
}

/* ── CARD BASE ── */
.producto-card {
    position: relative;
    display: grid;
    grid-template-columns: 46% 54%;
    grid-template-rows: auto 1fr auto;
    min-height: 280px;
    background-color: #141414;
    border: 1px solid #2A2A2A;
    padding: 28px;
    text-decoration: none;
    color: #FFFFFF;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

/* Overlay oscuro — listo para foto de fondo cuando la agregues */
.producto-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(13, 13, 13, 0.90);
    transition: background 0.45s ease;
    z-index: 0;
    pointer-events: none;
}

.producto-card:hover {
    border-color: #F5A623;
}

.producto-card:hover::before {
    background: rgba(13, 13, 13, 0.35);
}

.producto-card--destacado {
    border-color: #F5A623;
}

/* ── COLUMNA IZQUIERDA ── */
.producto-card__header {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    position: relative;
    z-index: 1;
    transition: opacity 0.35s ease;
}

.producto-card__desc {
    grid-column: 1;
    grid-row: 2;
    font-size: 0.875rem;
    color: #AAAAAA;
    line-height: 1.5;
    align-self: start;
    padding-top: 12px;
    position: relative;
    z-index: 1;
    transition: opacity 0.35s ease;
}

.producto-card__footer {
    grid-column: 1;
    grid-row: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid #2A2A2A;
    position: relative;
    z-index: 1;
    transition: opacity 0.35s ease;
}

/* ── COLUMNA DERECHA: imagen ocupa toda la altura ── */
.producto-card__imagen {
    grid-column: 2;
    grid-row: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 12px;
    opacity: 0.75;
    position: relative;
    z-index: 1;
    transition: opacity 0.35s ease;
}

.producto-card__imagen svg {
    width: 100%;
    max-width: 210px;
    height: auto;
}

.producto-card__imagen img {
    width: 100%;
    max-width: 210px;
    height: auto;
    object-fit: contain;
    opacity: 1;
    filter: brightness(1.2) contrast(1.1);
}

.producto-card--ancho {
    grid-template-columns: 38% 62%;
}

.producto-card--ancho .producto-card__imagen {
    padding-left: 0;
}

.producto-card--ancho .producto-card__imagen img {
    max-width: 100%;
    width: 100%;
}

/* Desc, footer e imagen se opacan */
.producto-card:hover .producto-card__desc,
.producto-card:hover .producto-card__footer,
.producto-card:hover .producto-card__imagen {
    opacity: 0;
}

/* Header se mantiene — título cambia a naranja, badge se opaca */
.producto-card:hover .producto-card__header {
    opacity: 1;
}

.producto-card:hover .producto-card__nombre {
    color: #F5A623;
}

.producto-card:hover .producto-card__header .badge {
    opacity: 0.15;
}

/* ── TIPOGRAFÍA CARD ── */
.producto-card__nombre {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.1;
    transition: color 0.35s ease;
}

.producto-card__precio {
    font-size: 1rem;
    font-weight: 700;
    color: #F5A623;
}

.producto-card__precio--link {
    font-size: 0.95rem;
}

.producto-card__cta {
    width: 40px;
    height: 40px;
    background-color: #F5A623;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.producto-card:hover .producto-card__cta {
    background-color: #FFFFFF;
    transform: translateX(4px);
}

/* ── BADGES ── */
.badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: 4px;
    white-space: nowrap;
    text-transform: uppercase;
}

.badge--gris {
    background-color: #2A2A2A;
    color: #AAAAAA;
}

.badge--naranja {
    background-color: #F5A623;
    color: #000000;
}

.badge--verde {
    background-color: #1B4332;
    color: #52B788;
}

/* ── RENDERS ── */
.renders {
    background-color: #141414;
    padding: 48px 80px;
    display: flex;
    align-items: flex-start;
    gap: 48px;
}

.renders__izq {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.renders__titulo {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #FFFFFF;
    line-height: 1.05;
}

.renders__desc {
    font-size: 0.9rem;
    color: #AAAAAA;
    line-height: 1.6;
    max-width: 380px;
}

.renders__badge {
    align-self: flex-start;
}

.renders__btn {
    align-self: flex-start;
}

.renders__der {
    flex: 1.4;
    display: flex;
    align-items: center;
    gap: 16px;
}

.renders__caja {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.renders__etiqueta {
    display: block;
    text-align: center;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px;
}

.renders__etiqueta--verde {
    border: 1px solid #52B788;
    border-bottom: none;
    color: #52B788;
}

.renders__etiqueta--naranja {
    border: 1px solid #F5A623;
    border-bottom: none;
    color: #F5A623;
}

.renders__img-placeholder {
    border: none;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.renders__img-placeholder--foto {
    height: 320px;
}

.renders__img-placeholder {
    border: none;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.renders__img-placeholder--foto {
    height: 320px;
}

.renders__caja--verde .renders__img-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border-top: 2px solid #52B788;
    border-left: 2px solid #52B788;
    z-index: 3;
}

.renders__caja--verde .renders__img-placeholder::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20px;
    height: 20px;
    border-bottom: 2px solid #52B788;
    border-right: 2px solid #52B788;
    z-index: 3;
}

.renders__caja--naranja .renders__img-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border-top: 2px solid #F5A623;
    border-left: 2px solid #F5A623;
    z-index: 3;
}

.renders__caja--naranja .renders__img-placeholder::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20px;
    height: 20px;
    border-bottom: 2px solid #F5A623;
    border-right: 2px solid #F5A623;
    z-index: 3;
}

.renders__flecha {
    font-size: 1.8rem;
    color: #F5A623;
    flex-shrink: 0;
}

.renders__caption {
    display: block;
    text-align: center;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding-top: 12px;
}

.renders__caption--verde {
    color: #52B788;
}

.renders__caption--naranja {
    color: #F5A623;
}


/* ── CIUDADES ── */
.ciudades {
    background-color: #F5F5F0;
    padding: 48px 80px 0 80px;
}

.ciudades__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.ciudad-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background-color: #FFFFFF;
    border: 1px solid #E0E0E0;
    text-decoration: none;
    color: #1A1A1A;
    transition: border-color 0.2s ease;
}

.ciudad-card:hover {
    border-color: #F5A623;
}

.ciudad-card--destacada {
    border-color: #F5A623;
}

.ciudad-card__icono {
    width: 160px;
    height: 160px;
    flex-shrink: 0;
}

.ciudad-card__icono img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ciudad-card__info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ciudad-card__header {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ciudad-card__nombre {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #1A1A1A;
}

.ciudad-card__desc {
    font-size: 0.875rem;
    color: #666666;
    line-height: 1.5;
}

.ciudad-card__equipo {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #444444;
    margin-top: 4px;
}

.badge--ciudad {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background-color: #F5A623;
    color: #000000;
    padding: 3px 8px;
    border-radius: 3px;
    vertical-align: middle;
    position: relative;
    top: -2px;
}

/* ── MINI-MAPAS (fila dentro del bloque CIUDADES) ── */
.ciudades__mapas {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding-bottom: 24px;
}

.ciudad-mapa {
    margin: 0;
    background-color: #FFFFFF;
    border: 1px solid #E0E0E0;
    overflow: hidden;
}

.ciudad-mapa iframe {
    display: block;
    width: 100%;
    height: 180px;
    border: 0;
    filter: grayscale(0.15);
}

.ciudad-mapa figcaption {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1rem;
    color: #1A1A1A;
    padding: 8px 12px;
    border-top: 1px solid #E0E0E0;
    letter-spacing: 0.02em;
}

/* ── MÍRALOS EN ACCIÓN (reemplaza "¿Qué necesita resolver?") ── */
.miralos {
    background-color: #F5F5F0;
    padding: 80px;
    text-align: center;
}

.miralos__head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.miralos__eyebrow {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #D48B0F;
    margin-bottom: 6px;
}

.miralos__titulo {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #1A1A1A;
    line-height: 1;
}

.miralos__titulo span {
    color: #F5A623;
}

.miralos__canal {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #FF0000;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 12px 20px;
    text-decoration: none;
    clip-path: polygon(0 0, 100% 0, 100% 68%, calc(100% - 12px) 100%, 0 100%);
    transition: background-color 0.2s ease;
}

.miralos__canal:hover {
    background-color: #cc0000;
}

.miralos__canal svg {
    width: 18px;
    height: 18px;
}

.miralos__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    text-align: left;
}

/* Video facade (carga el iframe sólo al clic) */
.video-facade {
    position: relative;
    display: block;
    padding: 0;
    border: 0;
    background-color: #000000;
    aspect-ratio: 16 / 9;
    cursor: pointer;
    overflow: hidden;
    width: 100%;
}

.video-facade__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.video-facade:hover .video-facade__img {
    transform: scale(1.04);
}

.video-facade__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #F5A623;
    box-shadow: 0 0 0 6px rgba(245, 166, 35, 0.25);
    pointer-events: none;
}

.video-facade__play::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 56%;
    transform: translate(-50%, -50%);
    border-left: 18px solid #0D0D0D;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

.video-facade__cap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px 14px 12px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    color: #FFFFFF;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.25;
    pointer-events: none;
}

.video-facade-activo {
    position: relative;
    aspect-ratio: 16 / 9;
    background-color: #000000;
}

.video-facade-activo iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Responsive (salvo en mobile, que usa plantilla propia) */
@media (max-width: 900px) {
    .miralos__grid,
    .ciudades__mapas {
        grid-template-columns: 1fr;
    }
}

/* ── ETAPAS ── */
.etapas {
    background-color: #F5F5F0;
    padding: 48px 80px;
}

.etapas__titulo {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #1A1A1A;
    text-align: center;
    margin-bottom: 40px;
}

.etapas__linea {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
}

/* Línea punteada de fondo */
.etapas__linea::before {
    content: '';
    position: absolute;
    top: 22px;
    left: 5%;
    right: 5%;
    height: 2px;
    border-top: 2px dashed #CCCCCC;
    z-index: 0;
}

.etapa {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex: 1;
    position: relative;
    z-index: 1;
}

.etapa__circulo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    background-color: #CCCCCC;
    color: #FFFFFF;
    border: 2px solid #CCCCCC;
}

/* Completados */
.etapa--done .etapa__circulo {
    background-color: #F5A623;
    border-color: #F5A623;
    color: #FFFFFF;
}

/* Activo */
.etapa--active .etapa__circulo {
    background-color: #FFFFFF;
    border-color: #F5A623;
    color: #F5A623;
}

.etapa__label {
    font-size: 0.82rem;
    color: #666666;
    text-align: center;
    line-height: 1.3;
    max-width: 90px;
}

.etapa--done .etapa__label,
.etapa--active .etapa__label {
    color: #1A1A1A;
    font-weight: 500;
}

/* ── CTA FINAL ── */
.cta-final {
    background-color: #0D0D0D;
    background-image:
        radial-gradient(circle, rgba(245, 166, 35, 0.22) 1.2px, transparent 1.2px),
        linear-gradient(rgba(245, 166, 35, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245, 166, 35, 0.06) 1px, transparent 1px);
    background-size: 48px 48px, 48px 48px, 48px 48px;
    background-position: -24px -24px, 0 0, 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-final__contenido {
    width: 100%;
    padding: 40px 80px 32px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
}

.cta-final__titulo {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #FFFFFF;
    line-height: 1.0;
    margin: 0;
}

.cta-final__botones {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

.cta-final__trust {
    width: 100%;
    display: flex;
    gap: 0;
    border-top: 1px solid #1E1E1E;
}

.cta-final__trust-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #AAAAAA;
    font-size: 0.875rem;
    padding: 20px 32px;
    border-right: 1px solid #1E1E1E;
}

.cta-final__trust-item:last-child {
    border-right: none;
}

.cta-final__trust-item svg {
    color: #F5A623;
    flex-shrink: 0;
}