/* =============================================
   COMPARADOR DE PLANES FLOW (#conte-combos)
============================================= */
#conte-combos {
    background: #111;
    padding: 60px 20px 0;
}

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

/* Heading */
.pfc-heading {
    color: #fff;
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 28px;
    letter-spacing: 1px;
}

/* Tabs toggle */
.pfc-tabs {
    display: flex;
    justify-content: center;
    background: #1a1a1a;
    border-radius: 50px;
    padding: 4px;
    width: fit-content;
    margin: 0 auto 36px;
    gap: 2px;
}

.pfc-tab {
    background: transparent;
    border: none;
    color: #a1a1a1;
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    font-family: inherit;
}

.pfc-tab.pfc-tab-active {
    background: #fff;
    color: #0d0d0d;
}

/* Panels */
.pfc-panel-hidden {
    display: none;
}

.pfc-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 767px) {
    .pfc-cards {
        grid-template-columns: 1fr;
    }
}

.pfc-card {
    background: #191919;
    border-radius: 24px;
    padding: 36px 36px 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    overflow: hidden;
}

/* Título: logo flow + texto */
.pfc-title {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 10px;
    line-height: 1;
}

.pfc-flow-logo {
    height: 45px;
    width: auto;
    display: inline-block;
}

.pfc-title span {
    font-size: 38px;
    font-weight: 400;
    color: #fff;
    letter-spacing: -0.5px;
padding-top: 16px;
}

.pfc-title strong {
    font-weight: 700;
    font-style: normal;
    color: #ffffff;
}

/* Subtítulo + link */
.pfc-sub-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 4px;
}

.pfc-sub {
    color: #e0e0e0;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Botón toggle compatibilidad (reemplaza al <a>) */
.pfc-compat {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: #17e3a3;
    font-size: 13px;
    text-decoration: underline;
    white-space: nowrap;
    font-family: inherit;
}

.pfc-compat:hover {
    color: #00ffb8;
    text-decoration: underline;
}

/* Popover: desliza hacia abajo en el flujo del card (hereda el ancho completo) */
.pfc-popover {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.25s ease;
}

.pfc-popover.pfc-popover-open {
    max-height: 120px;
    opacity: 1;
}

/* Lista de SOs en fila de 4 columnas iguales */
.pfc-popover-list {
    list-style: none;
    margin: 0;
    padding: 12px 0 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    border-top: 1px solid #2a2a2a;
}

.pfc-popover-list li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #e0e0e0;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
}

/* Placeholder para logos — reemplazar con <img> cuando estén disponibles */
.pfc-popover-logo {
    display: block;
    width: 32px;
    height: 32px;
    background: #2a2a2a;
    border-radius: 6px;
    flex-shrink: 0;
}

/* Divisor */
.pfc-divider {
    border: none;
    border-top: 1px solid #2a2a2a;
    margin: 20px 0;
}

/* Features list */
.pfc-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pfc-features li {
    color: #a1a1a1;
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.4;
}

.pfc-ico {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.pfc-ico svg {
    display: block;
}

/* Velocidad */
.pfc-speed-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #a1a1a1;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.pfc-speed-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 4px;
}

.pfc-speed-btn {
    background: transparent;
    border: 1px solid #333;
    color: #a1a1a1;
    border-radius: 50px;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    font-family: inherit;
}

.pfc-speed-btn:hover {
    border-color: #666;
    color: #fff;
}

.pfc-speed-btn.pfc-speed-sel {
    background: #fff;
    color: #0d0d0d;
    border-color: #fff;
    font-weight: 700;
}

/* Paramount badge */
.pfc-paramount {
    background: #222;
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.pfc-paramount-logo {
    height: 30px;
    width: auto;
    filter: brightness(0) invert(1);
    flex-shrink: 0;
}

.pfc-paramount span {
    color: #a1a1a1;
    font-size: 14px;
    line-height: 1.4;
}

/* Sección inferior del card: se empuja al fondo cuando hay espacio sobrante */
.pfc-card-bottom {
    margin-top: auto;
}

/* Footer: caja oscura con radius completo y margen inferior */
.pfc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #0d0d0d;
    margin: 0 0 24px;
    padding: 20px 24px;
    flex-wrap: wrap;
    gap: 12px;
    border-radius: 16px;
}

.pfc-precio-wrap {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pfc-nombre {
    color: #a1a1a1;
    font-size: 13px;
    font-weight: 500;
}

.pfc-precio {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.pfc-cta {
    background: #17e3a3;
    color: #0d0d0d;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.06em;
    padding: 16px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.15s;
    white-space: nowrap;
    font-family: inherit;
}

.pfc-cta:hover {
    background: #00ffb8;
    color: #0d0d0d;
    text-decoration: none;
}

/* Warning */
.pfc-warning {
    max-width: 1100px;
    margin: 28px auto 0;
    padding: 0 20px 48px;
    text-align: center;
}

.pfc-warning p {
    color: #f5f5f5;
    font-size: .9em;
    line-height: 1.7;
    margin: 0;
}

.pfc-warning a {
    color: #a1a1a1;
    text-decoration: underline;
}

/* subtitulo-hero: mantiene apariencia del h4 original */
.subtitulo-hero {
    font-size: 14px;
    line-height: 1.6;
    color: inherit;
}

.subtitulo-hero small {
    font-size: 100%;
}

/* grilla-stat: reemplaza h5/h4 de contadores de canales */
.grilla-stat-grande {
    font-size: 18px;
    font-weight: 700;
    margin: 10px 0;
}

.grilla-stat-normal {
    font-size: 16px;
    font-weight: 600;
    margin: 10px 0;
}

.grilla-stat-grande span,
.grilla-stat-normal span {
    font-size: 1.4em;
    font-weight: 800;
}

.icon-box-carousel img{
    border-radius: 24px;
}

.destacados-row .about-section img{
  border-radius: 24px;  
}

.box-features img.features-list{
 
    width: 24px;
    text-align: left;
    margin-left: 30px !important;
    margin-right: 0px;
  display: flex;
    /* background: #191919; */

}

.vertical{
  display: flex;
  text-align: left;
}


.box-features p.fl{
    line-height: 3;
    margin-left: 10px;
}
