/**
 * Showfer - Estilos Centralizados
 * Todas as definições CSS devem estar neste arquivo
 */

/* ============================================
   VARIÁVEIS CSS
   ============================================ */
:root {
    --bg-body: #fbf8f1;
    --bg-card: #fbf8f1;
    --primary: #555555;
    --text-main: #000000;
    --border-color: #555555;
}

/* ============================================
   FONTES
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Anton&family=DM+Sans:wght@400;500;700&display=swap');

/* ============================================
   RESET E BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-bottom: 80px; /* Espaço para o footer fixo */
}

/* ============================================
   LAYOUT PRINCIPAL
   ============================================ */
.content-wrapper {
    flex: 1;
    width: 100%;
    padding: 0;
}

/* ============================================
   HEADER
   ============================================ */
.main-header {
    background-color: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    padding: 0.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: padding 0.3s ease, box-shadow 0.3s ease;
}

.main-header.scrolled {
    padding: 0.75rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.main-header.scrolled .logo {
    gap: 0.25rem;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-main);
    transition: gap 0.3s ease;
}

.main-header.scrolled .logo a {
    gap: 0.25rem;
}

.logo-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    transition: width 0.3s ease, height 0.3s ease;
}

.logo-img-large {
    width: 90px;
    height: 90px;
}

.main-header.scrolled .logo-img {
    width: 35px;
    height: 35px;
}

.logo-text {
    font-family: 'Anton', sans-serif;
    font-size: 1.75rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    transition: font-size 0.3s ease;
}

.main-header.scrolled .logo-text {
    font-size: 1.25rem;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
    order: 2;
}

.hamburger-menu span {
    width: 100%;
    height: 3px;
    background-color: var(--text-main);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.main-nav {
    display: flex;
    gap: 2rem;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    transition: color 0.3s ease, font-size 0.3s ease;
}

.main-header.scrolled .nav-link {
    font-size: 0.85rem;
}

.nav-link:hover {
    color: var(--primary);
}

.user-menu-container {
    position: relative;
    margin-left: auto;
    flex-shrink: 0;
    order: 3;
}

.user-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--text-main);
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
    background: transparent;
    border: none;
    padding: 0;
    border-radius: 50%;
}

.main-header.scrolled .user-icon {
    width: 32px;
    height: 32px;
}

.user-icon:hover {
    transform: scale(1.1);
    background-color: rgba(85, 85, 85, 0.1);
}

.user-icon svg {
    width: 100%;
    height: 100%;
}

.user-menu-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 200;
    overflow: hidden;
}

.user-menu-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-menu-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.95rem;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid rgba(85, 85, 85, 0.1);
}

.user-menu-item:last-child {
    border-bottom: none;
}

.user-menu-item:hover {
    background-color: rgba(85, 85, 85, 0.05);
}

.user-menu-item:hover .menu-icon {
    filter: grayscale(100%) brightness(0);
    color: var(--text-main);
}

.user-menu-item .menu-icon {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
    filter: grayscale(100%) brightness(0);
    color: var(--text-main);
}

.user-menu-item:last-child {
    color: #dc3545;
}

.user-menu-item:last-child:hover {
    background-color: rgba(220, 53, 69, 0.1);
}

.user-menu-item:last-child .menu-icon {
    filter: grayscale(100%) brightness(0);
    color: var(--text-main);
}

.user-menu-item:last-child:hover .menu-icon {
    filter: grayscale(100%) brightness(0);
    color: var(--text-main);
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
    background-color: var(--bg-card);
    border-top: 1px solid var(--border-color);
    padding: 1.5rem 0;
    margin-top: auto;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 50;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

/* ============================================
   HOME - BANNER HERO
   ============================================ */
.hero-banner {
    position: relative;
    top: 1px;
    left: 0;
    width: 100%;
    height: 200px;
    background-image: url('/imagens/fundoHome.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-sizing: border-box;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/imagens/fundoHome.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: grayscale(100%);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem 1rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.hero-title {
    font-family: 'Anton', sans-serif;
    font-size: 3rem;
    font-weight: 400;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
    padding-top: 1px;
    position: relative;
    z-index: 3;
    line-height: 1.2;
    padding: 0 1rem;
    text-align: center;
    word-wrap: break-word;
}

/* ============================================
   HOME - TABELA DE SHOWS
   ============================================ */
/* Cards de Estatísticas */
.stats-cards-section {
    width: 100%;
    padding: 2rem 1rem;
    background-color: var(--bg-body);
}

.stats-cards-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.stat-card-green {
    background: linear-gradient(135deg, #2d5016 0%, #1a3009 100%);
    color: white;
}

.stat-card-blue {
    background: linear-gradient(135deg, #1e3a5f 0%, #0f1d2f 100%);
    color: white;
}

.stat-card-red {
    background: linear-gradient(135deg, #5f1e1e 0%, #2f0f0f 100%);
    color: white;
}

.stat-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-card-title {
    font-family: 'Anton', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 1rem 0;
    opacity: 0.9;
}

.stat-card-value {
    font-family: 'Anton', sans-serif;
    font-size: 3rem;
    font-weight: 400;
    margin: 0;
    line-height: 1;
}

/* Seção de Contato */
.contact-section {
    width: 100%;
    padding: 3rem 1rem;
    background-color: var(--bg-body);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    background-color: var(--bg-card);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-section-title {
    font-family: 'Anton', sans-serif;
    font-size: 1.5rem;
    color: var(--text-main);
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
}

.contact-address {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    color: var(--text-main);
    line-height: 1.6;
    margin: 0;
}

.social-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--text-main);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.social-icon:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

.contact-form-column {
    background-color: var(--bg-card);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.contact-form-group {
    display: flex;
    flex-direction: column;
}

.contact-input,
.contact-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid rgba(85, 85, 85, 0.2);
    border-radius: 4px;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    color: var(--text-main);
    background-color: #f9f9f9;
    transition: border-color 0.3s ease, background-color 0.3s ease;
    box-sizing: border-box;
}

.contact-input:focus,
.contact-textarea:focus {
    outline: none;
    border-color: var(--primary);
    background-color: white;
}

.contact-textarea {
    resize: vertical;
    min-height: 120px;
    font-family: 'DM Sans', sans-serif;
}

.contact-error {
    display: block;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: none;
    font-family: 'DM Sans', sans-serif;
}

.contact-error:not(:empty) {
    display: block;
}

.contact-submit-btn {
    padding: 0.875rem 2rem;
    background-color: #f5f5f5;
    border: 1px solid rgba(85, 85, 85, 0.3);
    border-radius: 4px;
    font-family: 'Anton', sans-serif;
    font-size: 1rem;
    color: var(--text-main);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: flex-start;
}

.contact-submit-btn:hover {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Seção FAQ */
.faq-section {
    width: 100%;
    padding: 3rem 1rem;
    background-color: var(--bg-body);
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-title {
    font-family: 'Anton', sans-serif;
    font-size: 2rem;
    color: var(--text-main);
    text-align: center;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: var(--bg-card);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(85, 85, 85, 0.05);
}

.faq-question span {
    flex: 1;
    text-align: left;
}

.faq-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.25rem 1.5rem;
    margin: 0;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    color: var(--text-main);
    line-height: 1.6;
}

.shows-section {
    width: 100%;
    padding: 0rem 1rem;
    background-color: var(--bg-body);
}

.shows-table-container {
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
}

.shows-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--bg-card);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.shows-table thead {
    background-color: var(--primary);
}

.shows-table th {
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-family: 'Anton', sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.shows-table tbody tr {
    border-bottom: 1px solid rgba(85, 85, 85, 0.2);
    transition: background-color 0.2s ease;
}

.shows-table tbody tr:hover {
    background-color: rgba(85, 85, 85, 0.05);
}

.shows-table tbody tr:last-child {
    border-bottom: none;
}

.shows-table td {
    padding: 1.25rem 1.5rem;
    font-family: 'DM Sans', sans-serif;
}

/* Link de login para ver todos os shows */
.shows-login-prompt {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
}

.login-prompt-link {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary);
    color: white;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.login-prompt-link:hover {
    background: #444444;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Paginação */
.shows-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1rem;
}

.pagination-link {
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    color: white;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.pagination-link:hover:not(.disabled) {
    background: #444444;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.pagination-link.disabled {
    background: #cccccc;
    color: #666666;
    cursor: not-allowed;
    opacity: 0.6;
}

.pagination-info {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--text-main);
    font-weight: 500;
}
    font-size: 1rem;
    color: var(--text-main);
    vertical-align: middle;
}

.col-data {
    width: 15%;
    font-weight: 500;
}

.col-evento {
    width: 60%;
    font-weight: 500;
}

.col-ingressos {
    width: 25%;
    text-align: center;
}

.ticket-link {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

/* Link de login para ver todos os shows */
.shows-login-prompt {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
}

.login-prompt-link {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary);
    color: white;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.login-prompt-link:hover {
    background: #444444;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Paginação */
.shows-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1rem;
}

.pagination-link {
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    color: white;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.pagination-link:hover:not(.disabled) {
    background: #444444;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.pagination-link.disabled {
    background: #cccccc;
    color: #666666;
    cursor: not-allowed;
    opacity: 0.6;
}

.pagination-info {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--text-main);
    font-weight: 500;
}

.ticket-link:hover {
    color: #0052a3;
    text-decoration: underline;
}

.no-link {
    color: #999;
}

.no-shows {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--primary);
    font-style: italic;
}

/* ============================================
   HOME - CONTAINER ANTIGO (removido)
   ============================================ */
.home-container {
    text-align: center;
    padding: 2rem 0;
}

.home-container h1 {
    font-family: 'Anton', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.home-container p {
    font-size: 1.25rem;
    color: var(--primary);
}

/* ============================================
   RESPONSIVIDADE - MOBILE FIRST
   ============================================ */
@media (max-width: 768px) {
    .header-container {
        flex-wrap: nowrap;
        gap: 1rem;
        position: relative;
    }

    .hamburger-menu {
        display: flex;
        order: 2;
        margin-left: auto;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--bg-card);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 80px 2rem 2rem;
        gap: 1.5rem;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        z-index: 100;
        order: 1;
        flex: none;
    }

    .main-nav.active {
        left: 0;
    }

    .main-nav .nav-link {
        width: 100%;
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(85, 85, 85, 0.1);
        font-size: 1rem;
    }

    .user-menu-container {
        order: 3;
        margin-left: 0;
    }

    .user-menu-dropdown {
        right: 0;
        left: auto;
    }

    .main-nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 99;
    }

    .main-nav-overlay.active {
        display: block;
    }

    .logo-text {
        font-size: 1.25rem;
    }

    .main-header.scrolled .logo-text {
        font-size: 1rem;
    }

    .hero-title {
        font-size: 1.75rem;
        letter-spacing: 0.05em;
        padding: 0 1.5rem;
    }

    .hero-banner {
        width: 100%;
        max-width: 100%;
        height: 180px;
        top: 0;
    }

    .hero-content {
        padding: 1.5rem 1rem;
    }

    .hero-overlay {
        width: 100%;
        height: 100%;
        top: 0;
    }

    .stats-cards-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .stat-card-title {
        font-size: 1.1rem;
    }

    .stat-card-value {
        font-size: 2.5rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info-card {
        padding: 2rem 1.5rem;
    }

    .contact-form-column {
        padding: 2rem 1.5rem;
    }

    .contact-section-title {
        font-size: 1.25rem;
    }

    .social-icons {
        justify-content: center;
    }

    .faq-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .faq-question {
        padding: 1rem 1.25rem;
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 0 1.25rem 1rem 1.25rem;
        font-size: 0.95rem;
    }

    .shows-table th,
    .shows-table td {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .shows-table th {
        font-size: 1rem;
    }

    .shows-login-prompt {
        margin-top: 1.5rem;
        padding: 1rem;
    }

    .login-prompt-link {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

    .shows-pagination {
        flex-wrap: wrap;
        gap: 0.75rem;
        margin-top: 1.5rem;
        padding: 0.75rem;
    }

    .pagination-link {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }

    .pagination-info {
        font-size: 0.875rem;
        width: 100%;
        text-align: center;
        order: -1;
    }


    body {
        padding-bottom: 70px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1rem;
    }

    .main-header.scrolled .logo-text {
        font-size: 0.875rem;
    }

    .main-nav {
        width: 250px;
        padding: 70px 1.5rem 2rem;
    }

    .main-nav .nav-link {
        font-size: 0.95rem;
    }

    .hero-title {
        font-size: 1.25rem;
        letter-spacing: 0.03em;
        padding: 0 1rem;
        line-height: 1.3;
    }

    .hero-banner {
        width: 100%;
        max-width: 100%;
        height: 150px;
        top: 0;
    }

    .hero-content {
        padding: 1rem 0.75rem;
    }

    .hero-overlay {
        width: 100%;
        height: 100%;
        top: 0;
    }

    .shows-table {
        font-size: 0.85rem;
    }

    .shows-table th,
    .shows-table td {
        padding: 0.5rem 0.75rem;
    }

    .shows-table th {
        font-size: 0.9rem;
    }

    .col-data {
        width: 20%;
    }

    .col-evento {
        width: 50%;
    }

    .col-ingressos {
        width: 30%;
    }

    body {
        padding-bottom: 60px;
    }
}

/* ============================================
   TELA DE LOGIN / AUTENTICAÇÃO
   ============================================ */
.auth-page {
    background: linear-gradient(180deg, #ff6b6b 0%, #8b5cf6 50%, #1e3a8a 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.auth-container {
    width: 100%;
    max-width: 420px;
    position: relative;
    z-index: 1;
}

/* Seletor de Idioma */
.language-selector {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
}

.lang-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    overflow: hidden;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.lang-btn.active {
    background: rgba(255, 255, 255, 0.3);
    border-color: white;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.flag-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

/* Ícone de Usuário no Topo */
.auth-user-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    position: relative;
}

.auth-user-icon svg {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

/* Formulário de Login */
.auth-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Grupo de Input */
.auth-input-group {
    position: relative;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.auth-input-icon {
    position: absolute;
    left: 0;
    width: 50px;
    height: 50px;
    background: rgba(139, 92, 246, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px 0 0 10px;
    z-index: 1;
}

.auth-input {
    width: 100%;
    height: 50px;
    padding: 0 20px 0 70px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 10px;
    font-size: 16px;
    color: #333;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.3s ease;
}

.auth-input:focus {
    outline: none;
    background: white;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.3);
}

.auth-input::placeholder {
    color: #999;
    font-weight: 500;
}

/* Opções (Remember Me e Forgot Password) */
.auth-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 10px;
}

.auth-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: white;
    font-size: 14px;
    user-select: none;
}

.auth-checkbox input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid white;
    border-radius: 4px;
    margin-right: 8px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.auth-checkbox input[type="checkbox"]:checked + .checkmark {
    background: white;
}

.auth-checkbox input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 1px;
    width: 6px;
    height: 10px;
    border: solid #8b5cf6;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label {
    color: white;
    font-weight: 500;
}

.auth-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.auth-link:hover {
    color: white;
    text-decoration: underline;
}

/* Botão de Login */
.auth-button {
    width: 100%;
    height: 50px;
    background: #ff6b9d;
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 18px;
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
}

.auth-button:hover {
    background: #ff5a8a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.6);
}

.auth-button:active {
    transform: translateY(0);
}

/* Título e Mensagem */
.auth-title {
    color: white;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    font-family: 'DM Sans', sans-serif;
}

.auth-message {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Footer do Formulário */
.auth-footer {
    text-align: center;
    margin-top: 20px;
}

.auth-footer .auth-link {
    font-size: 16px;
    font-weight: 500;
}

/* Separador Inferior */
.auth-page::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
}

/* Responsividade - Tela de Login */
@media (max-width: 480px) {
    .auth-container {
        max-width: 100%;
        padding: 0 10px;
    }

    .auth-form {
        padding: 30px 20px;
    }

    .auth-input-group {
        margin-bottom: 15px;
    }

    .auth-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .language-selector {
        margin-bottom: 20px;
    }

    .lang-btn {
        width: 45px;
        height: 45px;
        padding: 3px;
    }
}

/* ============================================
   TELA DE REGISTRO (Padrão HOME)
   ============================================ */
.register-page {
    background-color: var(--bg-body);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.register-container {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

.register-form {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.register-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    margin-bottom: 30px;
    position: relative;
}

.register-title {
    font-family: 'Anton', sans-serif;
    font-size: 32px;
    color: var(--text-main);
    text-align: left;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex: 1;
}

.back-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.back-arrow:hover {
    background: #444444;
    transform: translateX(-3px);
}

.back-arrow svg {
    width: 20px;
    height: 20px;
}

.register-input-group {
    margin-bottom: 25px;
}

.register-label {
    display: block;
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 8px;
    font-size: 14px;
}

.register-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: 'DM Sans', sans-serif;
    color: var(--text-main);
    background: white;
    transition: border-color 0.3s ease;
}

.register-select-multiple {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: 'DM Sans', sans-serif;
    color: var(--text-main);
    background: white;
    transition: border-color 0.3s ease;
    min-height: 200px;
}

.register-select-multiple:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(85, 85, 85, 0.1);
}

.register-select-multiple option {
    padding: 8px;
}

.register-select-multiple option:checked {
    background: var(--primary);
    color: white;
}

.register-hint {
    display: block;
    font-size: 12px;
    color: #666;
    margin-top: 5px;
    font-style: italic;
}

/* Container de checkboxes de gêneros */
.genres-checkbox-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
    margin-top: 8px;
}

.genre-checkbox-label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.genre-checkbox-label:hover {
    border-color: var(--primary);
    background: #f9f9f9;
}

.genre-checkbox {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.genre-checkbox-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--text-main);
    text-align: center;
    width: 100%;
}

.genre-checkbox-label.checked {
    background: var(--primary);
    border-color: var(--primary);
}

.genre-checkbox-label.checked .genre-checkbox-text {
    color: white;
    font-weight: 600;
}

.register-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(85, 85, 85, 0.1);
}

.register-input.error {
    border-color: #dc3545;
}

.register-input.error:focus {
    box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.1);
}

.register-password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.register-password-wrapper .register-input {
    padding-right: 45px;
}

.password-toggle {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: color 0.3s ease;
}

.password-toggle:hover {
    color: var(--text-main);
}

.password-toggle:focus {
    outline: none;
}

.eye-icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
}

.register-error {
    display: block;
    color: #dc3545;
    font-size: 12px;
    margin-top: 4px;
    display: none;
}

.register-error:not(:empty) {
    display: block;
}

/* Campos de Data */
.date-inputs-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.date-input-group {
    display: flex;
    flex-direction: column;
}

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

.date-input {
    flex: 1;
    padding-right: 45px;
}

.date-picker-button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: color 0.2s ease;
}

.date-picker-button:hover {
    color: #444444;
}

.date-picker-button svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .date-inputs-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.register-button {
    width: 100%;
    padding: 14px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.register-button:hover {
    background: #444444;
}

.register-button:active {
    transform: translateY(1px);
}

.register-footer {
    text-align: center;
    margin-top: 25px;
    color: var(--text-main);
    font-size: 14px;
}

.register-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.register-link:hover {
    color: var(--text-main);
    text-decoration: underline;
}

/* Responsividade - Tela de Registro */
@media (max-width: 768px) {
    .register-container {
        margin: 20px auto;
        padding: 0 15px;
    }

    .register-form {
        padding: 30px 20px;
    }

    .register-title {
        font-size: 24px;
    }

    .register-title-wrapper {
        gap: 10px;
    }

    .back-arrow {
        width: 36px;
        height: 36px;
    }

    .back-arrow svg {
        width: 18px;
        height: 18px;
    }

    .register-input-group {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .register-form {
        padding: 20px 15px;
    }

    .register-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .register-title-wrapper {
        gap: 8px;
        margin-bottom: 20px;
    }

    .back-arrow {
        width: 32px;
        height: 32px;
    }

    .back-arrow svg {
        width: 16px;
        height: 16px;
    }

    .genres-checkbox-container {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .genre-checkbox-label {
        padding: 14px 16px;
    }
}

/* Estilos específicos para tela de conta */
.register-section {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.register-section-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.register-hint {
    display: block;
    font-size: 12px;
    color: #666;
    margin-top: 4px;
    font-style: italic;
}

.language-selector-inline {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.lang-btn-inline {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--text-main);
}

.lang-btn-inline:hover {
    border-color: var(--primary);
    background: #f9f9f9;
}

.lang-btn-inline.active {
    border-color: var(--primary);
    background: var(--primary);
    color: white;
}

.lang-btn-inline .flag-icon {
    width: 24px;
    height: 18px;
}

@media (max-width: 480px) {
    .language-selector-inline {
        flex-direction: column;
    }
    
    .lang-btn-inline {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   TELA DE LOGIN (Padrão HOME - igual ao registro)
   ============================================ */
.login-page {
    background-color: var(--bg-body);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-container {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

.login-form {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.login-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    margin-bottom: 30px;
    position: relative;
}

.login-title {
    font-family: 'Anton', sans-serif;
    font-size: 32px;
    color: var(--text-main);
    text-align: left;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex: 1;
}

.login-message {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--text-main);
    text-align: center;
    margin-bottom: 25px;
    line-height: 1.5;
}

.login-input-group {
    margin-bottom: 25px;
}

.login-label {
    display: block;
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 8px;
    font-size: 14px;
}

.login-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: 'DM Sans', sans-serif;
    color: var(--text-main);
    background: white;
    transition: border-color 0.3s ease;
}

.login-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(85, 85, 85, 0.1);
}

.login-password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.login-password-wrapper .login-input {
    padding-right: 45px;
}

.login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 10px;
}

.login-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: var(--text-main);
    font-size: 14px;
    user-select: none;
}

.login-checkbox input[type="checkbox"] {
    display: none;
}

.login-checkbox .checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    margin-right: 8px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    background: white;
}

.login-checkbox input[type="checkbox"]:checked + .checkmark {
    background: var(--primary);
    border-color: var(--primary);
}

.login-checkbox input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 1px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label {
    color: var(--text-main);
    font-weight: 500;
}

.login-link {
    color: var(--primary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.login-link:hover {
    color: var(--text-main);
    text-decoration: underline;
}

.login-button {
    width: 100%;
    padding: 14px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.login-button:hover {
    background: #444444;
}

.login-button:active {
    transform: translateY(1px);
}

.login-footer {
    text-align: center;
    margin-top: 25px;
    color: var(--text-main);
    font-size: 14px;
}

/* Responsividade - Tela de Login */
@media (max-width: 768px) {
    .login-container {
        margin: 20px auto;
        padding: 0 15px;
    }

    .login-form {
        padding: 30px 20px;
    }

    .login-title {
        font-size: 24px;
    }

    .login-title-wrapper {
        gap: 10px;
    }

    .login-title-wrapper .back-arrow {
        width: 36px;
        height: 36px;
    }

    .login-title-wrapper .back-arrow svg {
        width: 18px;
        height: 18px;
    }

    .login-input-group {
        margin-bottom: 20px;
    }

    .login-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .login-form {
        padding: 20px 15px;
    }

    .login-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .login-title-wrapper {
        gap: 8px;
        margin-bottom: 20px;
    }

    .login-title-wrapper .back-arrow {
        width: 32px;
        height: 32px;
    }

    .login-title-wrapper .back-arrow svg {
        width: 16px;
        height: 16px;
    }
}

/* ============================================
   SISTEMA DE NOTIFICAÇÕES / POP-UP
   ============================================ */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    min-width: 320px;
    max-width: 500px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary);
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification.success {
    border-left-color: #28a745;
}

.notification.error {
    border-left-color: #dc3545;
}

.notification.warning {
    border-left-color: #ffc107;
}

.notification.info {
    border-left-color: #17a2b8;
}

.notification.confirm {
    border-left-color: var(--primary);
}

.notification-content {
    display: flex;
    align-items: flex-start;
    padding: 16px;
    gap: 12px;
}

.notification-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification.success .icon-success {
    display: block;
    color: #28a745;
}

.notification.error .icon-error {
    display: block;
    color: #dc3545;
}

.notification.warning .icon-warning {
    display: block;
    color: #ffc107;
}

.notification.info .icon-info {
    display: block;
    color: #17a2b8;
}

.notification-icon svg {
    display: none;
    width: 24px;
    height: 24px;
}

.notification-body {
    flex: 1;
    min-width: 0;
}

.notification-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-main);
    margin: 0 0 4px 0;
    font-family: 'DM Sans', sans-serif;
}

.notification-message {
    font-size: 14px;
    color: var(--text-main);
    margin: 0;
    line-height: 1.5;
    font-family: 'DM Sans', sans-serif;
}

.notification-close {
    flex-shrink: 0;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: var(--text-main);
    opacity: 0.5;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-close:hover {
    opacity: 1;
}

.notification-actions {
    display: flex;
    gap: 10px;
    padding: 0 16px 16px 16px;
    justify-content: flex-end;
}

.notification-actions button {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'DM Sans', sans-serif;
}

.notification-actions .btn-confirm {
    background: var(--primary);
    color: white;
}

.notification-actions .btn-confirm:hover {
    background: #444444;
}

.notification-actions .btn-cancel {
    background: #f0f0f0;
    color: var(--text-main);
}

.notification-actions .btn-cancel:hover {
    background: #e0e0e0;
}

/* Overlay para confirmações */
.notification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.notification-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* Responsividade - Notificações */
@media (max-width: 480px) {
    .notification {
        top: 10px;
        right: 10px;
        left: 10px;
        min-width: auto;
        max-width: none;
    }
}

