/* ===========================
   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
===============================================================================*/


