:root {

    --red: #ff2028;
    --red-dark: #b90008;
    --red-light: #ff4b52;

    --black: #050505;
    --dark: #090909;
    --dark-2: #101010;
    --dark-3: #171717;

    --white: #ffffff;
    --gray: #a5a5a5;
    --gray-light: #d5d5d5;

    --border: rgba(255,255,255,.09);

    --container: 1200px;

}


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


html {
    scroll-behavior: smooth;
}


body {

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    background: var(--black);

    color: var(--white);

    overflow-x: hidden;

}


a {
    color: inherit;
    text-decoration: none;
}


.container {

    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin: auto;

}


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

.header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    background:
        rgba(5,5,5,.82);

    backdrop-filter:
        blur(15px);

    border-bottom:
        1px solid var(--border);

}


.nav {

    height: 78px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.logo {

    font-size: 28px;

    font-weight: 900;

    letter-spacing: -1.5px;

}


.logo span {

    color: var(--red);

}


.desktop-menu {

    display: flex;

    gap: 35px;

}


.desktop-menu a {

    color: #ddd;

    font-size: 14px;

    transition: .3s;

}


.desktop-menu a:hover {

    color: var(--red);

}


.nav-button {

    background: var(--red);

    padding: 12px 22px;

    border-radius: 6px;

    font-weight: 700;

    font-size: 14px;

    transition: .3s;

}


.nav-button:hover {

    background: var(--white);

    color: var(--black);

    transform: translateY(-2px);

}


.menu-toggle {

    display: none;

    border: 0;

    background: none;

    color: white;

    font-size: 28px;

    cursor: pointer;

}


.mobile-menu {

    display: none;

}


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

.hero {

    min-height: 850px;

    position: relative;

    display: flex;

    align-items: center;

    overflow: hidden;

}


.hero-background {

    position: absolute;

    inset: 0;

    background:

        radial-gradient(
            circle at 70% 50%,
            rgba(255,20,25,.20),
            transparent 35%
        ),

        radial-gradient(
            circle at 10% 80%,
            rgba(255,20,25,.12),
            transparent 30%
        ),

        linear-gradient(
            135deg,
            #020202,
            #090909 50%,
            #120000
        );

}


.hero-background::before {

    content: "";

    position: absolute;

    inset: 0;

    background-image:

        linear-gradient(
            135deg,
            transparent 70%,
            rgba(255,0,0,.08)
        );

}


.hero-content {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 60px;

    align-items: center;

}


.small-label {

    color: var(--red);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 3px;

    margin-bottom: 22px;

}


.hero h1 {

    font-size: clamp(
        55px,
        7vw,
        90px
    );

    line-height: .95;

    letter-spacing: -4px;

    margin-bottom: 30px;

}


.hero h1 span {

    display: block;

    color: var(--red);

}


.hero-text > p {

    max-width: 570px;

    color: var(--gray-light);

    font-size: 18px;

    line-height: 1.7;

}


.hero-buttons {

    display: flex;

    gap: 15px;

    margin-top: 35px;

}


.btn {

    padding: 16px 28px;

    border-radius: 6px;

    font-weight: 800;

    transition: .3s;

}


.btn-primary {

    background: var(--red);

}


.btn-primary:hover {

    background: var(--white);

    color: var(--black);

    transform: translateY(-3px);

}


.btn-outline {

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

}


.btn-outline:hover {

    border-color: var(--red);

    color: var(--red);

}


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

.hero-visual {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 16px;

    transform:
        perspective(1000px)
        rotateY(-7deg);

}


.visual-card {

    height: 270px;

    border-radius: 14px;

    padding: 25px;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    position: relative;

    overflow: hidden;

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

    box-shadow:
        0 20px 50px
        rgba(0,0,0,.5);

    transition: .4s;

}


.visual-card:hover {

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

}


.visual-card::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            transparent 30%,
            rgba(0,0,0,.8)
        );

}


.visual-card > * {

    position: relative;

    z-index: 2;

}


.card-icon {

    font-size: 55px;

    margin-bottom: auto;

}


.visual-card h3 {

    font-size: 25px;

    margin-bottom: 6px;

}


.visual-card p {

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

}


.card-playstation {

    background:
        linear-gradient(
            145deg,
            #0065ff,
            #001b4d
        );

}


.card-xbox {

    background:
        linear-gradient(
            145deg,
            #0b9d3b,
            #002d12
        );

}


.card-nintendo {

    background:
        linear-gradient(
            145deg,
            #ff2525,
            #550000
        );

}


.card-anime {

    background:
        linear-gradient(
            145deg,
            #ff6b00,
            #5c1900
        );

}


/* ================= SECCIONES ================= */

.products-section {

    padding:
        120px 0;

    background:
        #080808;

}


.section-title {

    text-align: center;

    margin-bottom: 60px;

}


.section-title > span {

    color: var(--red);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 3px;

}


.section-title h2 {

    font-size: 48px;

    margin-top: 12px;

    letter-spacing: -2px;

}


.section-title h2 strong {

    color: var(--red);

}


.section-title p {

    color: var(--gray);

    margin-top: 15px;

    font-size: 16px;

}


/* ================= PRODUCTOS ================= */

.products-grid {

    display: grid;

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

    gap: 15px;

}


.product-card {

    min-height: 440px;

    padding: 28px;

    border-radius: 12px;

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

    background:
        #111;

    position: relative;

    overflow: hidden;

    transition: .4s;

}


.product-card:hover {

    transform:
        translateY(-8px);

}


.product-card::before {

    content: "";

    position: absolute;

    width: 180px;

    height: 180px;

    border-radius: 50%;

    top: -70px;

    right: -70px;

    opacity: .25;

    filter: blur(20px);

}


.product-card.playstation::before {
    background: #0070ff;
}

.product-card.xbox::before {
    background: #18d45a;
}

.product-card.nintendo::before {
    background: #ff2525;
}

.product-card.crunchyroll::before {
    background: #ff6500;
}

.product-card.duolingo::before {
    background: #58cc02;
}


.product-top {

    display: flex;

    justify-content:
        space-between;

    align-items: center;

    margin-bottom: 35px;

}


.product-number {

    font-size: 12px;

    color: #666;

}


.product-symbol {

    font-size: 32px;

}


.product-card h3 {

    font-size: 26px;

    margin-bottom: 15px;

}


.product-card p {

    color: var(--gray);

    font-size: 14px;

    line-height: 1.6;

    min-height: 70px;

}


.product-card ul {

    list-style: none;

    margin-top: 20px;

}


.product-card li {

    margin: 12px 0;

    font-size: 13px;

    color: #ddd;

}


.coming {

    position: absolute;

    bottom: 25px;

    left: 28px;

    color: var(--red);

    font-size: 10px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1px;

}


/* ================= BENEFICIOS ================= */

.benefits {

    padding:
        110px 0;

    background:

        radial-gradient(
            circle at center,
            #230000,
            #070707 60%
        );

}


.light h2 {

    color: white;

}


.benefits-grid {

    display: grid;

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

    gap: 20px;

}


.benefit {

    text-align: center;

    padding: 30px;

}


.benefit-icon {

    width: 70px;

    height: 70px;

    margin:
        0 auto 20px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        rgba(255,30,35,.12);

    border:
        1px solid
        rgba(255,30,35,.4);

    font-size: 28px;

}


.benefit h3 {

    margin-bottom: 12px;

}


.benefit p {

    color: var(--gray);

    font-size: 14px;

    line-height: 1.6;

}


/* ================= TELEGRAM ================= */

.telegram-section {

    padding:
        90px 0;

    background: #050505;

}


.telegram-box {

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

    border-radius: 18px;

    padding: 45px;

    display: flex;

    align-items: center;

    gap: 30px;

    background:

        linear-gradient(
            120deg,
            #111,
            #090909
        );

}


.telegram-icon {

    width: 80px;

    height: 80px;

    flex-shrink: 0;

    border-radius: 50%;

    background: #229ed9;

    display: flex;

    align-items: center;

    justify-content: center;

}


.telegram-icon svg {

    width: 40px;

    height: 40px;

    fill: white;

}


.telegram-content {

    flex: 1;

}


.telegram-content > span {

    color: #229ed9;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

}


.telegram-content h2 {

    font-size: 30px;

    margin: 8px 0;

}


.telegram-content strong {

    color: #229ed9;

}


.telegram-content p {

    color: var(--gray);

}


.telegram-buttons {

    display: flex;

    flex-direction: column;

    gap: 10px;

}


.telegram-button {

    background: #229ed9;

    padding: 13px 20px;

    border-radius: 6px;

    text-align: center;

    font-weight: 700;

    font-size: 13px;

}


.telegram-button.secondary {

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

}


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

.contact-section {

    padding:
        120px 0;

    background: #090909;

}


.contact-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 20px;

    max-width: 900px;

    margin: auto;

}


.contact-card {

    padding: 30px;

    display: flex;

    align-items: center;

    gap: 20px;

    border-radius: 12px;

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

    transition: .3s;

}


.contact-card:hover {

    transform: translateY(-5px);

}


.contact-card.whatsapp:hover {

    border-color: #25d366;

}


.contact-card.telegram:hover {

    border-color: #229ed9;

}


.contact-icon {

    width: 60px;

    height: 60px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 25px;

    flex-shrink: 0;

}


.contact-icon svg {

    width: 30px;

    height: 30px;

    fill: white;

}


.whatsapp .contact-icon {

    background: #25d366;

}


.telegram .contact-icon {

    background: #229ed9;

}


.contact-card span {

    color: var(--gray);

    font-size: 10px;

    letter-spacing: 1px;

}


.contact-card h3 {

    font-size: 24px;

    margin: 4px 0;

}


.contact-card p {

    color: var(--gray);

}


.arrow {

    margin-left: auto;

    font-size: 25px;

    color: var(--red);

}


/* ================= FOOTER ================= */

footer {

    background: #030303;

    border-top:
        1px solid
        var(--border);

}


.footer-content {

    min-height: 150px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.footer-brand p {

    color: #777;

    font-size: 13px;

    margin-top: 8px;

}


.footer-links {

    display: flex;

    gap: 25px;

}


.footer-links a {

    color: #999;

    font-size: 13px;

}


.footer-links a:hover {

    color: var(--red);

}


.footer-bottom {

    text-align: center;

    padding: 20px;

    border-top:
        1px solid
        rgba(255,255,255,.05);

    color: #555;

    font-size: 11px;

}


/* ================= BOTONES FLOTANTES ================= */

.floating-contact {

    position: fixed;

    right: 20px;

    bottom: 20px;

    z-index: 900;

    display: flex;

    flex-direction: column;

    gap: 10px;

}


.floating-contact a {

    width: 52px;

    height: 52px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    box-shadow:
        0 5px 25px
        rgba(0,0,0,.5);

    transition: .3s;

}


.floating-contact a:hover {

    transform: scale(1.1);

}


.floating-contact svg {

    width: 25px;

    height: 25px;

    fill: white;

}


.float-whatsapp {

    background: #25d366;

}


.float-telegram {

    background: #229ed9;

}


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

@media (max-width: 1000px) {

    .products-grid {

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

    }

    .hero-content {

        grid-template-columns: 1fr;

    }

    .hero {

        padding: 130px 0 80px;

    }

    .hero-visual {

        max-width: 700px;

        margin: auto;

    }

    .benefits-grid {

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

    }

}


@media (max-width: 700px) {

    .container {

        width:
            calc(100% - 30px);

    }


    .desktop-menu,
    .nav-button {

        display: none;

    }


    .menu-toggle {

        display: block;

    }


    .mobile-menu {

        display: none;

        flex-direction: column;

        background: #080808;

        border-top:
            1px solid var(--border);

    }


    .mobile-menu.active {

        display: flex;

    }


    .mobile-menu a {

        padding: 18px 20px;

        border-bottom:
            1px solid var(--border);

    }


    .hero {

        min-height: auto;

        padding:
            140px 0 70px;

    }


    .hero h1 {

        font-size: 55px;

        letter-spacing: -3px;

    }


    .hero-text > p {

        font-size: 16px;

    }


    .hero-buttons {

        flex-direction: column;

    }


    .btn {

        text-align: center;

    }


    .hero-visual {

        transform: none;

        gap: 10px;

    }


    .visual-card {

        height: 190px;

        padding: 18px;

    }


    .visual-card h3 {

        font-size: 17px;

    }


    .card-icon {

        font-size: 35px;

    }


    .products-section,
    .contact-section {

        padding: 80px 0;

    }


    .section-title h2 {

        font-size: 38px;

    }


    .products-grid {

        grid-template-columns: 1fr;

    }


    .product-card {

        min-height: 380px;

    }


    .benefits-grid {

        grid-template-columns: 1fr;

    }


    .telegram-box {

        flex-direction: column;

        text-align: center;

        padding: 35px 20px;

    }


    .telegram-buttons {

        width: 100%;

    }


    .contact-grid {

        grid-template-columns: 1fr;

    }


    .footer-content {

        flex-direction: column;

        text-align: center;

        gap: 25px;

        padding: 40px 0;

    }


    .footer-links {

        flex-wrap: wrap;

        justify-content: center;

    }

}
