/* ===========================
   CLUBRESELLER THEME
=========================== */

:root {

    --color-primary: #00B0FF;
    --color-primary-dark: #00157C;

    --color-warning: #FFBE06;
    --color-orange: #FF9A00;

    --bg-main: #090909;
    --bg-secondary: #141414;
    --bg-card: #1E1E1E;

    --text-main: #FFFFFF;
    --text-secondary: #BDBDBD;

    --border-color: rgba(255, 255, 255, .08);

}

/* General */

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--bg-main);
    color: var(--text-main);
}

/* Scroll */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #111;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--color-primary-dark),
            var(--color-primary));
    border-radius: 20px;
}

/* Selección */

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

/* Cards */

.card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .25);
}

/* Enlaces */

a {
    color: var(--text-main);
    transition: .25s;
}

a:hover {
    color: var(--color-warning);
    text-decoration: none;
}

/* Botón principal */

.btn-primary {
    background: linear-gradient(135deg,
            var(--color-primary-dark),
            var(--color-primary));
    border: none;
}

/* Botón secundario */

.btn-warning {
    background: linear-gradient(135deg,
            var(--color-orange),
            var(--color-warning));
    border: none;
    color: white;
}


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

#header.header-club {
    background: rgba(0, 0, 0, .92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 0;
    transition: all .3s;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    z-index: 9999;
}

#header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */

.logo-club {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-club img {
    height: 65px;
    width: auto;
    display: block;
}

/* Navbar */

.navbar {
    padding: 0;
    margin: 0 auto;
}

.navbar ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar li {
    display: flex;
    align-items: center;
}

.navbar a {
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: .25s;
}

.navbar a:hover,
.navbar .active {
    color: var(--color-primary);
}

/* Botones */

.header-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-header {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 11px 22px;
    border-radius: 12px;

    text-decoration: none;
    font-weight: 600;

    transition: .3s;
}

.btn-login {
    background: linear-gradient(135deg,
            var(--color-primary-dark),
            var(--color-primary));

    color: #fff;
}

.btn-login:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 176, 255, .25);
}

.btn-register {
    border: 2px solid var(--color-warning);
    color: var(--color-warning);
    background: transparent;
}

.btn-register:hover {
    background: var(--color-warning);
    color: #000;
}



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

.hero-club {
    min-height: 100vh;
    background: #090909;
    position: relative;
    overflow: hidden;
}

/* Círculos decorativos */

.hero-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: .18;
}

.hero-circle-1 {
    width: 280px;
    height: 280px;
    background: #00B0FF;
    top: -140px;
    left: -120px;
}

.hero-circle-2 {
    width: 240px;
    height: 240px;
    background: #FF9A00;
    bottom: -100px;
    right: -100px;
}

/* Badge */

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    background: rgba(0, 176, 255, .12);
    color: #00B0FF;

    padding: 8px 18px;
    border-radius: 50px;

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

    margin-bottom: 25px;
}

/* Título */

.hero-title {
    color: #fff;
    font-size: 44px;
    /* antes 58px */
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-title span {
    color: #00B0FF;
}

/* Descripción */

.hero-description {
    color: #bdbdbd;
    font-size: 16px;
    /* antes 18px */
    max-width: 500px;
    margin-bottom: 25px;
}

/* Botones */

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: linear-gradient(135deg,
            #00157C,
            #00B0FF);

    color: #fff;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;

    transition: .25s;
}

.btn-hero-primary:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 176, 255, .30);
}

.btn-hero-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .15);

    color: #fff;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;

    transition: .25s;
}

.btn-hero-secondary:hover {
    background: #FF9A00;
    border-color: #FF9A00;
    color: #fff;
}

/* Logo */

.hero-logo {
    max-width: 420px;
    animation: flotar 4s ease-in-out infinite;
    filter: drop-shadow(0 0 35px rgba(0, 176, 255, .25));
}

@keyframes flotar {

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

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


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

.clientes-club {
    background: #000;
    padding: 90px 0;
}

.section-title-club {
    color: #fff;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-title-club::after {
    content: "";
    display: block;
    width: 90px;
    height: 4px;
    margin: 15px auto 0;
    background: linear-gradient(90deg, #00B0FF, #FFBE06);
    border-radius: 20px;
}

.section-subtitle-club {
    color: #bdbdbd;
    font-size: 16px;
}

.logo-card {
    background: #111;
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 18px;
    height: 120px;

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

    transition: .35s;
}

.logo-card img {
    max-width: 75px;
    max-height: 75px;
    transition: .35s;
}

.logo-card:hover {
    transform: translateY(-8px);
    border-color: #00B0FF;
    box-shadow: 0 12px 35px rgba(0, 176, 255, .18);
}

.logo-card:hover img {
    transform: scale(1.1);
}

.clientes-club .swiper-pagination-bullet {
    background: #555;
    opacity: 1;
}

.clientes-club .swiper-pagination-bullet-active {
    background: #FF9A00;
}


/*=========================
=       NOSOTROS
=========================*/

.about-club {
    background: #080808;
    padding: 100px 0;
}

.club-badge {
    background: rgba(0, 176, 255, .15);
    color: #00B0FF;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.section-title-club {
    color: #fff;
    font-size: 44px;
    font-weight: 800;
}

.section-title-club::after {
    content: '';
    display: block;
    width: 90px;
    height: 4px;
    margin: 18px auto;
    border-radius: 30px;
    background: linear-gradient(90deg, #00B0FF, #FFBE06);
}

.section-subtitle-club {
    color: #bdbdbd;
    max-width: 850px;
    margin: auto;
    line-height: 1.8;
    font-size: 17px;
}

.club-card-info {
    background: #111;
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 22px;
    padding: 35px 25px;
    text-align: center;
    height: 100%;
    transition: .35s;
}

.club-card-info:hover {
    transform: translateY(-10px);
    border-color: #00B0FF;
    box-shadow: 0 15px 35px rgba(0, 176, 255, .15);
}

.icon-circle {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00157C, #00B0FF);

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

.icon-circle i {
    color: #fff;
    font-size: 34px;
}

.club-card-info h4 {
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
}

.club-card-info p {
    color: #bdbdbd;
    font-size: 15px;
    line-height: 1.7;
}




/*=========================
=      SERVICIOS
=========================*/

.servicios-club {
    background: #000;
    padding: 100px 0;
}

.service-card {
    background: #111;
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 24px;
    padding: 40px 30px;
    height: 100%;
    transition: .35s;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #00B0FF;
    box-shadow: 0 20px 40px rgba(0, 176, 255, .12);
}

.service-icon {
    width: 75px;
    height: 75px;
    border-radius: 18px;
    background: linear-gradient(135deg, #00157C, #00B0FF);

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

    margin-bottom: 25px;
}

.service-orange {
    background: linear-gradient(135deg, #FF9A00, #FFBE06);
}

.service-yellow {
    background: linear-gradient(135deg, #00B0FF, #FFBE06);
}

.service-icon i {
    color: white;
    font-size: 34px;
}

.service-card h3 {
    color: white;
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card p {
    color: #bdbdbd;
    margin-bottom: 20px;
}

.service-card ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.service-card ul li {
    color: #ddd;
    margin-bottom: 12px;
}

.service-card ul li i {
    color: #00B0FF;
    margin-right: 8px;
}

.btn-club-action {
    display: inline-block;
    background: linear-gradient(90deg, #00B0FF, #00157C);
    color: white;
    padding: 14px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: .3s;
}

.btn-club-action:hover {
    transform: translateY(-3px);
    color: white;
    box-shadow: 0 10px 25px rgba(0, 176, 255, .25);
}

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

.club-productos {
    background: #080808;
    padding: 100px 0;
}

.product-card {
    background: #111;
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 22px;
    padding: 30px 20px;
    text-align: center;
    transition: .35s;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 120px;
    height: 120px;
    background: rgba(0, 176, 255, .05);
    border-radius: 50%;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: #00B0FF;
    box-shadow: 0 18px 40px rgba(0, 176, 255, .15);
}

.product-logo {
    width: 90px;
    height: 90px;
    margin: auto;
    margin-bottom: 20px;

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

    background: #1a1a1a;
    border-radius: 20px;
}

.product-logo img {
    max-width: 60px;
    max-height: 60px;
    transition: .3s;
}

.product-card:hover .product-logo img {
    transform: scale(1.12);
}

.product-card h5 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 17px;
}

.product-tag {
    display: inline-block;
    background: linear-gradient(90deg, #00157C, #00B0FF);
    color: #fff;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
}

.btn-club-catalogo {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 14px 35px;

    background: linear-gradient(90deg, #FF9A00, #FFBE06);
    color: #000;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: .3s;
}

.btn-club-catalogo:hover {
    transform: translateY(-3px);
    color: #000;
    box-shadow: 0 10px 25px rgba(255, 190, 6, .25);
}


/*=========================
=      ESTADÍSTICAS
=========================*/

.stats-club {
    background: linear-gradient(180deg, #090909 0%, #050505 100%);
    padding: 100px 0;
}

.stat-card {
    background: #111;
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 24px;
    padding: 45px 25px;
    text-align: center;
    transition: .35s;
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: #00B0FF;
    box-shadow: 0 20px 45px rgba(0, 176, 255, .15);
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: auto;
    margin-bottom: 25px;
    border-radius: 20px;

    background: linear-gradient(135deg, #00157C, #00B0FF);

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

.stat-icon.orange {
    background: linear-gradient(135deg, #FF9A00, #FFBE06);
}

.stat-icon.yellow {
    background: linear-gradient(135deg, #00B0FF, #FFBE06);
}

.stat-icon i {
    font-size: 34px;
    color: #fff;
}

.stat-card h3 {
    color: #fff;
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-card p {
    color: #bdbdbd;
    font-size: 16px;
    margin: 0;
}



/*==========================
        FAQ CLUBRESELLER
===========================*/

.club-faq {
    background: #000;
    padding: 90px 0;
}

.club-badge {
    display: inline-block;
    background: linear-gradient(90deg, #FF9A00, #FFBE06);
    color: #000;
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 700;
    letter-spacing: 1px;
}

.club-faq .section-title h2 {
    color: #fff;
    font-size: 42px;
    font-weight: 800;
}

.club-faq .section-title p {
    color: #bcbcbc;
}

.club-accordion {
    background: #0b0b0b;
    border: 1px solid rgba(0, 176, 255, .20);
    border-radius: 15px !important;
    overflow: hidden;
    margin-bottom: 18px;
    box-shadow: 0 0 25px rgba(0, 176, 255, .05);
}

.club-accordion .accordion-button {
    background: #0b0b0b;
    color: #fff;
    font-weight: 700;
    padding: 22px;
    box-shadow: none;
}

.club-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(90deg, #00157C, #00B0FF);
    color: #fff;
}

.club-accordion .accordion-button::after {
    filter: brightness(0) invert(1);
}

.club-accordion .accordion-body {
    background: #050505;
    color: #d5d5d5;
    line-height: 1.8;
    font-size: 15px;
    border-top: 1px solid rgba(255, 255, 255, .05);
}

.club-accordion:hover {
    border-color: #00B0FF;
    transform: translateY(-2px);
    transition: .3s;
}




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

.club-contact {
    background: #000;
    padding: 90px 0;
}

.club-contact h2 {
    color: #fff;
    font-size: 42px;
    font-weight: 800;
}

.club-contact-card {
    background: #090909;
    border: 1px solid rgba(0, 176, 255, .15);
    border-radius: 20px;
    padding: 35px;
    height: 100%;
    box-shadow: 0 0 35px rgba(0, 176, 255, .05);
    transition: .3s;
}

.club-contact-card:hover {
    transform: translateY(-5px);
    border-color: #00B0FF;
}

.club-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

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

.club-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: linear-gradient(135deg, #00157C, #00B0FF);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-right: 20px;
}

.club-icon.whatsapp {
    background: linear-gradient(135deg, #FF9A00, #FFBE06);
    color: #000;
}

.club-contact-item h5 {
    color: #fff;
    margin-bottom: 5px;
    font-weight: 700;
}

.club-contact-item p {
    color: #bdbdbd;
    margin: 0;
}

.club-contact-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.club-contact-logo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00157C, #00B0FF);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 42px;
    margin-bottom: 25px;
}

.club-contact-center h3 {
    color: #fff;
    font-weight: 800;
    margin-bottom: 15px;
}

.club-contact-center p {
    color: #bdbdbd;
    margin-bottom: 30px;
    max-width: 420px;
}

.btn-club-whatsapp {
    background: linear-gradient(90deg, #FF9A00, #FFBE06);
    color: #000;
    font-weight: 700;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: .3s;
}

.btn-club-whatsapp:hover {
    transform: scale(1.05);
    color: #000;
    box-shadow: 0 0 25px rgba(255, 190, 6, .4);
}



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

.club-footer {
    background: #050505;
    border-top: 1px solid rgba(0, 176, 255, .15);
    padding: 60px 0 40px;
}

.club-footer-title {
    color: #fff;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.club-footer-text {
    color: #bdbdbd;
    max-width: 350px;
}

.club-footer small {
    color: #777;
}

.club-social {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

@media(max-width:991px) {
    .club-social {
        justify-content: center;
    }
}

.club-social a {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #101010;
    border: 1px solid rgba(255, 255, 255, .05);

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

    color: #00B0FF;
    font-size: 24px;

    transition: .3s;
}

.club-social a:hover {
    background: linear-gradient(135deg, #00157C, #00B0FF);
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 0 20px rgba(0, 176, 255, .35);
}

.club-dev {
    color: #FFBE06;
    text-decoration: none;
    transition: .3s;
}

.club-dev:hover {
    color: #FF9A00;
}




/* BOTÓN SUBIR */
.back-to-top {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #00157C, #00B0FF);
    color: #fff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 8px 25px rgba(0, 176, 255, .35);
    transition: all .35s ease;
    border: 1px solid rgba(255, 255, 255, .08);
}

.back-to-top i {
    font-size: 32px;
    color: #fff;
    transition: all .35s ease;
}

.back-to-top:hover {
    background: linear-gradient(135deg, #FF9A00, #FFBE06);
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(255, 154, 0, .45);
}

.back-to-top:hover i {
    transform: translateY(-3px);
    color: #000;
}


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

@media (max-width: 991px) {

    /* HEADER */

    .header-club {
        padding: 10px 0;
    }

    .logo-club img {
        height: 50px;
    }

    .header-buttons {
        display: none;
    }

    .mobile-nav-toggle {
        display: block;
        color: #fff;
        font-size: 30px;
        cursor: pointer;
    }

    .navbar ul {
        gap: 0;
    }

    /* HERO */

    .hero-club {
        min-height: auto;
        padding: 120px 0 70px;
        text-align: center;
    }

    .hero-title {
        font-size: 38px;
        line-height: 1.2;
    }

    .hero-description {
        max-width: 100%;
        font-size: 16px;
        margin: 0 auto 30px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        text-align: center;
    }

    .hero-logo {
        max-width: 250px;
        margin-top: 50px;
    }

    /* Círculos */

    .hero-circle-1 {
        width: 180px;
        height: 180px;
    }

    .hero-circle-2 {
        width: 150px;
        height: 150px;
    }

    /* TITULOS */

    .section-title-club,
    .section-title h2 {
        font-size: 30px;
    }

    .section-subtitle-club,
    .section-title p {
        font-size: 15px;
        padding: 0 10px;
    }

    /* ABOUT */

    .about-club {
        padding: 70px 0;
    }

    .club-card-info {
        padding: 30px 20px;
    }

    .icon-circle {
        width: 65px;
        height: 65px;
    }

    .icon-circle i {
        font-size: 28px;
    }

    /* ESTADISTICAS */

    .stats-card {
        margin-bottom: 20px;
    }

    .stats-number {
        font-size: 38px;
    }

    /* SERVICIOS */

    .servicios-club {
        padding: 70px 0;
    }

    .service-card {
        padding: 30px 20px;
        text-align: center;
    }

    .service-icon {
        margin: auto auto 20px;
    }

    .service-card h3 {
        font-size: 24px;
    }

    /* PRODUCTOS */

    .club-productos {
        padding: 70px 0;
    }

    .club-card-producto {
        padding: 25px 20px;
    }

    .club-icono {
        width: 80px;
        height: 80px;
    }

    .club-icono img {
        max-width: 45px;
    }

    /* FAQ */

    .club-faq {
        padding: 70px 0;
    }

    .club-accordion .accordion-button {
        font-size: 15px;
        padding: 18px;
    }

    .club-accordion .accordion-body {
        font-size: 14px;
    }

    /* CONTACTO */

    .club-contact {
        padding: 70px 0;
    }

    .contact-card,
    .contact-form-card {
        margin-bottom: 25px;
    }

    /* FOOTER */

    #footer {
        text-align: center;
    }

    #footer .social-links {
        margin-top: 20px;
        justify-content: center;
    }

}


/*====================================================
=                CELULARES PEQUEÑOS
====================================================*/

@media (max-width: 576px) {

    .hero-title {
        font-size: 30px;
    }

    .hero-description {
        font-size: 15px;
    }

    .section-title-club,
    .section-title h2 {
        font-size: 26px;
    }

    .club-card-info,
    .service-card,
    .club-card-producto {
        border-radius: 18px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 12px 22px;
        font-size: 14px;
    }

}

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

.mobile-nav-toggle {
    display: none;
}

@media (min-width:992px) {

    .mobile-nav-toggle {
        display: none !important;
    }

}

@media (max-width:991px) {

    .logo-club img {
        height: 50px;
        margin-left: 20px;
    }

    .header-buttons {
        display: none;
    }

    .mobile-nav-toggle {
        display: block !important;
        font-size: 32px;
        color: #fff;
        cursor: pointer;
        z-index: 10001;
        margin-left: 200px;
    }

    /* Ocultar menú normal */
    .navbar ul {
        display: none !important;
    }

    /* Fondo negro completo */
    .navbar.navbar-mobile {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #050505;
        z-index: 10000;
    }

    /* Contenedor del menú */
    .navbar.navbar-mobile ul {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        width: 100%;
        height: 100%;

        margin: 0;
        padding: 0;

        list-style: none;
        background: #050505;
        gap: 18px;
    }

    .navbar.navbar-mobile li {
        width: 100%;
        text-align: center;
    }

    .navbar.navbar-mobile a {
        display: block;
        width: 100%;
        padding: 15px;
        color: #fff;
        font-size: 20px;
        font-weight: 700;
        text-decoration: none;
        transition: .3s;
    }

    .navbar.navbar-mobile a:hover,
    .navbar.navbar-mobile .active {
        color: #00B0FF;
        background: rgba(0, 176, 255, .12);
    }

    /* Botón cerrar */
    .navbar.navbar-mobile .mobile-nav-toggle {
        position: fixed;
        top: 10px;
        right: 25px;
        font-size: 36px;
        color: #fff;
        z-index: 10001;
    }

}

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

@media (max-width:991px) {

    .header-buttons {
        display: none;
    }

    .navbar-mobile .mobile-menu-buttons {
        position: absolute;
        left: 20px;
        right: 20px;
        bottom: 30px;

        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .navbar-mobile .mobile-menu-buttons .btn-header {
        display: flex;
        justify-content: center;
        align-items: center;

        width: 100%;
        padding: 15px;

        border-radius: 14px;
        text-decoration: none;
        font-weight: 700;
    }

    .navbar-mobile .mobile-menu-buttons .btn-register {
        background: transparent;
        border: 2px solid #FFBE06;
        color: #FFBE06;
    }

    .navbar-mobile .mobile-menu-buttons .btn-login {
        background: linear-gradient(135deg, #00157C, #00B0FF);
        color: #fff;
    }
}






/*==============================================================================
                                  INTERFAZ INTERNA
===============================================================================*/


/*==============================================================================
=       CLUBRESELLER - PÁGINA DE BIENVENIDA / COLOR ZONES LIGHT PREMIUM
==============================================================================*/

:root {
    --color-primary: #00B0FF;
    --color-primary-dark: #00157C;
    --color-warning: #FFBE06;
    --color-orange: #FF9A00;

    --bg-main: #EEF4FA;
    --bg-secondary: #F7FAFD;
    --bg-card: #FFFFFF;

    --text-main: #172033;
    --text-secondary: #64748B;

    --border-color: #D9E4EE;
    --shadow-soft: 0 14px 35px rgba(0, 21, 124, .08);
    --shadow-hover: 0 20px 45px rgba(0, 176, 255, .16);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg-main) !important;
    color: var(--text-main) !important;
}

::-webkit-scrollbar-track {
    background: #E7EEF5;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg,
            var(--color-primary-dark),
            var(--color-primary));
    border: 2px solid #E7EEF5;
}

::selection {
    background: var(--color-primary);
    color: #FFFFFF;
}

.card {
    background: #FFFFFF !important;
    border: 1px solid var(--border-color) !important;
    box-shadow: var(--shadow-soft) !important;
}

a {
    color: var(--color-primary-dark);
}

a:hover {
    color: var(--color-orange);
}

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

#header.header-club {
    background: linear-gradient(135deg,
            rgba(0, 21, 124, .98),
            rgba(0, 79, 172, .96),
            rgba(0, 176, 255, .92)) !important;

    border-bottom: 1px solid rgba(255, 255, 255, .18) !important;
    box-shadow: 0 10px 28px rgba(0, 21, 124, .20);
}

#header.header-club.header-scrolled {
    background: rgba(0, 21, 124, .96) !important;
}

.navbar a {
    color: rgba(255, 255, 255, .90) !important;
}

.navbar a:hover,
.navbar .active {
    color: #FFBE06 !important;
}

.btn-login {
    background: #FFFFFF !important;
    color: #00157C !important;
    border: 1px solid rgba(255, 255, 255, .55);
    box-shadow: 0 8px 22px rgba(0, 21, 124, .16);
}

.btn-login:hover {
    color: #00157C !important;
    background: #F7FBFF !important;
    box-shadow: 0 12px 28px rgba(0, 21, 124, .24);
}

.btn-register {
    background: linear-gradient(135deg, #FF9A00, #FFBE06) !important;
    border: 1px solid transparent !important;
    color: #172033 !important;
}

.btn-register:hover {
    color: #172033 !important;
    filter: brightness(1.04);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 154, 0, .28);
}

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

.hero-club {
    background:
        radial-gradient(circle at 10% 15%, rgba(0, 176, 255, .16), transparent 30%),
        radial-gradient(circle at 90% 85%, rgba(255, 154, 0, .14), transparent 30%),
        linear-gradient(135deg, #F7FBFF 0%, #EEF4FA 55%, #E7F5FC 100%) !important;
}

.hero-circle {
    opacity: .22;
}

.hero-badge {
    background: rgba(0, 176, 255, .10) !important;
    color: #0074AE !important;
    border-color: rgba(0, 176, 255, .26) !important;
    box-shadow: 0 8px 20px rgba(0, 176, 255, .08);
}

.hero-title {
    color: #172033 !important;
}

.hero-title span {
    background: linear-gradient(135deg, #00157C, #00B0FF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
}

.hero-description {
    color: #5F6F82 !important;
}

.btn-hero-primary,
.btn-club-action {
    background: linear-gradient(135deg,
            #00157C 0%,
            #0067D8 52%,
            #00B0FF 100%) !important;

    color: #FFFFFF !important;
    border: none !important;
    box-shadow: 0 10px 24px rgba(0, 176, 255, .20);
}

.btn-hero-primary:hover,
.btn-club-action:hover {
    color: #FFFFFF !important;
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(0, 176, 255, .30);
}

.btn-hero-secondary {
    background: #FFFFFF !important;
    border: 1px solid #D3DFEA !important;
    color: #00157C !important;
    box-shadow: 0 8px 20px rgba(15, 23, 42, .07);
}

.btn-hero-secondary:hover {
    background: linear-gradient(135deg, #FF9A00, #FFBE06) !important;
    border-color: transparent !important;
    color: #172033 !important;
}

.hero-logo {
    filter:
        drop-shadow(0 20px 35px rgba(0, 21, 124, .14)) drop-shadow(0 0 22px rgba(0, 176, 255, .10));
}

/* ==============================
   SECCIONES Y TÍTULOS
============================== */

.clientes-club,
.servicios-club,
.club-faq,
.club-contact {
    background: #F7FAFD !important;
}

.about-club,
.club-productos,
.stats-club {
    background: #EEF4FA !important;
}

.section-title-club,
.club-faq .section-title h2,
.club-contact h2 {
    color: #172033 !important;
}

.section-subtitle-club,
.club-faq .section-title p {
    color: #64748B !important;
}

.club-badge {
    background: linear-gradient(135deg, #FF9A00, #FFBE06) !important;
    color: #172033 !important;
    border: 1px solid rgba(255, 154, 0, .20);
    box-shadow: 0 8px 18px rgba(255, 154, 0, .12);
}

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

.logo-card,
.club-card-info,
.service-card,
.product-card,
.stat-card,
.club-contact-card {
    background: #FFFFFF !important;
    border: 1px solid #D9E4EE !important;
    box-shadow: var(--shadow-soft) !important;
}

.logo-card:hover,
.club-card-info:hover,
.service-card:hover,
.product-card:hover,
.stat-card:hover,
.club-contact-card:hover {
    border-color: #00B0FF !important;
    box-shadow: var(--shadow-hover) !important;
}

.logo-card {
    background: linear-gradient(145deg, #FFFFFF, #F7FAFD) !important;
}

.product-logo {
    background: #F1F6FA !important;
    border: 1px solid #E0E8F0;
}

.club-card-info h4,
.service-card h3,
.product-card h5,
.stat-card h3,
.club-contact-item h5,
.club-contact-center h3 {
    color: #172033 !important;
}

.club-card-info p,
.service-card p,
.service-card ul li,
.stat-card p,
.club-contact-item p,
.club-contact-center p {
    color: #64748B !important;
}

.service-card ul li i {
    color: #00B0FF !important;
}

.product-tag {
    background: rgba(0, 176, 255, .11) !important;
    color: #006A9E !important;
    border: 1px solid rgba(0, 176, 255, .22);
}

.btn-club-catalogo,
.btn-club-whatsapp {
    background: linear-gradient(135deg, #FF9A00, #FFBE06) !important;
    color: #172033 !important;
    box-shadow: 0 10px 24px rgba(255, 154, 0, .16);
}

.btn-club-catalogo:hover,
.btn-club-whatsapp:hover {
    color: #172033 !important;
    box-shadow: 0 16px 32px rgba(255, 154, 0, .26);
}

/* ==============================
   ICONOS
============================== */

.icon-circle,
.service-icon,
.stat-icon,
.club-icon,
.club-contact-logo {
    box-shadow: 0 12px 26px rgba(0, 176, 255, .18);
}

.service-orange,
.stat-icon.orange,
.club-icon.whatsapp {
    box-shadow: 0 12px 26px rgba(255, 154, 0, .20);
}

.service-yellow,
.stat-icon.yellow {
    background: linear-gradient(135deg, #00157C, #FFBE06) !important;
}

/* ==============================
   FAQ
============================== */

.club-accordion {
    background: #FFFFFF !important;
    border: 1px solid #D9E4EE !important;
    box-shadow: var(--shadow-soft) !important;
}

.club-accordion .accordion-button {
    background: #FFFFFF !important;
    color: #172033 !important;
}

.club-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg,
            #00157C 0%,
            #0067D8 52%,
            #00B0FF 100%) !important;
    color: #FFFFFF !important;
}

.club-accordion .accordion-button.collapsed::after {
    filter: none !important;
}

.club-accordion .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1) !important;
}

.club-accordion .accordion-body {
    background: #F8FBFD !important;
    color: #64748B !important;
    border-top: 1px solid #E0E8F0 !important;
}

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

.club-contact-card {
    background:
        radial-gradient(circle at 100% 0%, rgba(0, 176, 255, .06), transparent 30%),
        #FFFFFF !important;
}

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

.club-footer {
    background:
        linear-gradient(135deg, #001157 0%, #00157C 45%, #003A79 100%) !important;

    border-top: 4px solid #FFBE06 !important;
}

.club-footer-title,
.club-footer h1,
.club-footer h2,
.club-footer h3,
.club-footer h4,
.club-footer h5 {
    color: #FFFFFF !important;
}

.club-footer-text {
    color: rgba(255, 255, 255, .72) !important;
}

.club-footer small {
    color: rgba(255, 255, 255, .48) !important;
}

.club-social a {
    background: rgba(255, 255, 255, .09) !important;
    border: 1px solid rgba(255, 255, 255, .15) !important;
    color: #00B0FF !important;
}

.club-social a:hover {
    background: linear-gradient(135deg, #FF9A00, #FFBE06) !important;
    color: #172033 !important;
    border-color: transparent !important;
    box-shadow: 0 12px 28px rgba(255, 154, 0, .26);
}

/* ==============================
   BOTÓN SUBIR
============================== */

.back-to-top {
    background: linear-gradient(135deg,
            #00157C,
            #00B0FF) !important;

    border: 1px solid rgba(255, 255, 255, .35) !important;
}

.back-to-top:hover {
    background: linear-gradient(135deg, #FF9A00, #FFBE06) !important;
}

/* ==============================
   MENÚ MÓVIL
============================== */

@media (max-width: 991px) {
    .mobile-nav-toggle {
        color: #FFFFFF !important;
        margin-left: auto !important;
        margin-right: 20px;
    }

    .navbar.navbar-mobile,
    .navbar.navbar-mobile ul {
        background:
            radial-gradient(circle at 100% 0%, rgba(0, 176, 255, .20), transparent 28%),
            linear-gradient(145deg, #001157, #00157C 60%, #003F73) !important;
    }

    .navbar.navbar-mobile a {
        color: #FFFFFF !important;
    }

    .navbar.navbar-mobile a:hover,
    .navbar.navbar-mobile .active {
        color: #FFBE06 !important;
        background: rgba(255, 255, 255, .08) !important;
    }

    .navbar-mobile .mobile-menu-buttons .btn-register {
        background: linear-gradient(135deg, #FF9A00, #FFBE06) !important;
        border: none !important;
        color: #172033 !important;
    }

    .navbar-mobile .mobile-menu-buttons .btn-login {
        background: #FFFFFF !important;
        color: #00157C !important;
    }
}

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

@media (max-width: 576px) {
    .hero-club {
        background:
            radial-gradient(circle at 50% 5%, rgba(0, 176, 255, .14), transparent 35%),
            #EEF4FA !important;
    }

    .hero-badge {
        font-size: 12px;
    }

    .logo-card,
    .club-card-info,
    .service-card,
    .product-card,
    .stat-card,
    .club-contact-card {
        box-shadow: 0 10px 25px rgba(0, 21, 124, .07) !important;
    }
}



/*====================================================
=            BIENVENIDA DESPUÉS DEL REGISTRO         =
====================================================*/

.club-welcome-page {
    position: relative;
    overflow: hidden;

    min-height: calc(100vh - 260px);

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

    padding: 70px 20px;

    background:
        radial-gradient(circle at 10% 10%,
            rgba(0, 176, 255, .13),
            transparent 30%),
        radial-gradient(circle at 90% 20%,
            rgba(255, 190, 6, .14),
            transparent 28%),
        linear-gradient(180deg,
            #F5F9FD 0%,
            #EEF6FC 100%);
}

.club-welcome-card {
    position: relative;
    overflow: hidden;

    width: 100%;
    max-width: 760px;

    padding: 55px 48px;

    background: #FFFFFF;

    border: 1px solid #DDE8F2;
    border-radius: 30px;

    text-align: center;

    box-shadow:
        0 28px 65px rgba(0, 21, 124, .12),
        0 8px 20px rgba(15, 23, 42, .05);
}

.club-welcome-card>*:not(.club-welcome-decoration) {
    position: relative;
    z-index: 2;
}


/* Decoraciones */

.club-welcome-decoration {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}

.club-welcome-decoration-one {
    width: 190px;
    height: 190px;

    top: -105px;
    right: -75px;

    background: rgba(0, 176, 255, .10);
}

.club-welcome-decoration-two {
    width: 145px;
    height: 145px;

    left: -75px;
    bottom: -85px;

    background: rgba(255, 190, 6, .12);
}


/* Icono principal */

.club-welcome-icon {
    width: 92px;
    height: 92px;

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

    margin: 0 auto 22px;

    background: linear-gradient(135deg,
            #00157C,
            #00B0FF);

    border: 8px solid rgba(0, 176, 255, .10);
    border-radius: 50%;

    color: #FFFFFF;

    box-shadow: 0 18px 35px rgba(0, 21, 124, .22);
}

.club-welcome-icon i {
    font-size: 46px;
    line-height: 1;
}


/* Badge */

.club-welcome-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 15px;
    padding: 7px 14px;

    background: rgba(255, 190, 6, .17);
    border: 1px solid rgba(255, 154, 0, .25);
    border-radius: 999px;

    color: #8A5A00;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: .4px;
    text-transform: uppercase;
}


/* Textos */

.club-welcome-card h1 {
    margin: 0;

    color: #00157C;

    font-size: clamp(30px, 5vw, 46px);
    font-weight: 800;
    line-height: 1.15;
}

.club-welcome-message {
    max-width: 600px;

    margin: 18px auto 28px;

    color: #536176;

    font-size: 17px;
    line-height: 1.75;
}

.club-welcome-message strong {
    color: #00157C;
    font-weight: 800;
}


/* Información */

.club-welcome-info {
    display: flex;
    align-items: flex-start;
    gap: 14px;

    max-width: 590px;

    margin: 0 auto 30px;
    padding: 18px 20px;

    background: #F3F9FD;
    border: 1px solid #D8EAF5;
    border-radius: 18px;

    text-align: left;
}

.club-welcome-info>i {
    margin-top: 2px;

    color: #00B0FF;

    font-size: 25px;
    flex-shrink: 0;
}

.club-welcome-info div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.club-welcome-info strong {
    color: #172033;

    font-size: 14px;
    font-weight: 800;
}

.club-welcome-info span {
    color: #64748B;

    font-size: 13px;
    line-height: 1.5;
}


/* Botones */

.club-welcome-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    gap: 13px;
}

.club-welcome-btn {
    min-height: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    padding: 12px 21px;

    border-radius: 15px;

    font-size: 13px;
    font-weight: 800;
    text-decoration: none;

    transition: all .25s ease;
}

.club-welcome-btn i {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;
    line-height: 1;
}

.club-welcome-btn-whatsapp {
    background: linear-gradient(135deg,
            #16A34A,
            #22C55E);

    border: 1px solid transparent;

    color: #FFFFFF;

    box-shadow: 0 11px 24px rgba(22, 163, 74, .22);
}

.club-welcome-btn-whatsapp:hover {
    color: #FFFFFF;

    transform: translateY(-2px);

    box-shadow: 0 16px 30px rgba(22, 163, 74, .29);
}

.club-welcome-btn-secondary {
    background: #FFFFFF;

    border: 1px solid #D9E4EE;

    color: #00157C;

    box-shadow: 0 8px 18px rgba(15, 23, 42, .05);
}

.club-welcome-btn-secondary:hover {
    background: #F4F9FD;
    border-color: #00B0FF;

    color: #00157C;

    transform: translateY(-2px);
}


/* Soporte */

.club-welcome-support {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    margin-top: 26px;

    color: #64748B;

    font-size: 12px;
}

.club-welcome-support i {
    color: #FF9A00;
    font-size: 18px;
}


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

@media (max-width: 768px) {

    .club-welcome-page {
        padding: 45px 16px;
    }

    .club-welcome-card {
        padding: 42px 25px;
        border-radius: 24px;
    }

    .club-welcome-icon {
        width: 80px;
        height: 80px;
    }

    .club-welcome-icon i {
        font-size: 39px;
    }

    .club-welcome-message {
        font-size: 15px;
    }
}

@media (max-width: 576px) {

    .club-welcome-card {
        padding: 36px 18px;
    }

    .club-welcome-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .club-welcome-btn {
        width: 100%;
    }

    .club-welcome-info {
        padding: 16px;
    }

    .club-welcome-support {
        align-items: flex-start;
    }
}