:root {
    --bg-dark: #1d2144;
    --nav-bg: #2c2c2c;
    --accent: #fccb05;
    --text-white: #ffffff;
    --text-grey: #a0a0a0;
    --banner-green: #d1e8e2;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    min-height: 100vh;
    padding-bottom: 80px; /* Space for bottom nav */
    overflow-x: hidden;
}

/* HEADER */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    position: sticky;
    top: 0;
    background-color: var(--bg-dark);
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 2px;
}

.logo-text {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -1px;
}

.logo-star {
    width: 22px;
    height: 22px;
    margin-top: -15px;
}

.header-icons .icon-cart {
    width: 24px;
    height: 24px;
    stroke: var(--text-white);
}

/* CONTENT */
.content {
    padding: 10px 15px;
}

.banner-section {
    margin-bottom: 20px;
}

.banner {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    display: flex;
    height: 210px;
}

/* BEAUTY BANNER */
.beauty-banner {
    background-color: var(--banner-green);
    color: #1a5c4d;
}

.beauty-banner .banner-text {
    flex: 1.2;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.beauty-banner h1 {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.taxa-label {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.taxa-label .bracket {
    font-size: 40px;
    font-weight: 200;
    color: #1a5c4d;
    opacity: 0.5;
}

.label-inner {
    font-size: 12px;
    line-height: 1;
    text-transform: uppercase;
}

.label-inner strong {
    font-size: 24px;
    font-weight: 700;
}

.barcode-small {
    font-size: 8px;
    letter-spacing: -1px;
    margin-bottom: 15px;
    opacity: 0.6;
}

.btn-saiba-mais {
    display: inline-block;
    background-color: #588e84;
    color: white;
    text-decoration: none;
    font-size: 10px;
    font-weight: 700;
    padding: 6px 15px;
    border-radius: 20px;
    width: fit-content;
    text-transform: uppercase;
}

.banner-footer {
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
}

.eventim-mini {
    display: flex;
    align-items: center;
}

.star-mini {
    color: #fccb05;
    font-size: 14px;
    margin-left: 2px;
}

.beauty-banner .banner-image {
    flex: 1;
    position: relative;
}

.beauty-banner .banner-image img {
    position: absolute;
    right: -20px;
    top: 0;
    height: 100%;
    width: auto;
    object-fit: cover;
}

/* PASS BANNER */
.pass-banner {
    background-color: #0b0e25;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255,255,255,0.1);
}

.pass-bg-text {
    font-size: 50px;
    font-weight: 800;
    color: #151a42;
    white-space: nowrap;
    line-height: 1;
    user-select: none;
}

.pass-card {
    background-color: white;
    width: 85%;
    height: 90px;
    border-radius: 15px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    margin: -10px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.card-cutout {
    position: absolute;
    width: 24px;
    height: 24px;
    background-color: #0b0e25;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.card-cutout.left { left: -12px; }
.card-cutout.right { right: -12px; }

.card-content {
    text-align: center;
    color: #1d2144;
}

.pass-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.pass-text {
    font-size: 26px;
    font-weight: 800;
}

.pass-star {
    font-size: 22px;
    color: #fccb05;
    margin-top: -10px;
}

.card-content p {
    font-size: 12px;
    font-weight: 400;
    margin-top: -5px;
}

/* DESTAQUES */
.destaques-section {
    padding: 10px 0;
}

.destaques-section h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.horizontal-scroll {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: none; /* Firefox */
}

.horizontal-scroll::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}

.event-card {
    flex: 0 0 160px;
    height: 230px;
    border-radius: 15px;
    overflow: hidden;
    background-color: #333;
}

.event-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.poster-placeholder.yellow {
    background: linear-gradient(135deg, #fccb05 0%, #ffd700 100%);
    width: 100%;
    height: 100%;
}

/* BOTTOM NAV */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--nav-bg);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0 calc(25px + env(safe-area-inset-bottom)) 0; /* Adjust for iPhone notches */
    border-top: 1px solid rgba(255,255,255,0.05);
    z-index: 1000;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: var(--text-grey);
    flex: 1;
}

.nav-item svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

.nav-item span {
    font-size: 11px;
    font-weight: 500;
}

.nav-item:active {
    opacity: 0.7;
    transform: scale(0.95);
}

.nav-item.active {
    color: var(--accent);
}

.nav-item.active svg {
    stroke: var(--accent);
    fill: var(--accent);
}

.nav-item {
    transition: all 0.2s ease;
}

/* RESPONSIVENESS */
@media (min-width: 768px) {
    .content {
        max-width: 500px;
        margin: 0 auto;
    }
    .main-header {
        max-width: 500px;
        margin: 0 auto;
    }
    .bottom-nav {
        max-width: 500px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 20px 20px 0 0;
    }
}
