html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    background-color: #0f0f14;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
}

.logo-sarpe {
    font-size: 1.7rem;
    font-weight: bold;
    color: #ff2fa0 !important;
}

.hero {
    min-height: 420px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(rgba(15, 15, 20, 0.80),
            rgba(15, 15, 20, 0.95));
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
}

.hero-highlight {
    color: #ff2fa0;
}

.btn-sarpe {
    background-color: #ff2fa0;
    border-color: #ff2fa0;
    color: white;
}

.btn-sarpe:hover {
    background-color: #d91c82;
    border-color: #d91c82;
    color: white;
}

.btn-outline-sarpe {
    border: 1px solid #ff2fa0;
    color: #ff2fa0;
}

.btn-outline-sarpe:hover {
    background-color: #ff2fa0;
    color: white;
}

.seccion-sarpe {
    padding: 60px 0;
}

.titulo-seccion {
    font-weight: bold;
    margin-bottom: 30px;
}

.card-sarpe {
    background-color: #1a1a23;
    border: 1px solid #2c2c38;
    border-radius: 15px;
    overflow: hidden;
    color: white;
    transition: 0.2s;
}

.card-sarpe:hover {
    transform: translateY(-4px);
}

.card-sarpe img {
    height: 220px;
    width: 100%;
    object-fit: cover;
}

.texto-secundario {
    color: #a8a8b3;
}

/* =========================
   AUTENTICACION
========================= */

.auth-card {
    background: rgba(26, 26, 35, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 35px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.auth-volver {
    color: #a8a8b3;
    text-decoration: none;
}

.auth-volver:hover {
    color: #ffffff;
}

.auth-input {
    background-color: #121218;
    border: 1px solid #3a3a48;
    color: #ffffff;
    padding: 12px 15px;
    border-radius: 10px;
}

.auth-input:focus {
    background-color: #121218;
    color: #ffffff;
    border-color: #ff2fa0;
    box-shadow: 0 0 0 0.15rem rgba(255, 47, 160, 0.20);
}

.auth-input::placeholder {
    color: #77778a;
}

.auth-boton {
    padding: 12px;
    font-weight: bold;
    border-radius: 10px;
}

.auth-link {
    color: #ff2fa0;
    text-decoration: none;
    font-weight: 600;
}

.auth-link:hover {
    color: #ff68bb;
}

.negocio-box {
    background-color: #121218;
    border: 1px solid #30303d;
    border-radius: 12px;
    padding: 20px;
}

/* =========================
   FONDO ANIMADO TIPO FIESTA
========================= */

.auth-body {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(255, 47, 160, 0.12), transparent 30%),
        radial-gradient(circle at top right, rgba(0, 191, 255, 0.10), transparent 30%),
        radial-gradient(circle at bottom center, rgba(138, 43, 226, 0.14), transparent 35%),
        #0b0b12;
    display: flex;
    align-items: center;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

/* para que el formulario quede encima del fondo animado */
.auth-body .container {
    position: relative;
    z-index: 2;
}

.party-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

/* luces grandes difusas */
.light {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.45;
    animation: floatLight 10s ease-in-out infinite alternate;
}

.light-1 {
    width: 220px;
    height: 220px;
    background: rgba(255, 47, 160, 0.35);
    top: 10%;
    left: 8%;
    animation-delay: 0s;
}

.light-2 {
    width: 180px;
    height: 180px;
    background: rgba(0, 191, 255, 0.30);
    top: 65%;
    left: 15%;
    animation-delay: 2s;
}

.light-3 {
    width: 240px;
    height: 240px;
    background: rgba(138, 43, 226, 0.30);
    top: 15%;
    right: 10%;
    animation-delay: 1s;
}

.light-4 {
    width: 200px;
    height: 200px;
    background: rgba(255, 140, 0, 0.22);
    bottom: 10%;
    right: 18%;
    animation-delay: 3s;
}

/* destellos pequeños */
.spark {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.8);
    opacity: 0.6;
    animation: sparkle 4s infinite ease-in-out;
}

.spark-1 {
    top: 18%;
    left: 25%;
    animation-delay: 0s;
}

.spark-2 {
    top: 32%;
    right: 22%;
    animation-delay: 1s;
}

.spark-3 {
    bottom: 28%;
    left: 30%;
    animation-delay: 2s;
}

.spark-4 {
    bottom: 20%;
    right: 30%;
    animation-delay: 1.5s;
}

.spark-5 {
    top: 55%;
    left: 70%;
    animation-delay: 2.5s;
}

/* animaciones */
@keyframes floatLight {
    0% {
        transform: translateY(0px) translateX(0px) scale(1);
    }

    50% {
        transform: translateY(-20px) translateX(12px) scale(1.08);
    }

    100% {
        transform: translateY(18px) translateX(-12px) scale(0.96);
    }
}

@keyframes sparkle {

    0%,
    100% {
        opacity: 0.15;
        transform: scale(0.8);
    }

    50% {
        opacity: 0.95;
        transform: scale(1.6);
    }
}

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

.footer-sarpe {
    background-color: #15151d;
    border-top: 1px solid #2b2b36;
    padding: 28px 0 18px;
    margin-top: auto;
    color: #a8a8b3;
}

.footer-logo {
    color: #ff2fa0;
    font-size: 1.4rem;
    font-weight: 800;
    text-decoration: none;
}

.footer-logo:hover {
    color: #ff68bb;
}

.footer-texto {
    color: #9292a1;
}

.footer-contacto {
    color: #ff2fa0;
    text-decoration: none;
    font-weight: 600;
}

body:not(.auth-body) {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body:not(.auth-body) main {
    flex: 1;
}

/* =========================
   NAVBAR GLOBAL
========================= */

.navbar-sarpe {
    background:
        linear-gradient(90deg,
            rgba(20, 20, 30, 0.98),
            rgba(13, 13, 20, 0.98));

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    padding: 14px 0;

    backdrop-filter: blur(12px);

    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.20);
}

.navbar-sarpe .nav-link {
    color: #bdbdca;
    margin: 0 4px;
    transition: 0.2s ease;
}

.navbar-sarpe .nav-link:hover {
    color: #ffffff;
}

.navbar-correo {
    color: #9f9fac;
    font-size: 0.85rem;
}

.rol-badge {
    font-size: 0.65rem;
    letter-spacing: 1px;
    font-weight: 700;
    padding: 5px 9px;
    border-radius: 20px;
    margin-left: 8px;
}

.rol-business {
    background: rgba(0, 204, 255, 0.12);
    border: 1px solid rgba(0, 204, 255, 0.35);
    color: #55ddff;
}

.rol-admin {
    background: rgba(162, 89, 255, 0.14);
    border: 1px solid rgba(162, 89, 255, 0.40);
    color: #c99cff;
}

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

.page-hero {
    position: relative;

    padding: 55px 0 50px;

    overflow: hidden;

    background:
        radial-gradient(circle at 15% 30%,
            rgba(255, 47, 160, 0.18),
            transparent 28%),
        radial-gradient(circle at 80% 20%,
            rgba(116, 80, 255, 0.16),
            transparent 30%),
        linear-gradient(180deg,
            #13131b,
            #0f0f14);

    border-bottom:
        1px solid rgba(255, 255, 255, 0.06);
}

.page-hero::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    background:
        rgba(255, 47, 160, 0.08);

    border-radius: 50%;

    filter: blur(80px);

    right: -100px;
    top: -150px;

    pointer-events: none;
}

.page-hero h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 15px;
}

.page-hero-highlight {
    color: #ff2fa0;
}

.page-hero p {
    max-width: 900px;
    color: #a9a9b6;
    font-size: 1.1rem;
    line-height: 1.6rem;
    margin-bottom: 0;
}

/* =========================
   BUSINESS
========================= */

.business-hero {
    position: relative;
    padding: 55px 0;
    overflow: hidden;

    background:
        radial-gradient(circle at 15% 30%,
            rgba(0, 204, 255, 0.14),
            transparent 30%),
        radial-gradient(circle at 85% 20%,
            rgba(255, 47, 160, 0.15),
            transparent 30%),
        linear-gradient(180deg,
            #14141d,
            #0f0f14);

    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.business-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.7rem);
    font-weight: 800;
}

.business-hero p {
    max-width: 720px;
    color: #a9a9b6;
    font-size: 1.05rem;
}

.business-card img {
    height: 230px;
    object-fit: cover;
}

.business-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* =========================
   EVENTOS BUSINESS
========================= */

.evento-datos {
    background-color: #13131a;
    border: 1px solid #2c2c38;
    border-radius: 10px;
    padding: 12px 15px;
    margin-top: 8px;
}

.evento-datos p {
    color: #c2c2cc;
}

/* =========================
   FORMULARIOS BUSINESS
========================= */

.business-form-card {
    background-color: #1a1a23;
    border: 1px solid #2d2d39;
    border-radius: 18px;
    padding: 32px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.sarpe-form-control {
    background-color: #111118;
    border: 1px solid #383846;
    color: #ffffff;
    border-radius: 10px;
    padding: 11px 14px;
}

.sarpe-form-control:focus {
    background-color: #111118;
    color: #ffffff;
    border-color: #ff2fa0;
    box-shadow: 0 0 0 0.15rem rgba(255, 47, 160, 0.18);
}

.sarpe-form-control::placeholder {
    color: #757583;
}

.form-select.sarpe-form-control {
    color: #ffffff;
}

.form-select.sarpe-form-control option {
    background-color: #181820;
    color: #ffffff;
}

.form-help {
    display: block;
    margin-top: 7px;
    color: #81818f;
}

.upload-box {
    background-color: #111118;
    border: 1px dashed #454555;
    border-radius: 14px;
    padding: 25px;
    text-align: center;
}

.upload-icon {
    width: 46px;
    height: 46px;
    margin: 0 auto 12px;

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

    border-radius: 50%;

    background-color: rgba(47, 161, 255, 0.12);
    border: 1px solid rgba(255, 47, 160, 0.35);

    color: #ff2fa0;
    font-size: 1.7rem;
}

/* IMAGEN ACTUAL DEL EVENTO */

.imagen-actual-evento {
    background-color: #111118;
    border: 1px solid #343440;
    border-radius: 14px;
    padding: 10px;
    overflow: hidden;
}

.imagen-actual-evento img {
    width: 100%;
    max-height: 350px;
    object-fit: cover;
    border-radius: 10px;
}

/* =========================
   FOTOS - EDICION BUSINESS
========================= */

.foto-admin-card {
    background-color: #111118;
    border: 1px solid #343440;
    border-radius: 14px;
    padding: 10px;
}

.foto-admin-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
}

/* =========================
   REDES SOCIALES BUSINESS
========================= */

.social-config-card {
    display: flex;
    align-items: center;
    gap: 18px;

    background-color: #111118;
    border: 1px solid #343440;
    border-radius: 14px;

    padding: 18px;
}

.social-config-icon {
    min-width: 48px;
    height: 48px;

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

    border-radius: 12px;

    background:
        linear-gradient(135deg,
            rgba(255, 47, 160, 0.22),
            rgba(116, 80, 255, 0.18));

    border: 1px solid rgba(255, 47, 160, 0.30);

    color: #ff65bb;
    font-weight: 800;
    font-size: 0.9rem;
}

.business-info-box {
    background-color: rgba(0, 204, 255, 0.06);
    border: 1px solid rgba(0, 204, 255, 0.18);
    border-radius: 12px;
    padding: 15px 18px;
}

/* =========================
   HORARIOS BUSINESS
========================= */

.horario-dia-card {
    display: flex;
    align-items: center;
    gap: 25px;

    background-color: #111118;
    border: 1px solid #343440;
    border-radius: 14px;

    padding: 18px 20px;
    margin-bottom: 12px;

    transition: border-color .2s ease,
        background-color .2s ease;
}

.horario-dia-card:hover {
    border-color: #454555;
    background-color: #14141c;
}

.horario-dia-nombre {
    min-width: 115px;

    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
}

.cerrado-box {
    min-height: 46px;

    display: flex;
    align-items: center;

    background-color: #181820;
    border: 1px solid #343440;
    border-radius: 10px;

    padding: 10px 14px;
}

.cerrado-box .form-check {
    margin-bottom: 0;
}

.cerrado-box .form-check-input {
    cursor: pointer;
}

.cerrado-box .form-check-input:checked {
    background-color: #ff2fa0;
    border-color: #ff2fa0;
}

.cerrado-box .form-check-label {
    color: #d4d4dd;
    cursor: pointer;
}

/* RESPONSIVE */

@media (max-width: 767px) {

    .horario-dia-card {
        display: block;
    }

    .horario-dia-nombre {
        margin-bottom: 15px;
    }

}

/* =========================
   ADMIN
========================= */

.admin-hero {
    position: relative;

    padding: 55px 0;

    overflow: hidden;

    background:
        radial-gradient(circle at 15% 30%,
            rgba(162, 89, 255, 0.16),
            transparent 30%),
        radial-gradient(circle at 85% 20%,
            rgba(0, 204, 255, 0.10),
            transparent 30%),
        linear-gradient(180deg,
            #15131d,
            #0f0f14);

    border-bottom:
        1px solid rgba(255, 255, 255, 0.06);
}

.admin-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.7rem);
    font-weight: 800;
}

.admin-hero p {
    max-width: 720px;

    color: #a9a9b6;

    font-size: 1.05rem;

    margin-bottom: 0;
}

.admin-section-label {
    display: inline-block;

    color: #c99cff;

    font-size: 0.72rem;

    font-weight: 800;

    letter-spacing: 1.5px;
}

/* CONTADOR */

.admin-count {
    background-color: #191922;

    border: 1px solid #343440;

    border-radius: 10px;

    padding: 9px 15px;

    color: #aaaab7;

    font-size: 0.9rem;
}

.admin-count span {
    color: #ffffff;

    font-weight: 700;

    margin-right: 4px;
}

/* TABLA */

.admin-table-card {
    overflow: hidden;

    background-color: #181820;

    border: 1px solid #2d2d39;

    border-radius: 16px;

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.16);
}

.admin-table {
    --bs-table-bg: transparent;
    --bs-table-color: #e5e5ec;
    --bs-table-hover-bg: #1e1e28;
    --bs-table-hover-color: #ffffff;

    color: #e5e5ec;
}

.admin-table thead th {
    padding: 16px 18px;

    background-color: #111118;

    border-bottom: 1px solid #30303b;

    color: #8f8f9d;

    font-size: 0.75rem;

    text-transform: uppercase;

    letter-spacing: 0.8px;

    white-space: nowrap;
}

.admin-table tbody td {
    padding: 17px 18px;

    border-color: #292934;
}

/* USUARIO */

.admin-user-info {
    display: flex;

    align-items: center;

    gap: 12px;
}

.admin-avatar {
    min-width: 40px;
    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(135deg,
            rgba(162, 89, 255, 0.24),
            rgba(255, 47, 160, 0.18));

    border:
        1px solid rgba(162, 89, 255, 0.32);

    color: #d6b8ff;

    font-weight: 800;
}

.admin-id {
    color: #777785;

    font-size: 0.85rem;
}

.admin-email {
    color: #c4c4ce;

    font-size: 0.92rem;
}

/* ROLES */

.admin-role {
    border-radius: 20px;

    padding: 6px 9px;

    font-size: 0.68rem;

    letter-spacing: 0.7px;
}

.admin-role-admin {
    color: #d3b2ff;

    background:
        rgba(162, 89, 255, 0.14);

    border:
        1px solid rgba(162, 89, 255, 0.35);
}

.admin-role-business {
    color: #55ddff;

    background:
        rgba(0, 204, 255, 0.10);

    border:
        1px solid rgba(0, 204, 255, 0.30);
}

.admin-role-user {
    color: #ff80c5;

    background:
        rgba(255, 47, 160, 0.10);

    border:
        1px solid rgba(255, 47, 160, 0.28);
}

/* ESTADOS */

.admin-status {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    font-size: 0.78rem;

    font-weight: 700;
}

.status-dot {
    width: 8px;
    height: 8px;

    display: inline-block;

    border-radius: 50%;
}

.admin-status-active {
    color: #60df97;
}

.admin-status-active .status-dot {
    background-color: #42cf7d;

    box-shadow:
        0 0 8px rgba(66, 207, 125, 0.45);
}

.admin-status-inactive {
    color: #8d8d9a;
}

.admin-status-inactive .status-dot {
    background-color: #777783;
}

/* SIN RESULTADOS */

.admin-empty {
    background-color: #181820;

    border: 1px solid #30303b;

    border-radius: 16px;

    padding: 50px;

    text-align: center;
}

/* =========================
   ADMIN DASHBOARD
========================= */

.admin-dashboard-card {
    display: flex;
    flex-direction: column;

    position: relative;

    padding: 26px;

    background:
        linear-gradient(145deg,
            #1a1a23,
            #16161e);

    border: 1px solid #30303c;

    border-radius: 18px;

    overflow: hidden;

    transition:
        transform .2s ease,
        border-color .2s ease,
        box-shadow .2s ease;
}

.admin-dashboard-card:hover {
    transform: translateY(-4px);

    border-color:
        rgba(162, 89, 255, 0.40);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.22);
}

/* ICONO */

.admin-dashboard-icon {
    width: 52px;
    height: 52px;

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

    margin-bottom: 22px;

    border-radius: 14px;

    background:
        linear-gradient(135deg,
            rgba(162, 89, 255, 0.22),
            rgba(255, 47, 160, 0.14));

    border:
        1px solid rgba(162, 89, 255, 0.35);

    color: #d1b1ff;

    font-weight: 800;

    font-size: 0.9rem;
}

/* CONTENIDO */

.admin-dashboard-content {
    flex-grow: 1;
}

.admin-dashboard-content h3 {
    margin-top: 6px;
    margin-bottom: 10px;

    font-weight: 750;
}

.admin-dashboard-label {
    color: #9f7bd8;

    font-size: 0.68rem;

    font-weight: 800;

    letter-spacing: 1.2px;
}

/* INFO */

.admin-dashboard-info {
    display: flex;
    align-items: center;

    gap: 8px;

    margin-top: 20px;
    margin-bottom: 20px;

    padding-top: 15px;

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

    color: #8f8f9d;

    font-size: 0.82rem;
}

.admin-dashboard-info .status-dot {
    background-color: #a259ff;

    box-shadow:
        0 0 8px rgba(162, 89, 255, 0.45);
}

/* BOTON */

.btn-admin-dashboard {
    background:
        linear-gradient(90deg,
            #8c4dff,
            #b65cff);

    border: none;

    color: #ffffff;

    border-radius: 10px;

    padding: 11px 15px;

    font-weight: 650;

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.btn-admin-dashboard:hover {
    color: #ffffff;

    transform: translateY(-1px);

    box-shadow:
        0 8px 20px rgba(162, 89, 255, 0.22);
}

/* AVISO INFERIOR */

.admin-dashboard-notice {
    padding: 20px 22px;

    background:
        rgba(162, 89, 255, 0.06);

    border:
        1px solid rgba(162, 89, 255, 0.18);

    border-radius: 14px;
}

/* =========================
   CATALOGO PUBLICO
========================= */

.public-filter-card {
    padding: 25px;

    background-color: #181820;

    border: 1px solid #30303b;

    border-radius: 18px;

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.14);
}

/* LIMPIAR FILTROS */

.public-clear-filter {
    color: #b4b4c0;

    text-decoration: none;

    font-size: 0.88rem;

    transition: color .2s ease;
}

.public-clear-filter:hover {
    color: #ff2fa0;
}

/* CONTADOR */

.public-result-count {
    padding: 8px 14px;

    background-color: #181820;

    border: 1px solid #30303b;

    border-radius: 20px;

    color: #9999a6;

    font-size: 0.85rem;
}

.public-result-count span {
    margin-right: 4px;

    color: #ffffff;

    font-weight: 700;
}

/* =========================
   TARJETAS ESTABLECIMIENTOS
========================= */

.public-card-link {
    display: block;

    height: 100%;

    color: inherit;

    text-decoration: none;
}

.public-place-card {
    overflow: hidden;

    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}

.public-card-link:hover .public-place-card {
    transform: translateY(-5px);

    border-color:
        rgba(255, 47, 160, 0.35);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.24);
}

/* IMAGEN */

.public-place-image {
    position: relative;

    height: 240px;

    overflow: hidden;

    background-color: #111118;
}

.public-place-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .35s ease;
}

.public-card-link:hover .public-place-image img {
    transform: scale(1.04);
}

.public-place-image .sin-imagen {
    height: 100%;

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

/* CATEGORIA */

.public-category-badge {
    position: absolute;

    left: 15px;
    bottom: 15px;

    padding: 7px 10px;

    background:
        rgba(15, 15, 20, 0.88);

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

    border-radius: 20px;

    color: #ffffff;

    font-size: 0.72rem;

    backdrop-filter: blur(8px);
}

/* NOMBRE */

.public-place-title {
    margin-bottom: 7px;

    color: #ffffff;

    font-size: 1.25rem;

    font-weight: 750;
}

/* UBICACION */

.public-place-location {
    display: flex;

    flex-wrap: wrap;

    align-items: center;

    gap: 7px;

    color: #a1a1ae;

    font-size: 0.88rem;
}

.public-location-dot {
    color: #ff2fa0;
}

/* DESCRIPCION */

.public-place-description {
    display: -webkit-box;

    overflow: hidden;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;

    line-height: 1.55;
}

/* FOOTER TARJETA */

.public-place-footer {
    display: flex;

    align-items: center;

    justify-content: space-between;

    padding-top: 15px;

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

    color: #ffffff;

    font-size: 0.88rem;

    font-weight: 650;
}

.public-card-arrow {
    color: #ff2fa0;

    font-size: 1.2rem;

    transition: transform .2s ease;
}

.public-card-link:hover .public-card-arrow {
    transform: translateX(4px);
}

/* =========================
   SIN RESULTADOS
========================= */

.public-empty-state {
    padding: 60px 25px;

    background-color: #181820;

    border: 1px solid #30303b;

    border-radius: 18px;

    text-align: center;
}

.public-empty-icon {
    width: 55px;
    height: 55px;

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

    margin: 0 auto 18px;

    border-radius: 50%;

    background:
        rgba(255, 47, 160, 0.10);

    border:
        1px solid rgba(255, 47, 160, 0.25);

    color: #ff64bb;

    font-weight: 800;
}

/* =========================
   DETALLE ESTABLECIMIENTO
========================= */

.place-detail-hero {
    position: relative;

    padding: 65px 0 55px;

    overflow: hidden;

    background:
        radial-gradient(circle at 12% 25%,
            rgba(255, 47, 160, 0.16),
            transparent 28%),
        radial-gradient(circle at 82% 20%,
            rgba(116, 80, 255, 0.14),
            transparent 30%),
        linear-gradient(180deg,
            #15151e,
            #0f0f14);

    border-bottom:
        1px solid rgba(255, 255, 255, 0.06);
}

.place-detail-hero h1 {
    max-width: 900px;

    margin-bottom: 12px;

    color: #ffffff;

    font-size: clamp(2.5rem, 6vw, 4.7rem);

    font-weight: 850;
}

.public-detail-category {
    padding: 7px 11px;

    border-radius: 20px;

    background:
        rgba(255, 47, 160, 0.12);

    border:
        1px solid rgba(255, 47, 160, 0.32);

    color: #ff79c7;

    font-size: 0.72rem;
}

.place-detail-location {
    display: flex;
    align-items: center;

    gap: 8px;

    color: #aaaab7;

    font-size: 1rem;
}

.place-detail-description {
    max-width: 780px;

    margin-top: 25px;
    margin-bottom: 0;

    color: #c0c0ca;

    font-size: 1.05rem;

    line-height: 1.7;
}

/* =========================
   TITULOS DE SECCION
========================= */

.public-section-header {
    display: flex;

    justify-content: space-between;

    align-items: end;

    gap: 20px;

    margin-bottom: 22px;
}

.public-section-header h2 {
    margin-top: 4px;
    margin-bottom: 0;

    color: #ffffff;

    font-weight: 800;
}

.public-section-label {
    color: #ff65bb;

    font-size: 0.68rem;

    font-weight: 800;

    letter-spacing: 1.3px;
}

.public-section-link {
    color: #c2c2cd;

    text-decoration: none;

    font-size: 0.88rem;

    transition: color .2s ease;
}

.public-section-link:hover {
    color: #ff2fa0;
}

/* =========================
   GALERIA
========================= */

.place-gallery-item {
    height: 260px;

    overflow: hidden;

    background-color: #15151d;

    border: 1px solid #30303b;

    border-radius: 14px;
}

.place-gallery-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .3s ease;
}

.place-gallery-item:hover img {
    transform: scale(1.03);
}

/* =========================
   HORARIOS PUBLICOS
========================= */

.public-schedule-card {
    overflow: hidden;

    max-width: 760px;

    background-color: #181820;

    border: 1px solid #30303b;

    border-radius: 16px;
}

.public-schedule-row {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 15px 20px;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.06);
}

.public-schedule-row:last-child {
    border-bottom: none;
}

.public-schedule-day {
    min-width: 120px;

    color: #ffffff;

    font-weight: 700;
}

.schedule-open {
    color: #c3c3ce;

    font-size: 0.92rem;
}

.schedule-separator {
    margin: 0 6px;

    color: #676774;
}

.schedule-closed {
    color: #ff6c81;

    font-size: 0.88rem;

    font-weight: 700;
}

/* =========================
   EVENTOS EN DETALLE
========================= */

.public-event-card {
    overflow: hidden;
}

.public-event-image {
    position: relative;

    height: 210px;

    overflow: hidden;

    background-color: #111118;
}

.public-event-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.public-event-image .sin-imagen {
    height: 100%;

    display: flex;

    align-items: center;

    justify-content: center;
}

.public-event-badge {
    position: absolute;

    left: 14px;
    bottom: 14px;
}

.public-event-title {
    color: #ffffff;

    font-size: 1.2rem;

    font-weight: 750;
}

.public-event-date {
    display: flex;

    gap: 7px;

    color: #aaaab7;

    font-size: 0.88rem;
}

.public-event-description {
    display: -webkit-box;

    overflow: hidden;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

/* =========================
   BLOQUE LOGIN
========================= */

.public-login-gate {
    display: flex;

    align-items: center;

    gap: 22px;

    padding: 25px;

    background:
        linear-gradient(135deg,
            rgba(255, 47, 160, 0.07),
            rgba(116, 80, 255, 0.06));

    border:
        1px solid rgba(255, 47, 160, 0.18);

    border-radius: 18px;
}

.public-login-gate-icon {
    min-width: 52px;
    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background-color:
        rgba(255, 47, 160, 0.12);

    border:
        1px solid rgba(255, 47, 160, 0.30);

    color: #ff63ba;

    font-size: 1.5rem;
}

.public-login-gate-content {
    flex-grow: 1;
}

.public-login-gate-content h3 {
    margin-top: 4px;
    margin-bottom: 7px;
}

.public-login-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;
}

/* =========================
   INFO PRIVADA
========================= */

.public-info-card {
    padding: 25px;

    background-color: #181820;

    border: 1px solid #30303b;

    border-radius: 16px;
}

.public-info-card h4 {
    margin-bottom: 12px;

    font-weight: 750;
}

.public-info-icon {
    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 18px;

    border-radius: 12px;

    background:
        rgba(255, 47, 160, 0.10);

    border:
        1px solid rgba(255, 47, 160, 0.25);

    color: #ff68bd;

    font-weight: 800;
}

.public-social-btn {
    min-width: 120px;
}

/* =========================
   ESTADO VACIO PEQUEÑO
========================= */

.public-empty-mini {
    padding: 20px;

    background-color: #181820;

    border: 1px solid #30303b;

    border-radius: 12px;
}

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

@media (max-width: 767px) {

    .public-section-header {
        display: block;
    }

    .public-section-link {
        display: inline-block;

        margin-top: 10px;
    }

    .public-login-gate {
        display: block;
    }

    .public-login-gate-icon {
        margin-bottom: 18px;
    }

    .public-login-actions {
        margin-top: 20px;
    }

    .public-login-actions .btn {
        width: 100%;
    }

    .public-schedule-day {
        min-width: 95px;
    }

}

/* =========================================================
   HOME
========================================================= */

.home-hero {
    position: relative;
    min-height: 510px;
    display: flex;
    align-items: center;
    overflow: hidden;

    background:
        radial-gradient(circle at 75% 40%,
            rgba(255, 47, 160, .16),
            transparent 32%),
        radial-gradient(circle at 35% 30%,
            rgba(116, 80, 255, .13),
            transparent 32%),
        linear-gradient(180deg,
            #0d0d15,
            #11111a);

    border-bottom:
        1px solid rgba(255, 255, 255, .06);
}

.home-hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(90deg,
            rgba(15, 15, 20, .98) 0%,
            rgba(15, 15, 20, .82) 40%,
            rgba(15, 15, 20, .20) 75%,
            transparent 100%);

    z-index: 1;
}

.home-hero .container {
    position: relative;
    z-index: 3;
}

.home-hero-content {
    padding-top: 55px;
    padding-bottom: 95px;
}

.home-eyebrow,
.home-section-label {
    color: #ff63bb;
    font-size: .70rem;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.home-hero h1 {
    max-width: 620px;
    margin-top: 12px;

    font-size:
        clamp(3rem, 6vw, 5.3rem);

    font-weight: 850;
    line-height: .98;
}

.home-hero h1 span {
    display: block;

    background:
        linear-gradient(90deg,
            #ff2fa0,
            #bd5cff);

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.home-hero p {
    max-width: 570px;
    margin-top: 24px;

    color: #b6b6c2;
    font-size: 1.1rem;
    line-height: 1.7;
}


/* PERSONAJE */

.home-hero-character {
    position: relative;
    align-self: end;

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

.home-hero-character img {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 610px;
    max-height: 500px;

    object-fit: contain;
    object-position: bottom center;

    filter:
        drop-shadow(0 0 40px rgba(255, 47, 160, .16));
}


/* BRILLOS */

.home-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(85px);
    pointer-events: none;
}

.home-glow-1 {
    width: 300px;
    height: 300px;

    right: 12%;
    top: 5%;

    background:
        rgba(255, 47, 160, .15);
}

.home-glow-2 {
    width: 240px;
    height: 240px;

    right: 30%;
    bottom: -100px;

    background:
        rgba(116, 80, 255, .12);
}


/* =========================================================
   BUSCADOR HOME
========================================================= */

.home-search-wrapper {
    position: relative;
    z-index: 10;

    margin-top: -42px;
}

.home-search-card {
    padding: 18px;

    background:
        rgba(25, 25, 34, .96);

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

    border-radius: 18px;

    backdrop-filter: blur(18px);

    box-shadow:
        0 18px 50px rgba(0, 0, 0, .35);
}

.home-search-option {
    min-height: 65px;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 10px 13px;

    background: #111118;

    border:
        1px solid #30303c;

    border-radius: 12px;

    color: #ffffff;

    text-decoration: none;

    transition: .2s ease;
}

.home-search-option:hover {
    border-color:
        rgba(255, 47, 160, .45);

    color: #ffffff;
}

.home-search-option small {
    display: block;

    color: #7f7f8d;
    font-size: .70rem;
}

.home-search-option strong {
    display: block;

    margin-top: 2px;

    font-size: .86rem;
}

.home-search-icon {
    color: #ff55b1;
    font-size: 1.1rem;
}

.home-search-input {
    min-height: 65px;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 0 16px;

    background: #111118;

    border:
        1px solid #30303c;

    border-radius: 12px;
}

.home-search-input span {
    color: #ff55b1;
    font-size: 1.4rem;
}

.home-search-input input {
    width: 100%;

    background: transparent;
    border: none;
    outline: none;

    color: #ffffff;
}

.home-search-input input::placeholder {
    color: #737381;
}

.home-search-button {
    min-height: 65px;

    border-radius: 12px;

    font-weight: 700;
}


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

.home-section {
    padding: 75px 0 35px;
}

.home-section-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;

    margin-bottom: 26px;
}

.home-section-header h2 {
    margin-top: 5px;
    margin-bottom: 4px;

    font-weight: 800;
}

.home-view-all {
    color: #bcbcc8;
    text-decoration: none;

    font-size: .9rem;

    transition: .2s;
}

.home-view-all:hover {
    color: #ff2fa0;
}


/* TARJETAS */

.home-place-card,
.home-event-card {
    min-height: 100%;
}

.home-place-image {
    height: 190px;
}

.home-event-card .public-event-image {
    height: 190px;
}

.home-event-info {
    display: flex;
    gap: 7px;

    margin-bottom: 15px;

    color: #a7a7b4;

    font-size: .85rem;
}


/* =========================================================
   BANNER
========================================================= */

.home-discover-section {
    padding: 40px 0 10px;
}

.home-discover-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding: 30px;

    background:
        linear-gradient(120deg,
            rgba(255, 47, 160, .09),
            rgba(116, 80, 255, .07));

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

    border-radius: 18px;
}

.home-discover-banner h2 {
    margin-top: 5px;

    font-weight: 800;
}


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

.home-benefits-section {
    padding: 45px 0 70px;
}

.home-benefits {
    display: grid;

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

    background: #181820;

    border:
        1px solid #30303b;

    border-radius: 18px;

    overflow: hidden;
}

.home-benefit {
    display: flex;
    align-items: center;

    gap: 14px;

    padding: 22px;

    border-right:
        1px solid rgba(255, 255, 255, .06);
}

.home-benefit:last-child {
    border-right: none;
}

.home-benefit-icon {
    min-width: 42px;
    width: 42px;
    height: 42px;

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

    border-radius: 50%;

    background:
        linear-gradient(135deg,
            rgba(255, 47, 160, .20),
            rgba(116, 80, 255, .18));

    color: #ff73c3;
}

.home-benefit strong {
    font-size: .88rem;
}

.home-benefit p {
    margin: 3px 0 0;

    color: #8d8d99;

    font-size: .76rem;
}


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

@media (max-width: 991px) {

    .home-hero {
        min-height: auto;
    }

    .home-hero::before {
        background:
            rgba(15, 15, 20, .68);
    }

    .home-hero-content {
        padding-bottom: 20px;
    }

    .home-hero-character img {
        max-height: 380px;
    }

    .home-search-wrapper {
        margin-top: 20px;
    }

    .home-benefits {
        grid-template-columns:
            repeat(2, 1fr);
    }

}

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

/* TABLET */
@media (max-width: 991px) {

    body {
        overflow-x: hidden;
    }

    .home-hero {
        min-height: auto;
        padding-top: 20px;
    }

    .home-hero::before {
        background:
            linear-gradient(180deg,
                rgba(15, 15, 20, 0.92) 0%,
                rgba(15, 15, 20, 0.65) 55%,
                rgba(15, 15, 20, 0.85) 100%);
    }

    .home-hero-content {
        padding-top: 45px;
        padding-bottom: 25px;
        text-align: center;
    }

    .home-hero h1 {
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .home-hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .home-hero-content .d-flex {
        justify-content: center;
    }

    .home-hero-character {
        justify-content: center;
        margin-top: 10px;
    }

    .home-hero-character img {
        width: 75%;
        max-width: 430px;
        max-height: 390px;
    }


    /* BUSCADOR */

    .home-search-wrapper {
        margin-top: -15px;
    }

    .home-search-card {
        padding: 15px;
    }


    /* BENEFICIOS */

    .home-benefits {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-benefit:nth-child(2) {
        border-right: none;
    }

}


/* =========================================================
   CELULAR
========================================================= */

@media (max-width: 767px) {

    .home-hero {
        padding-top: 0;
    }


    /* TEXTO */

    .home-hero-content {
        padding-top: 45px;
        padding-bottom: 10px;
        text-align: left;
    }

    .home-eyebrow {
        font-size: 0.62rem;
        letter-spacing: 1.3px;
    }

    .home-hero h1 {
        font-size: clamp(2.7rem, 13vw, 3.8rem);
        line-height: 1.02;

        margin-top: 14px;
        margin-left: 0;
        margin-right: 0;
    }

    .home-hero h1 span {
        display: block;
    }

    .home-hero p {
        margin-top: 20px;
        margin-left: 0;
        margin-right: 0;

        font-size: 1rem;
        line-height: 1.65;
    }


    /* BOTONES HERO */

    .home-hero-content .d-flex {
        justify-content: flex-start;
        gap: 10px !important;
    }

    .home-hero-content .btn {
        font-size: 0.95rem;
        padding: 11px 16px;
    }


    /* PEREZOSO */

    .home-hero-character {
        margin-top: 10px;
        justify-content: center;
    }

    .home-hero-character img {
        width: 88%;
        max-width: 360px;
        max-height: 330px;

        object-fit: contain;
    }


    /* BUSCADOR */

    .home-search-wrapper {
        margin-top: 0;
        padding-top: 18px;
    }

    .home-search-card {
        padding: 12px;
        border-radius: 16px;
    }

    .home-search-option,
    .home-search-input {
        min-height: 58px;
    }

    .home-search-button {
        min-height: 52px;
    }


    /* SECCIONES */

    .home-section {
        padding: 55px 0 20px;
    }

    .home-section-header {
        display: block;
        margin-bottom: 20px;
    }

    .home-section-header h2 {
        font-size: 1.7rem;
    }

    .home-view-all {
        display: inline-block;
        margin-top: 10px;
    }


    /* TARJETAS */

    .home-place-image {
        height: 210px;
    }

    .home-event-card .public-event-image {
        height: 210px;
    }


    /* BANNER */

    .home-discover-section {
        padding-top: 30px;
    }

    .home-discover-banner {
        display: block;
        padding: 22px;
    }

    .home-discover-banner h2 {
        font-size: 1.6rem;
    }

    .home-discover-banner .btn {
        width: 100%;
        margin-top: 20px;
    }


    /* BENEFICIOS */

    .home-benefits {
        grid-template-columns: 1fr;
    }

    .home-benefit {
        border-right: none;
        border-bottom:
            1px solid rgba(255, 255, 255, .06);
    }

    .home-benefit:last-child {
        border-bottom: none;
    }

}


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

@media (max-width: 480px) {

    .home-hero-content {
        padding-top: 35px;
    }

    .home-hero h1 {
        font-size: 2.8rem;
    }

    .home-hero p {
        font-size: 0.95rem;
    }


    /* BOTONES UNO AL LADO DEL OTRO */

    .home-hero-content .btn {
        font-size: 0.88rem;
        padding: 10px 13px;
    }


    /* MASCOTA */

    .home-hero-character img {
        width: 92%;
        max-width: 330px;
    }


    /* BUSCADOR */

    .home-search-card {
        margin-left: 0;
        margin-right: 0;
    }

    .home-search-option {
        padding: 9px 12px;
    }

    .home-search-option strong {
        font-size: 0.82rem;
    }


    /* CONTENEDORES */

    .home-section,
    .home-benefits-section,
    .home-discover-section {
        overflow: hidden;
    }

}

/* =========================
   SELECTOR DE IDIOMA
========================= */

.language-selector {
    display: flex;
    align-items: center;
    gap: 7px;

    margin-right: 12px;

    font-size: 0.78rem;
    font-weight: 700;
}

.language-selector a {
    color: #a8a8b5;
    text-decoration: none;

    transition: color .2s ease;
}

.language-selector a:hover {
    color: #ff2fa0;
}

.language-selector span {
    color: #454552;
}

.home-hero h1 .home-title-white {
    display: block;
    color: #ffffff;
    background: none;
    -webkit-text-fill-color: #ffffff;
}

/* =========================
   PROMOCION DE EVENTOS
========================= */

.promo-package-card {
    display: block;

    position: relative;

    cursor: pointer;
}


.promo-package-card input {
    position: absolute;

    opacity: 0;

    pointer-events: none;
}


.promo-package-content {
    height: 100%;

    padding: 24px;

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

    border-radius: 18px;

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

    transition:
        border-color .2s ease,
        transform .2s ease,
        background .2s ease;
}


.promo-package-card:hover .promo-package-content {

    transform: translateY(-3px);

    border-color:
        rgba(255, 47, 160, .45);
}


.promo-package-card input:checked+.promo-package-content {

    border-color: #ff2fa0;

    background:
        rgba(255, 47, 160, .10);

    box-shadow:
        0 0 0 1px rgba(255, 47, 160, .18);
}


.promo-package-name {
    display: block;

    margin-bottom: 14px;

    font-size: .78rem;

    font-weight: 800;

    letter-spacing: .08em;

    text-transform: uppercase;

    color: #ff2fa0;
}


.promo-package-price {
    margin-bottom: 12px;

    font-weight: 800;

    color: #fff;
}


.promo-review-info {
    padding: 18px 20px;

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

    border-radius: 15px;

    background:
        rgba(47, 161, 255, .07);

    color: #d8eaff;
}

/* =========================
   ADMIN - PROMOCIONES
========================= */

.promo-admin-card {
    overflow: hidden;
}


/* ESTADO */

.promo-status {
    display: inline-flex;
    align-items: center;

    padding: 6px 11px;

    border-radius: 999px;

    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .06em;
}


.promo-status.pendiente {
    background: rgba(255, 193, 7, .12);
    color: #ffd76a;
}


.promo-status.aprobada {
    background: rgba(25, 210, 130, .12);
    color: #62e7aa;
}


.promo-status.rechazada {
    background: rgba(255, 70, 90, .12);
    color: #ff7c8a;
}


/* INFORMACION */

.promo-admin-details {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}


.promo-admin-details>div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}


.promo-admin-details small {
    color: #858596;

    font-size: .72rem;

    text-transform: uppercase;
}


/* COMPROBANTE */

.promo-proof-link {
    display: block;

    color: #fff;

    text-decoration: none;
}


.promo-proof-image {
    width: 100%;
    height: 150px;

    object-fit: cover;

    border-radius: 14px;

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

    margin-bottom: 8px;
}


.promo-proof-link span {
    color: #ff2fa0;

    font-size: .85rem;
    font-weight: 700;
}


/* ACCIONES */

.promo-admin-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}


/* MODAL */

.sarpe-modal {
    background: #15151d;

    color: #fff;

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

    border-radius: 18px;
}

/* =========================
   ESTADO PROMOCION - DUEÑO
========================= */

.promo-owner-status {
    padding: 16px 18px;

    border-radius: 14px;

    font-size: .88rem;
}


.promo-owner-status-title {
    display: flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 6px;

    font-weight: 800;
}


.promo-owner-dot {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    flex-shrink: 0;
}


/* PENDIENTE */

.promo-owner-pending {
    border: 1px solid rgba(255, 193, 7, .25);

    background: rgba(255, 193, 7, .07);

    color: #f4e5b3;
}


.promo-owner-pending .promo-owner-dot {
    background: #ffc107;
}


/* APROBADA */

.promo-owner-approved {
    border: 1px solid rgba(25, 210, 130, .25);

    background: rgba(25, 210, 130, .07);

    color: #c9f5df;
}


.promo-owner-approved .promo-owner-dot {
    background: #19d282;
}


/* RECHAZADA */

.promo-owner-rejected {
    border: 1px solid rgba(255, 70, 90, .25);

    background: rgba(255, 70, 90, .07);

    color: #ffd0d5;
}


.promo-owner-rejected .promo-owner-dot {
    background: #ff465a;
}