.fintech-mobile-nav-a33a10e4 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    font-family: 'Inter', sans-serif;
    background-color: #5B3A9E;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* Espaciador para evitar que el contenido quede oculto bajo el menú fijo */
body {
    padding-top: 70px;
}

.fintech-nav-header-a33a10e4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    height: 70px;
    box-sizing: border-box;
}

/* Logo de 100px exactos */
.fintech-logo-a33a10e4 {
    display: flex;
    align-items: center;
}
.fintech-logo-a33a10e4 img {
    width: 100px !important;
    max-width: 100px !important;
    height: auto;
    display: block;
}

/* Menú Dropdown */
.fintech-menu-dropdown-a33a10e4 {
    display: none;
    background: linear-gradient(135deg, #5B3A9E 0%, #301660 100%);
    padding: 10px 20px 25px;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.fintech-menu-dropdown-a33a10e4.is-active-a33a10e4 {
    display: block;
}

.fintech-menu-list-a33a10e4 {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.fintech-menu-item-a33a10e4 {
    width: 100%;
    text-align: left;
}

.fintech-menu-item-a33a10e4 a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    padding: 10px 0;
}

/* Botones SVG setup */
.fintech-btn-comprar-a33a10e4 a svg,
.fintech-btn-sponsor-a33a10e4 a svg {
    margin-right: 8px;
}

/* Botón Comprar tickets */
.fintech-btn-comprar-a33a10e4 {
    margin-top: 15px;
}
.fintech-btn-comprar-a33a10e4 a {
    background-color: transparent;
    border: 1px solid rgba(255,255,255,0.8);
    border-radius: 50px;
    padding: 12px 25px;
    color: #fff;
    display: inline-flex;
    justify-content: center;
    font-weight: 600;
}

/* Botón Ser Sponsor */
.fintech-btn-sponsor-a33a10e4 {
    margin-top: 5px;
}
.fintech-btn-sponsor-a33a10e4 a {
    background-color: #fff;
    color: #FF1493;
    border: 1px solid #FF1493;
    border-radius: 50px;
    padding: 12px 25px;
    display: inline-flex;
    justify-content: center;
    font-weight: 600;
}

/* Estilos de Botón Hamburguesa Animado */
.fintech-hamburger-a33a10e4 {
    padding: 10px;
    display: inline-block;
    cursor: pointer;
    background-color: transparent;
    border: 0;
    margin: 0;
    z-index: 100000;
}

.hamburger-box {
    width: 30px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 30px;
    height: 3px;
    background-color: #fff;
    border-radius: 4px;
    position: absolute;
    transition: transform 0.15s ease;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -1.5px;
}

.hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block;
}

.hamburger-inner::before {
    top: -10px;
}

.hamburger-inner::after {
    bottom: -10px;
}

/* Animación Hamburguesa a X */
.fintech-hamburger-a33a10e4.active .hamburger-inner {
    transform: rotate(45deg);
}

.fintech-hamburger-a33a10e4.active .hamburger-inner::before {
    top: 0;
    opacity: 0;
}

.fintech-hamburger-a33a10e4.active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
}
