@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
    /* Brand Colors */
    --lm-blue: #1E56CB;
    --lm-blue-dark: #153B8C;
    --lm-blue-darkest: #0A1B40;

    /* Surface Colors */
    --surface-light: #FFFFFF;
    --surface-bg: #F8F9FA;
    --surface-gray: #E0E0E0;

    /* Text Colors */
    --text-primary: #1F1F1F;
    --text-secondary: #5A5A5A;
    --text-inverse: #FFFFFF;

    /* Smart Badges */
    --badge-presale: #8B5CF6;
    /* Purple */
    --badge-soldout: #EF4444;
    /* Red */
    --badge-new: #10B981;
    /* Green */

    --font-main: 'Gilroy', 'Outfit', sans-serif;
    --font-heading: 'Gilroy', 'Outfit', sans-serif;
    --radius-md: 8px;
    --radius-lg: 12px;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--surface-bg);
    color: var(--text-primary);
    line-height: 1.5;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 800;
}



/* ================== BUTTONS ================== */
.btn-primary {
    background: var(--lm-blue);
    color: var(--text-inverse);
    padding: 10px 24px;
    border-radius: 24px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--lm-blue-dark);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-outline {
    background: transparent;
    color: var(--text-inverse);
    padding: 14px 32px;
    border-radius: 24px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid var(--text-inverse);
    cursor: pointer;
    transition: var(--transition);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}



/* ================== MAIN CONTENT & DISCOVERY ================== */
.main-content {
    max-width: 1600px;
    margin: 48px auto;
    padding: 0 48px;
}

.event-section {
    margin-bottom: 64px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 24px;
}

.section-title {
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-primary);
}

.view-all {
    color: var(--lm-blue);
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
}

.view-all:hover {
    text-decoration: underline;
}

.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
}

.carousel-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 16px;
    /* for shadow */
    scrollbar-width: none;
    /* Firefox */
}

.carousel-track::-webkit-scrollbar {
    display: none;
    /* Chrome */
}

.carousel-btn {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--surface-light);
    border: 1px solid var(--surface-gray);
    box-shadow: var(--shadow-md);
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition);
}

.carousel-btn:hover {
    background: var(--surface-bg);
    transform: translateY(-50%) scale(1.05);
}

.prev-btn {
    left: -24px;
}

.next-btn {
    right: -24px;
}

/* ================== DISCOVERY HUB (Categories & Dates) ================== */

/* Urgency Pulse Ring */
.pulse-ring {
    width: 12px;
    height: 12px;
    background-color: var(--badge-new);
    /* Green urgency */
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* City Explorer Stories */
.city-stories-list {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.city-stories-list::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari and Opera */
}

.city-story {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    cursor: pointer;
    min-width: 90px;
}

.story-image-ring {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(45deg, var(--lm-blue), #8b5cf6);
    /* Sympla-like gradient */
    transition: transform 0.3s ease;
}

.city-story:hover .story-image-ring {
    transform: scale(1.05);
}

.story-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    /* White gap between image and ring */
}

.story-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    max-width: 100px;
    line-height: 1.2;
}

/* ================== EVENT CARDS ================== */
.event-card {
    min-width: 360px; /* Alargado para suportar imagem panorâmica */
    width: 360px;
    background: transparent;
    overflow: visible;
    position: relative;
    box-shadow: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.event-card:hover {
    transform: translateY(-2px);
}

.card-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1110 / 428; /* Proporção exata da sua imagem */
    overflow: hidden;
    background: var(--surface-gray);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s ease;
}

.event-card:hover .card-image-wrapper {
    box-shadow: var(--shadow-md);
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-card:hover .card-img {
    transform: scale(1.05);
}

.card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    color: white;
    letter-spacing: 0.5px;
    z-index: 2;
}

.badge-new {
    background: var(--badge-new);
}

.badge-soldout {
    background: var(--badge-soldout);
}

.badge-presale {
    background: var(--badge-presale);
}

.card-info {
    padding: 0 4px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.card-title {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 2px;
    line-height: 1.25;
    color: var(--text-primary);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-meta {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.card-date {
    font-weight: 800;
    color: var(--lm-blue);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ================== FOOTER ================== */
.site-footer {
    background: var(--lm-blue-darkest);
    color: var(--surface-light);
    padding: 80px 24px 24px;
    margin-top: 80px;
    border-radius: 40px 40px 0 0;
}

.footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 64px;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--surface-light);
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links a {
    color: #A0AEC0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--surface-light);
}

.app-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.app-btn {
    background: #1F1F1F;
    color: white;
    border: 1px solid #333;
    padding: 12px;
    border-radius: 8px;
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.app-btn:hover {
    background: #2D2D2D;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--lm-blue);
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #A0AEC0;
}

.footer-compliance p {
    margin-bottom: 4px;
}

.footer-trust {
    display: flex;
    gap: 16px;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
}

/* ================== AETHER FESTIVAL - B2C HERO & NAV ================== */
.hero-carousel {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 1110 / 428;
    max-height: 600px;
    overflow: hidden;
    background: #0A0F1A;
}

@media (min-width: 768px) {
    .hero-carousel {
        max-height: 600px;
    }
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out, transform 8s linear;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.95) 100%);
    z-index: 3;
    display: flex;
    align-items: flex-end;
    padding-bottom: 60px;
}

.hero-content-wrapper {
    width: 100%;
    color: #fff;
}

.hero-tag {
    display: inline-block;
    background: var(--lm-blue);
    color: #fff;
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.hero-title {
    color: #ffffff !important;
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 12px;
    max-width: 800px;
    text-shadow: 0px 4px 16px rgba(0, 0, 0, 0.9);
    font-family: var(--font-main);
}

.hero-meta {
    color: #ffffff !important;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.hero-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.carousel-indicators {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 4;
}

.indicator {
    width: 32px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #fff;
    width: 48px;
}

.b2c-header {
    background: #fff;
    border-bottom: 1px solid var(--surface-gray);
    position: relative;
    z-index: 100;
    height: 72px;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.b2c-header .search-input {
    background: var(--surface-bg);
    color: var(--text-primary);
    width: 100%;
    padding: 12px 20px 12px 48px;
    border-radius: 24px;
    border: none;
    font-family: inherit;
    font-size: 14px;
    transition: all 0.3s ease;
}

.search-bar-center {
    flex: 1;
    max-width: 500px;
    margin: 0 32px;
    position: relative;
    display: flex;
    align-items: center;
}

.b2c-header .search-icon {
    color: var(--text-secondary);
    position: absolute;
    left: 16px;
}

.b2c-header .link-auth {
    color: var(--text-secondary);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Category and Quick Dates replaced by DISCOVERY HUB */

/* ================== EVENT PAGE ================== */
.event-page-body {
    background-color: var(--surface-bg);
}

.event-hero {
    width: 100%;
    height: auto;
    aspect-ratio: 1110 / 428;
    max-height: 600px;
    background-size: cover;
    background-position: top center;
    position: relative;
    display: flex;
    align-items: flex-end;
    color: white;
}

.event-hero-content {
    padding-bottom: 48px;
    width: 100%;
    position: relative;
    z-index: 3;
}

.event-title-glass-box {
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 32px 40px;
    color: white;
    margin-bottom: -16px;
    display: inline-block;
    max-width: 80%;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}

.event-badge-highlight {
    background: var(--lm-blue);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
    margin-bottom: 16px;
}

.event-main-title {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 16px;
    text-shadow: none;
}

.event-hero-meta {
    display: flex;
    gap: 24px;
    font-size: 16px;
    font-weight: 500;
    text-shadow: none;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.meta-icon {
    width: 20px;
    height: 20px;
    opacity: 0.8;
}

/* Event Layout Grid */
.event-layout-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(320px, 1fr);
    gap: 48px;
    margin-top: 48px;
    align-items: stretch;
}

.detail-section {
    margin-bottom: 48px;
    background: white;
    padding: 32px;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
}

.detail-section:last-child {
    margin-bottom: 0;
}

.detail-section h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.detail-text p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.8;
}

.detail-text img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 16px 0;
}

.location-card {
    display: flex;
    gap: 24px;
    border: 1px solid var(--surface-gray);
    border-radius: 16px;
    overflow: hidden;
}

.location-map-placeholder {
    width: 150px;
    height: 150px;
    position: relative;
    background: #e2e8f0;
}

.map-overlay-text {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    font-weight: 700;
    padding: 16px;
}

.location-details {
    padding: 24px 24px 24px 0;
    flex: 1;
}

.policy-list {
    list-style: none;
    padding: 0;
}

.policy-list li {
    padding-left: 24px;
    position: relative;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
}

.policy-list li::before {
    content: "•";
    color: var(--lm-blue);
    font-weight: bold;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: -2px;
}

/* Sticky Ticket Sidebar */
.event-sidebar-column {
    /* Height will now stretch to parent height */
}

.tickets-sticky-panel {
    position: sticky;
    top: 24px;
    background: white;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    max-height: calc(100vh - 40px);
}

.panel-header {
    background: var(--lm-blue-darkest);
    color: white;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.panel-header h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    margin: 0;
}

.lote-info {
    font-size: 12px;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 8px;
    border-radius: 4px;
}

.ticket-options-list {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow-y: auto;
    flex: 1 1 auto;
    min-height: 0;
}

.ticket-options-list::-webkit-scrollbar {
    width: 6px;
}
.ticket-options-list::-webkit-scrollbar-track {
    background: transparent;
}
.ticket-options-list::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.ticket-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border: 1px solid var(--surface-gray);
    border-radius: 12px;
    transition: var(--transition);
}

.ticket-row:hover {
    border-color: var(--lm-blue);
}

.ticket-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 0;
    padding-right: 16px;
}

.ticket-name {
    font-weight: 700;
    font-size: 15px;
    color: var(--text-primary);
    word-break: break-word;
    line-height: 1.3;
}

.ticket-price {
    font-weight: 800;
    color: var(--lm-blue);
}

.ticket-tax {
    font-size: 11px;
    color: var(--text-secondary);
}

.ticket-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--surface-bg);
    padding: 4px 8px;
    border-radius: 20px;
    border: 1px solid var(--surface-gray);
    flex-shrink: 0;
}

.qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: white;
    color: var(--lm-blue);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.qty-btn:active {
    transform: scale(0.95);
}

.qty-display {
    font-weight: 700;
    width: 20px;
    text-align: center;
}

.panel-summary {
    background: var(--surface-bg);
    padding: 24px;
    border-top: 1px solid var(--surface-gray);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 500;
}

.summary-total {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px dashed var(--surface-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 18px;
}

.total-value {
    color: #10B981;
    /* Green for total */
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 900;
}

.btn-checkout {
    display: block;
    width: 100%;
    background: var(--badge-new);
    /* Green */
    color: white;
    text-align: center;
    padding: 16px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    font-size: 16px;
    margin-top: 24px;
    transition: var(--transition);
    border: none;
}

.btn-checkout:hover:not([disabled]) {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(16, 185, 129, 0.3);
}

.btn-checkout[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
}
/* ================== UX PREMIUM: ACCORDION DE SETOR ================== */
.sector-group {
    margin-bottom: 24px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.04);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.sector-group:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.sector-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: linear-gradient(to right, #ffffff, #f8fafc);
    cursor: pointer;
    user-select: none;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.sector-group:not(.is-open) .sector-header {
    border-bottom: none;
}

.sector-title {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sector-title h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 800;
    color: var(--lm-blue);
    display: flex;
    align-items: center;
    gap: 8px;
}

.sector-count-pill {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: opacity 0.2s;
}

.sector-group.is-open .sector-count-pill {
    opacity: 0;
    visibility: hidden;
    height: 0;
}

.sector-toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lm-blue);
    transition: all 0.2s;
}

.sector-header:hover .sector-toggle {
    background: #e2e8f0;
}

.sector-chevron {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sector-group.is-open .sector-chevron {
    transform: rotate(180deg);
}

.sector-body {
    display: none;
    padding: 8px 24px 24px 24px;
    animation: sectorSlideDown 0.3s ease-out forwards;
}

.sector-group.is-open .sector-body {
    display: block;
}

@keyframes sectorSlideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.sector-body .ticket-row {
    padding: 16px 0;
    border: none;
    border-bottom: 1px dashed #e2e8f0;
    border-radius: 0;
}

.sector-body .ticket-row:last-child {
    border-bottom: none;
}

/* --------- PREMIUM CHECKOUT UTILS (B2C) --------- */
body.checkout-body {
    background-color: #f8f9fa; /* Cinza claro estilo Sympla */
}

.checkout-header-premium {
    background: #1e1e24; /* Header escuro minimalista */
    border-bottom: none;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.floating-group {
    position: relative;
    width: 100%;
}
.floating-input {
    width: 100%;
    padding: 24px 16px 8px 16px;
    border: 1px solid #e2e8f0; /* Bordas mais sutis */
    border-radius: 10px; /* Levemente mais arredondado */
    font-size: 15px;
    font-family: inherit;
    font-weight: 600;
    color: var(--text-primary);
    background: #f8fafc; /* Fundo cinza clarinho/azulado (gordinho reference) */
    transition: all 0.2s ease;
    outline: none;
    box-sizing: border-box;
}
.floating-input:focus {
    border-color: var(--lm-blue);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(30, 86, 203, 0.1);
}
.floating-label {
    position: absolute;
    left: 17px;
    top: 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    pointer-events: none;
    transition: top 0.2s ease, font-size 0.2s ease, color 0.2s ease;
}
.floating-input:focus ~ .floating-label,
.floating-input:not(:placeholder-shown) ~ .floating-label {
    top: 6px;
    font-size: 11px;
    font-weight: 700;
    color: var(--lm-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.floating-input.has-error {
    border-color: #ef4444;
}
.floating-input.has-error ~ .floating-label {
    color: #ef4444;
}

.checkout-card-premium {
    background: white;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02); /* Sombra quase invisível */
    border: 1px solid #e5e7eb; /* Borda flat cinza */
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

/* Wizard / Accordion classes */
.checkout-card-premium.disabled {
    opacity: 0.5;
    pointer-events: none;
    filter: grayscale(1);
}

.step-summary {
    transition: all 0.3s ease;
}

.checkout-card-premium.collapsed .step-content {
    display: none !important;
}

.checkout-card-premium.collapsed .step-summary {
    display: flex !important;
}

.checkout-card-premium.collapsed .step-header {
    margin-bottom: 0 !important;
}

.checkout-card-premium.collapsed .step-number {
    background: var(--lm-blue) !important;
    color: white !important;
}

/* ═══════════════════════════════════════════
   PRE-CHECKOUT AUTH MODAL (Glassmorphism)
   ═══════════════════════════════════════════ */
.auth-modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 99999; /* Ensure top-level */
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 24px;
    overflow-y: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.auth-modal-overlay.active {
    opacity: 1;
}

.auth-modal-container {
    background: #ffffff;
    width: 100%;
    max-width: 500px;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin: auto;
}

.auth-modal-container::-webkit-scrollbar {
    width: 0px; /* Hide scrollbar for container since it's on overlay now */
}

.auth-modal-overlay.active .auth-modal-container {
    transform: translateY(0);
}

.auth-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
}

.auth-modal-close:hover {
    background: #e2e8f0;
    color: #0f172a;
}

/* Cloudflare Turnstile & Spinners */
.cf-turnstile-wrapper {
    min-height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Remove borders from the mocked or real iframe */
.cf-turnstile-wrapper iframe, .cf-turnstile-wrapper > div {
    border: none !important;
    box-shadow: none !important;
}

/* Magic Link Custom Input Styles */
.magic-input {
    padding: 28px 16px 12px 16px !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    border-radius: 12px !important;
    color: #0f172a !important;
}

.magic-label {
    top: 20px !important;
    font-size: 15px !important;
    color: #64748b !important;
    font-weight: 500 !important;
}

.magic-input:focus ~ .magic-label,
.magic-input:not(:placeholder-shown) ~ .magic-label {
    top: 6px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    color: var(--lm-blue) !important;
    letter-spacing: 0.5px !important;
}

.btn-primary, .btn-secondary {
    position: relative;
}

.btn-primary .btn-text, .btn-secondary .btn-text {
    transition: opacity 0.2s ease;
}

.btn-primary.loading, .btn-secondary.loading {
    pointer-events: none;
    opacity: 0.9;
}

.btn-primary.loading .btn-text, .btn-secondary.loading .btn-text {
    opacity: 0;
}

.btn-primary.loading::after, .btn-secondary.loading::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 20px;
    margin-left: -10px;
    margin-top: -10px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: btn-spin 0.8s linear infinite;
}

.btn-secondary.loading::after {
    border: 3px solid rgba(30, 86, 203, 0.2);
    border-top-color: var(--lm-blue);
}

@keyframes btn-spin {
    to { transform: rotate(360deg); }
}

.btn-spinner {
    display: none !important;
}

/* Trust Footer */
.modal-trust-footer {
    user-select: none;
}

/* ================== CITY EXPLORER MODAL (STANDARDIZED) ================== */
.city-modal-container {
    padding: 0; /* Override auth-modal padding to allow banner */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-height: 80vh;
}

.city-modal-header {
    height: 160px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
}

.city-modal-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}

.city-modal-header h2, .city-modal-header p {
    position: relative;
    z-index: 2;
    margin: 0;
}

.city-modal-header h2 {
    color: #fff;
    font-size: 2rem;
    font-weight: 900;
}

.city-modal-header p {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
}

.city-modal-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
}

/* Events List */
.explorer-events-list {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-right: 8px;
}

.explorer-events-list::-webkit-scrollbar { width: 4px; }
.explorer-events-list::-webkit-scrollbar-track { background: rgba(0,0,0,0.03); border-radius: 4px; }
.explorer-events-list::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.15); border-radius: 4px; }

.explorer-event-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 16px;
    border-radius: 12px;
    color: #334155;
    animation: slideUpFade 0.3s ease forwards;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.explorer-event-card:hover {
    transform: translateY(-2px);
    border-color: var(--lm-blue);
}

.explorer-event-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--lm-blue);
    margin: 0 0 4px 0;
}

.explorer-event-details {
    font-size: 0.85rem;
    color: #64748B;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.explorer-event-details svg {
    color: var(--lm-blue);
}

.explorer-action-btn {
    display: block;
    background: var(--lm-blue);
    color: #fff;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    text-align: center;
    border: none;
    cursor: pointer;
}

.explorer-action-btn:hover {
    background: #1545A6;
}

@keyframes slideUpFade {
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .city-explorer-modal {
        flex-direction: column;
        height: 90vh;
        max-height: none;
        align-self: flex-end;
        border-radius: 24px 24px 0 0;
        animation: slideUpModal 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    }
    
    .city-explorer-overlay {
        padding: 0;
        align-items: flex-end;
    }

    @keyframes slideUpModal {
        from { transform: translateY(100%); }
        to { transform: translateY(0); }
    }

    .city-explorer-banner {
        flex: none;
        height: 200px;
        padding: 20px;
    }

    .city-explorer-title-area h2 {
        font-size: 2rem;
    }

    .city-explorer-content {
        flex: 1;
        max-width: none;
        padding: 20px;
    }
}

/* ================== SPLIT EDITORIAL HERO SECTION ================== */
.split-hero-section {
    width: 100%;
    min-height: 75vh;
    background: #ffffff; /* Pure white */
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #f1f5f9;
    padding: 40px 0 56px;
}

.split-container {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1720px;
    margin: 0 auto;
    padding: 0 48px; /* Fixed padding for ultra-wide screens */
    gap: 56px;
}

/* Header Nav Links */
.nav-links-center {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-link-item {
    font-size: 14px;
    font-weight: 600;
    color: #475569;
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
    padding: 6px 0;
}
.nav-link-item:hover, .nav-link-item.active {
    color: var(--lm-blue);
}
.nav-link-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--lm-blue);
    border-radius: 2px;
}

/* Left Side: Editorial Typography & Search Hub */
.split-left {
    flex: 0 0 520px;
    max-width: 540px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 5;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #475569;
    margin-bottom: 20px;
    width: fit-content;
}

.eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--lm-blue);
    box-shadow: 0 0 0 3px rgba(30, 86, 203, 0.2);
}

.split-title {
    font-size: clamp(2.4rem, 3.8vw, 4rem);
    font-weight: 900;
    line-height: 1.05;
    color: #000000;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
}

.split-subtitle {
    font-size: 16px;
    line-height: 1.5;
    color: #64748b;
    margin-bottom: 32px;
    font-weight: 400;
}

/* Discovery Search Card */
.split-search-box {
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #ffffff;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06), 0 2px 6px rgba(0, 0, 0, 0.03);
}

.split-input-wrapper, .split-filter-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: #f8fafc;
    border: 1px solid #edf2f7;
    border-radius: 12px;
    transition: all 0.25s ease;
}

.split-input-wrapper:focus-within, .split-filter-wrapper:focus-within {
    background: #ffffff;
    border-color: var(--lm-blue);
    box-shadow: 0 0 0 3px rgba(30, 86, 203, 0.12);
}

.split-input, .split-select {
    border: none;
    outline: none;
    background: transparent;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    width: 100%;
    color: var(--text-primary);
}

.split-select {
    appearance: none;
    cursor: pointer;
}

.split-search-btn {
    background: var(--lm-blue);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 16px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 6px 18px rgba(30, 86, 203, 0.3);
}

.split-search-btn:hover {
    background: #17429b;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(30, 86, 203, 0.4);
}

/* Quick Categories */
.split-categories {
    margin-top: 24px;
}

.split-cat-label {
    font-size: 12px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 10px;
    display: block;
}

.split-cat-list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.split-cat-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    text-decoration: none;
    transition: all 0.2s ease;
}

.split-cat-item:hover, .split-cat-item.active {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
    transform: translateY(-1px);
}
.split-cat-item.active {
    background: var(--lm-blue);
    border-color: var(--lm-blue);
    box-shadow: 0 4px 12px rgba(30, 86, 203, 0.25);
}

/* Right Side: GRAND CINEMATIC BANNER */
.split-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-width: 0;
}

.split-frame {
    width: 100%;
    max-width: 1080px; /* Grand, commanding width! */
    aspect-ratio: 1110 / 480; /* Matches native 1110x428 proportions */
    min-height: 380px;
    position: relative;
    border-radius: 24px;
    background: #0b0f19;
    box-shadow: 0 24px 64px -8px rgba(0, 0, 0, 0.22), 0 8px 24px -4px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.split-frame:hover {
    transform: translateY(-4px);
    box-shadow: 0 32px 80px -8px rgba(0, 0, 0, 0.28), 0 12px 32px -4px rgba(0, 0, 0, 0.12);
}

.split-banner-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    background: #0b0f19;
}

.split-slide {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
    transform: scale(1.03);
    cursor: pointer;
    background: #0b0f19;
}

.split-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.split-slide::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0; height: 75%;
    background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.6) 40%, rgba(0,0,0,0.1) 75%, transparent 100%);
    pointer-events: none;
}

.split-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.split-info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 36px 40px;
    z-index: 10;
    color: #ffffff;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.split-info-title {
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 900;
    line-height: 1.1;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.85);
    margin: 0;
}

.split-info-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.85);
    flex-wrap: wrap;
}

.split-info-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.split-cta-wrapper {
    margin-top: 6px;
    display: inline-flex;
    width: fit-content;
    pointer-events: auto;
}

.split-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px 10px 16px;
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.2px;
    box-shadow: 0 8px 24px -4px rgba(37, 99, 235, 0.5), 0 4px 12px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    user-select: none;
}

.split-cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    color: #ffffff;
    flex-shrink: 0;
    transition: transform 0.25s ease, background 0.25s ease;
}

.split-cta-text {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.split-cta-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #ffffff;
    flex-shrink: 0;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background 0.25s ease;
}

.split-slide:hover .split-cta-btn,
.split-cta-btn:hover {
    transform: translateY(-2px) scale(1.02);
    background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 100%);
    border-color: rgba(255, 255, 255, 0.55);
    box-shadow: 0 12px 32px -2px rgba(37, 99, 235, 0.7), 0 6px 16px rgba(0, 0, 0, 0.4);
}

.split-slide:hover .split-cta-btn .split-cta-arrow,
.split-cta-btn:hover .split-cta-arrow {
    transform: translateX(3px);
    background: rgba(255, 255, 255, 0.35);
}

.split-slide:hover .split-cta-btn .split-cta-icon,
.split-cta-btn:hover .split-cta-icon {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.28);
}

.split-cta-btn:active {
    transform: translateY(0) scale(0.98);
}

/* Banner Carousel Controls */
.split-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    z-index: 20;
    transition: all 0.25s ease;
    opacity: 0;
}

.split-frame:hover .split-nav-btn {
    opacity: 1;
}

.split-nav-btn.prev {
    left: 16px;
}

.split-nav-btn.next {
    right: 16px;
}

.split-nav-btn:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-50%) scale(1.1);
}

/* Dots */
.split-dots {
    position: absolute;
    bottom: 24px;
    right: 36px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 20;
}

.split-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.split-dot.active {
    width: 24px;
    border-radius: 12px;
    background: var(--lm-blue);
    box-shadow: 0 0 10px rgba(30, 86, 203, 0.8);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .split-container {
        flex-direction: column;
        gap: 40px;
    }
    .split-left {
        flex: 1;
        max-width: 100%;
        width: 100%;
    }
    .split-right {
        width: 100%;
    }
    .split-frame {
        max-width: 100%;
    }
}

/* ================== SMART EVENT DISCOVERY HUB ================== */
.discovery-section {
    margin-bottom: 72px;
}

.discovery-header-premium {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 32px;
    gap: 24px;
    flex-wrap: wrap;
}

.dhp-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dhp-badge-live {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #2563eb;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(37, 99, 235, 0.1);
    padding: 4px 12px;
    border-radius: 999px;
    width: fit-content;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #2563eb;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7);
    animation: pulse-blue 1.5s infinite cubic-bezier(0.66, 0, 0, 1);
}

@keyframes pulse-blue {
    to {
        box-shadow: 0 0 0 10px rgba(37, 99, 235, 0);
    }
}

.discovery-title-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.discovery-title {
    font-size: clamp(32px, 4vw, 42px) !important;
    font-weight: 900 !important;
    color: #0f172a !important;
    letter-spacing: -1px;
    margin: 0;
    text-transform: uppercase;
    line-height: 1.1;
}

.discovery-subtitle {
    font-size: 16px;
    color: #64748b;
    margin: 0;
    font-weight: 500;
    max-width: 600px;
}

.dhp-right {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.dhp-facepile {
    display: flex;
    align-items: center;
}

.fp-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid #ffffff;
    object-fit: cover;
    margin-left: -12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}

.fp-avatar:first-child {
    margin-left: 0;
}

.fp-avatar:hover {
    transform: translateY(-2px) scale(1.05);
    z-index: 10;
}

.fp-more {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid #ffffff;
    background: #f1f5f9;
    color: #475569;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.dhp-filters {
    display: flex;
    gap: 8px;
    background: #f8fafc;
    padding: 4px;
    border-radius: 999px;
    border: 1px solid #e2e8f0;
}

.dhp-filter {
    border: none;
    background: transparent;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s ease;
}

.dhp-filter.active {
    background: #ffffff;
    color: #0f172a;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}

.discovery-tabs-ribbon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f8fafc;
    padding: 6px;
    border-radius: 9999px;
    border: 1px solid #e2e8f0;
    overflow-x: auto;
    max-width: 100%;
}

.discovery-tab {
    border: none;
    background: transparent;
    padding: 8px 18px;
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 700;
    color: #475569;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.discovery-tab:hover {
    color: #0f172a;
    background: #f1f5f9;
}

.discovery-tab.active {
    background: #0f172a;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
}

/* Smart Events Carousel */
.events-carousel-row {
    margin-bottom: 40px;
}

.ecr-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-left: 4px;
}

.ecr-title {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.5px;
    margin: 0;
}

.ecr-track-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: 0 -24px;
    padding: 0 24px;
}

.ecr-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 24px;
}

.ecr-track::-webkit-scrollbar {
    display: none;
}

.ecr-track {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.ecr-track .smart-event-card {
    min-width: 380px;
    max-width: 380px;
    scroll-snap-align: start;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .ecr-track .smart-event-card {
        min-width: 320px;
        max-width: 320px;
    }
}

.ecr-nav {
    display: flex;
    gap: 12px;
}

.ecr-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #0f172a;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}

.ecr-btn:hover {
    background: #0f172a;
    color: #ffffff;
    border-color: #0f172a;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.15);
    transform: translateY(-2px);
}

/* Smart Event Card */
.smart-event-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    position: relative;
}

.smart-event-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -8px rgba(15, 23, 42, 0.12), 0 8px 16px -4px rgba(30, 86, 203, 0.08);
    border-color: #cbd5e1;
}

.smart-card-media {
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 200px;
    position: relative;
    overflow: hidden;
    background: #0f172a;
}

.smart-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.smart-event-card:hover .smart-card-img {
    transform: scale(1.05);
}

.smart-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.65) 0%, rgba(15, 23, 42, 0.1) 40%, transparent 70%);
    pointer-events: none;
}

.smart-card-badges {
    position: absolute;
    top: 14px;
    left: 14px;
    right: 14px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    z-index: 2;
    pointer-events: none;
}

.card-cal-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.4);
    margin-left: auto;
}

.card-cal-badge .cal-day {
    font-size: 17px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.1;
}

.card-cal-badge .cal-month {
    font-size: 10px;
    font-weight: 800;
    color: var(--lm-blue);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1;
}

.smart-card-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.smart-card-meta-row {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 13px;
    color: #64748b;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.smart-card-meta-row .meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.smart-card-meta-row .meta-item svg {
    color: #94a3b8;
}

.smart-card-title {
    font-size: 19px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.35;
    margin: 0 0 20px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: -0.3px;
}

.smart-card-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
}

.smart-card-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    background: var(--lm-blue);
    color: #ffffff;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.2px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(30, 86, 203, 0.25);
}

.smart-event-card:hover .smart-card-cta {
    background: #1447b8;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(30, 86, 203, 0.4);
}

.smart-card-cta svg {
    transition: transform 0.2s ease;
}

.smart-event-card:hover .smart-card-cta svg {
    transform: translateX(4px);
}

.events-empty-state {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    border-radius: 20px;
    text-align: center;
    color: #64748b;
}

/* Experience Strip */
.experience-strip {
    margin-bottom: 72px;
}

.experience-banner {
    background: #0f172a;
    border-radius: 24px;
    padding: 48px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 48px -12px rgba(15, 23, 42, 0.25);
}

.experience-content {
    max-width: 680px;
    position: relative;
    z-index: 2;
}

.experience-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--lm-blue);
    color: #ffffff;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.experience-title {
    font-size: clamp(24px, 2.6vw, 36px);
    font-weight: 900;
    line-height: 1.15;
    margin: 0 0 16px 0;
    letter-spacing: -0.8px;
}

.experience-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #94a3b8;
    margin: 0;
}

.experience-stats {
    display: flex;
    gap: 32px;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    min-width: 130px;
}

.stat-number {
    font-size: 28px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Categories Hub */
.categories-hub-section {
    margin-bottom: 72px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

.cat-hub-card {
    display: flex;
    flex-direction: column;
    padding: 24px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.cat-hub-card:hover {
    transform: translateY(-4px);
    border-color: var(--lm-blue);
    box-shadow: 0 12px 24px -4px rgba(30, 86, 203, 0.12);
}

.cat-hub-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #f1f5f9;
    color: var(--lm-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: all 0.25s ease;
}

.cat-hub-card:hover .cat-hub-icon {
    background: var(--lm-blue);
    color: #ffffff;
}

.cat-hub-name {
    font-size: 17px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 4px;
}

.cat-hub-desc {
    font-size: 13px;
    color: #64748b;
}

/* Benefits Section */
.benefits-section {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 64px 48px;
    border-radius: 24px;
    margin-top: 64px;
    margin-bottom: 64px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.benefit-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.benefit-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(30, 86, 203, 0.08);
    color: var(--lm-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.benefit-title {
    font-size: 19px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}

.benefit-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .experience-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 36px 28px;
        gap: 32px;
    }
    .experience-stats {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .main-content {
        padding: 0 20px;
        margin: 36px auto;
    }
    .split-container {
        flex-direction: column;
    }
    .split-left {
        padding: 36px 20px;
    }
    .split-right {
        padding: 0 20px 36px 20px;
    }
    .split-frame {
        aspect-ratio: 16 / 9;
        min-height: 240px;
    }
    .smart-events-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .experience-stats {
        flex-direction: column;
        gap: 12px;
    }
    .stat-box {
        width: 100%;
    }
    .benefits-section {
        padding: 40px 20px;
    }
}

/* ================== DARK TRENDING STRIP ================== */
.dark-trending-strip {
    background-color: #050505;
    color: #FFFFFF;
    padding: 32px 0 48px;
    width: 100%;
    overflow: hidden;
    margin-bottom: -24px;
    position: relative;
    z-index: 5;
    border-bottom: 1px solid #1a1a1a;
}

.trending-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.trending-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.trending-line {
    width: 40px;
    height: 4px;
    background-color: #1E56CB; /* LM Blue for brand highlight */
    border-radius: 2px;
}

.trending-title {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #FFFFFF;
    font-family: var(--font-heading);
}

.trending-pills-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.trending-pills-scroll::-webkit-scrollbar {
    display: none;
}

.trending-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #151515;
    border: 1px solid #333;
    border-radius: 40px;
    padding: 6px 16px 6px 6px;
    white-space: nowrap;
    transition: var(--transition);
    cursor: pointer;
}

.trending-pill:hover {
    background-color: #252525;
    border-color: #555;
    transform: translateY(-2px);
}

.trending-pill-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    background-color: #000;
}

.trending-pill-name {
    font-size: 14px;
    font-weight: 600;
    color: #FFFFFF;
}

.trending-pill-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid #666;
    color: #999;
    font-size: 10px;
    margin-left: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.trending-pill-close:hover {
    background-color: #fff;
    color: #000;
    border-color: #fff;
}

/* ================== LM HIGHLIGHTS & TRUST STRIP (COMPACT) ================== */
.lm-insights-banner {
    width: 100%;
    background-color: #09090b;
    color: #FFFFFF;
    position: relative;
    z-index: 10;
    overflow: hidden;
    border-bottom: 1px solid #1e2026;
}

/* Slim Marquee Ticker - Standard LM Blue */
.insights-ticker-wrapper {
    background: #1E56CB;
    color: #FFFFFF;
    padding: 9px 0;
    width: 100%;
    overflow: hidden;
    display: flex;
    white-space: nowrap;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    box-shadow: 0 2px 8px rgba(30, 86, 203, 0.25);
    position: relative;
    z-index: 11;
}

.insights-ticker-track {
    display: inline-flex;
    align-items: center;
    animation: marquee 35s linear infinite;
}

.insights-ticker-track:hover {
    animation-play-state: paused;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    padding: 0 16px;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 700;
    transition: opacity 0.2s ease;
    white-space: nowrap;
    cursor: pointer;
}

.ticker-item:hover {
    opacity: 0.9;
    text-decoration: underline;
}

.ticker-dot {
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Container inside banner - Sleek & Modern */
.insights-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 24px 48px 28px 48px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Centered Header Title with Elegant Divider Accent */
.insights-header-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 0 0 4px 0;
}

.insights-header-center::before,
.insights-header-center::after {
    content: '';
    height: 1px;
    flex: 1;
    max-width: 120px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
}

.insights-center-title {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: #e2e8f0;
    margin: 0;
    text-align: center;
}

/* Grid of 3 Compact Cards */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Premium Card Container */
.insight-card-compact {
    background: linear-gradient(180deg, #14161f 0%, #0d0e14 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.insight-card-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
}

.insight-card-compact:hover {
    border-color: rgba(59, 130, 246, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 16px 36px -8px rgba(0, 0, 0, 0.6), 0 0 20px rgba(30, 86, 203, 0.08);
}

/* Card Header */
.card-compact-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 12px;
}

.card-compact-head-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.card-compact-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #3b82f6;
    text-transform: uppercase;
}

.card-compact-title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

/* Spotify Badge */
.spotify-brand-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(29, 185, 84, 0.08);
    border: 1px solid rgba(29, 185, 84, 0.25);
    padding: 4px 9px;
    border-radius: 20px;
    color: #1ed760;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3px;
    transition: all 0.2s ease;
    cursor: pointer;
    user-select: none;
}

.spotify-brand-badge:hover {
    background: rgba(29, 185, 84, 0.18);
    border-color: rgba(29, 185, 84, 0.5);
    transform: translateY(-1px);
}

.spotify-brand-badge svg {
    flex-shrink: 0;
}

/* ===================================================
   1. SPOTIFY RANKING (Modern Tracklist UX)
   =================================================== */
.compact-spotify-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.compact-spotify-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 10px 14px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.compact-spotify-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(30, 215, 96, 0.3);
    transform: translateX(3px);
}

.spotify-rank-num {
    font-size: 15px;
    font-weight: 900;
    color: #64748b;
    width: 20px;
    text-align: center;
    font-variant-numeric: tabular-nums;
}

.compact-spotify-item:first-child .spotify-rank-num {
    color: #1ed760;
}

.spotify-track-data {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.spotify-track-title {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.spotify-track-artist {
    font-size: 11.5px;
    color: #94a3b8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.spotify-track-metric {
    font-size: 10px;
    font-weight: 600;
    color: #64748b;
    margin-top: 1px;
}

.spotify-play-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.compact-spotify-item:hover .spotify-play-btn {
    background: #1ed760;
    border-color: #1ed760;
    color: #000000;
    transform: scale(1.1);
}

/* ===================================================
   2. GIRO DE NOTÍCIAS (Editorial Feed Style)
   =================================================== */
.compact-news-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.compact-news-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 3px solid #1e56cb;
    border-radius: 10px;
    padding: 12px 14px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.compact-news-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(59, 130, 246, 0.3);
    border-left-color: #3b82f6;
    transform: translateX(3px);
}

.news-tag-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.news-tag {
    font-size: 9px;
    font-weight: 800;
    color: #3b82f6;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    background: rgba(30, 86, 203, 0.18);
    border: 1px solid rgba(30, 86, 203, 0.35);
    padding: 2px 7px;
    border-radius: 4px;
}

.news-time {
    font-size: 10.5px;
    color: #64748b;
    font-weight: 500;
}

.news-headline {
    font-size: 12.5px;
    font-weight: 700;
    color: #f1f5f9;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.compact-news-item:hover .news-headline {
    color: #60a5fa;
}

.news-summary {
    font-size: 11px;
    color: #94a3b8;
    line-height: 1.45;
}

/* ===================================================
   3. RADAR DE ARTISTAS (Human Editorial Photo Layout)
   =================================================== */
.artist-human-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.artist-human-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    padding: 12px 14px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.artist-human-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.16);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.artist-photo-thumb {
    width: 58px;
    height: 58px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.artist-human-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 0;
}

.artist-human-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.artist-human-name {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.2px;
}

.artist-tag-subtle {
    font-size: 9.5px;
    font-weight: 600;
    color: #94a3b8;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2px 8px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.artist-human-desc {
    font-size: 11.5px;
    color: #cbd5e1;
    line-height: 1.45;
}

.artist-human-highlight {
    font-size: 10.5px;
    font-weight: 600;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 2px;
}

.artist-human-highlight span {
    color: #e2e8f0;
}

@media (max-width: 1024px) {
    .insights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .insights-container {
        padding: 18px 24px;
    }
}

@media (max-width: 768px) {
    .insights-grid {
        grid-template-columns: 1fr;
    }
    .insights-container {
        padding: 16px 16px;
    }
}


/* Dinâmica de Layout de Produtos Lado a Lado */
.event-layout-grid.has-products {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.8fr);
}

@media (max-width: 992px) {
    .event-layout-grid.has-products {
        grid-template-columns: 1fr;
    }
}

.tickets-sticky-panel.has-products .ticket-options-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
}

@media (max-width: 600px) {
    .tickets-sticky-panel.has-products .ticket-options-list {
        grid-template-columns: 1fr;
    }
}

.tickets-sticky-panel.has-products .panel-summary {
    grid-column: 1 / -1; 
    margin-top: 16px;
    border-top: 1px solid #e2e8f0;
    padding-top: 16px;
}

.tickets-sticky-panel.has-products .products-section {
    margin-top: 0 !important;
    padding-top: 0 !important;
    border-top: none !important;
    height: 100%;
}
