/* ============================================
    RESET & VARIABLES
============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0a1628;
    --accent-red: #dc143c;
    --accent-green: #1b5e20;
    --accent-gold: #ffd700;
    --surface: #1a2942;
    --text-primary: #ffffff;
    --text-secondary: #b8c5d6;
    --text-muted: #8897ab;
    --accent-electric: #05ae0d;

    /* Typography */
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Outfit', sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.25);
    --shadow-glow-red: 0 0 30px rgba(220, 20, 60, 0.4);
}

/* ============================================
    BASE STYLES
============================================ */
body {
    font-family: var(--font-body);
    background: var(--primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}
.container {
    padding-bottom: 3rem;
    background-image: url(img/background-svg.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center 0;
    background-attachment: fixed;
}

/* ============================================
    HERO SECTION
============================================ */
.hero {
    padding: var(--space-lg) var(--space-md) var(--space-xs);
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out;
}

.hero__logo {
    margin-bottom: var(--space-md);
}

.hero__badge {
    display: inline-block;
    background:linear-gradient(135deg, var(--accent-green), #067403);
    color: white;
    padding: var(--space-xs) var(--space-md);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-md);
    box-shadow: var(--shadow-glow);
    animation: pulse 2s ease-in-out infinite;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 7vw, 4rem);
    line-height: 1.1;
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #00327c;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero__title-highlight {
    background: linear-gradient(135deg, var(--accent-red), #ff4e4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.3));
}

.hero__subtitle {
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    color: var(--primary);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* ============================================
    OPERATORS LIST - LAYOUT HORIZONTAL (FILA)
============================================ */
.operators {
    max-width: 1390px;
    margin: var(--space-md) auto var(--space-xl);
    padding: 0 var(--space-md) 0;
}

.operator-card {
    background: linear-gradient(135deg, var(--surface) 0%, #1e3150 100%);
    border-radius: 20px;
    padding: var(--space-md) var(--space-lg);
    margin-bottom: var(--space-md);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInScale 0.6s ease-out both;
    display: grid;
    grid-template-columns: 68px 2fr 238px;
    gap: var(--space-md);
    align-items: center;
    min-height: 100px;
}

.operator-card--featured {
    border-color: var(--accent-gold);
    background: linear-gradient(135deg, #1e3150 0%, #2a4a6f 100%);
}

.operator-card__right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    min-width: 80px;
}

.operator-card__rank {
    font-family: var(--font-display);
    font-size: 3.5rem;
    line-height: 1;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.operator-card--featured .operator-card__rank {
    background: linear-gradient(135deg, var(--accent-gold), #ff834e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: pulse-glow 2s ease-in-out infinite;
}

.operator-card__badge {
    padding: 0.3rem 0.6rem;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
    text-align: center;
    white-space: nowrap;
}

.operator-card__badge--gold {
    background: linear-gradient(135deg, var(--accent-gold), #ffed4e);
    color: var(--primary);
}

.operator-card__badge--red {
    background: linear-gradient(135deg, var(--accent-red), #ff4757);
    color: white;
}

.operator-card__badge--green {
    background: linear-gradient(135deg, var(--accent-green), #2e7d32);
    color: white;
}

.operator-card__content {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    min-width: 0;
}

.operator-card__brand {
    min-width: 180px;
}

.operator-card__logo{filter: drop-shadow( 1px 5px 2px #000 );}

.operator-card__tagline {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.operator-card__bonus {
    background: linear-gradient(135deg, rgba(255, 98, 0, 0.1), rgba(27, 77, 178, 0.525));
    padding: var(--space-sm) var(--space-md);
    border-radius: 12px;
    border-left: 4px solid var(--accent-red);
    flex: 1;
    min-width: 335px;
}

.operator-card__bonus-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 0.15rem;
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.operator-card__bonus-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
    line-height: 1.3;
}

.operator-card__bonus-description{
    font-size: .9rem;
    color: var(--text-secondary);
    padding: var(--space-xs) 0;
}

.operator-card__features {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.operator-card__warning-badge{
    position: absolute;bottom: var(--space-md);font-size: 12px;color: #a9a9a9;right: var(--space-md);
}

.feature-item {
    width: 7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.35rem 0.6rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-item__icon {
    font-size: .8rem;
    flex-shrink: 0;
    color: var(--text-muted);
}

.feature-item__content {
    gap: .3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.75rem;
    line-height: 1.2;
}

.feature-item__label {
    color: var(--text-muted);
    font-size: 0.65rem;
}

.feature-item__value {
    color: var(--text-primary);
    font-weight: 700;
}

.feature-item--scored{
    font-size: 1.2rem;
}

.feature-item__value--scored{
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.operator-card__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-red), #c41230);
    color: white;
    text-decoration: none;
    padding: var(--space-sm) var(--space-md);
    border-radius: 10px;
    font-weight: 900;
    font-size: 0.9rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-width: 180px;
    white-space: nowrap;
}

.operator-card__cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.operator-card__cta:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg), var(--shadow-glow-red);
    background: linear-gradient(135deg, #ff1744, var(--accent-red));
}

.operator-card__cta:hover::before {
    left: 100%;
}

.operator-card__cta:active {
    transform: scale(1);
}

/* ============================================
    TRUST SECTION
============================================ */
.trust-section {
    max-width: 1350px;
    margin: 0 auto;
    padding: var(--space-lg) var(--space-md);
    background: rgba(27, 43, 70, 0.73);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-md);
}

.trust-section__title {
    font-family: var(--font-display);
    font-size: 2rem;
    text-align: center;
    margin-bottom: var(--space-md);
    color: var(--text-secondary);
    letter-spacing: 1px;
}

.trust-section__description {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.trust-section__requirements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
}

.trust-requirement {
    display: flex;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: var(--surface);
    border-radius: 12px;
    border-left: 3px solid var(--accent-electric);
    transition: transform 0.3s ease;
}

.trust-requirement:hover {
    transform: translateX(5px);
}

.trust-requirement__icon {
    width: 32px;
    height: 32px;
    background: var(--accent-electric);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.trust-requirement__title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
    color: var(--text-primary);
}

.trust-requirement__description {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
    FOOTER
============================================ */
.footer {
    background: rgba(0, 0, 0, 0.3);
    padding: var(--space-lg) var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__content {
    max-width: 1350px;
    margin: 0 auto;
}

.footer__warning {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: var(--space-md);
}

.footer__warning-icon {
    font-size: 1.5rem;
}

.footer__warning-text {
    font-size: 1rem;
    color: var(--primary);
}

.footer__disclaimer {
    font-size: 0.8rem;
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: var(--space-md);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.footer__disclaimer ul{margin-left: var(--space-md);}
.footer__disclaimer a, .modal__text a{color: var(--accent-red);}

.footer__links {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-top: var(--space-md);
}

.footer__link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
    border-bottom: 1px solid transparent;
}

.footer__link:hover {
    color: var(--accent-gold);
    border-bottom-color: var(--accent-gold);
}

/* ============================================
    MODAL DE TÉRMINOS (Simple Popup)
============================================ */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
}

.modal.active {
    display: flex;
}

.modal__content {
    background: var(--surface);
    padding: var(--space-lg);
    border-radius: 16px;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    border: 2px solid var(--accent-red);
}

.modal__close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: var(--accent-red);
    color: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.25rem;
    line-height: 1;
    transition: transform 0.2s ease;
}

.modal__close:hover {
    transform: rotate(90deg);
}

.modal__title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin-bottom: var(--space-md);
    color: var(--accent-electric);
}

.modal__text {
    font-size: 0.875rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.modal__text p {
    margin-bottom: var(--space-sm);
}

.modal__text ul {
    margin-left: var(--space-md);
    margin-bottom: var(--space-sm);
}

.modal__text li {
    margin-bottom: var(--space-xs);
}

/* ============================================
    ANIMATIONS
============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

@keyframes pulse-glow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8));
    }
}

/* ============================================
    RESPONSIVE - MOBILE
============================================ */
@media (max-width: 1100px) {
    .operator-card {
        grid-template-columns: 70px 1fr 225px;
        gap: var(--space-md);
    }

    .operator-card__content {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-sm);
    }

    .operator-card__badge{
        position: relative;
        bottom: 0.5rem;
        left: .5rem;
    }

    .operator-card__bonus {
        min-width: auto;
        width: 100%;
    }

    .trust-section{
        padding: var(--space-md) var(--space-sm);
        margin: 0 var(--space-md);
    }
}

@media (max-width: 900px) {
    .operator-card {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
        padding-bottom: var(--space-lg);
    }

    .operator-card__right {
        position: absolute;
        top: 1.1rem;
        right: 1rem;
    }

    .operator-card__rank {
        font-size: 2.5rem;
    }

    .operator-card__cta {
        width: 100%;
    }

    .operator-card:hover {
        transform: translateY(-6px);
    }

    .trust-section{
        padding: var(--space-sm);
        margin: 0;
        border-radius: 0;
    }
}

@media (max-width: 600px) {
    .operator-card__badge{
        position: static;
    }

    .operator-card__features {
        flex-direction: row;
    }

    .operator-card__warning-badge{
        bottom: 0.5rem;
        width: 89%;
        text-align: center;
    }
    .feature-item {
        width: 45%;
    }

}