@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

:root {
    --background: #121212;
    --card-bg: #1e1e1e;
    --text-primary: #fff;
    --text-secondary: #b3b3b3;
    --accent-color: #292929;
    --accent-gradient: linear-gradient(90deg, #8A2BE2, #FF00FF);
    --border-color: #333;
    --status-dot: #1ed760;
}

.bebas-neue-regular {
  font-family: "Bebas Neue", sans-serif;
  font-style:italic;
  font-weight: 400;
  font-style: normal;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--background);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    padding: 2rem 4rem;
    -webkit-tap-highlight-color: transparent; /* Remove o destaque azul ao tocar em links no mobile */
}

.hidden {
    display: none !important;
}

/* --- Cabeçalhos --- */
header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    width: 100%;
}

#main-header img {
    width: 60px;
    height: auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
}

#event-header {
    align-items: center;
}

#event-header .back-button {
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
#event-header .back-button:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

#event-header .event-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

#event-header .event-icon {
    width: 50px;
    height: 50px;
    background-color: var(--card-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0; /* Impede que o ícone encolha */
}

#event-header .event-text h2 {
    font-family: "Bebas Neue", sans-serif;
    font-style:italic;
    font-size: 2.5rem;
    margin: 0;
}

#event-header .event-text p {
    font-size: 0.9rem;
    color: #45ff17;
    margin: 0;
}


/* --- Visão Principal (Lista de Eventos) --- */
#main-view h1 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

#main-view section {
    margin-bottom: 3rem;
}

#main-view h2 {
    font-family: "Bebas Neue", sans-serif;
    font-style:italic;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.event-card {
    background-color: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out, transform 0.2s ease-in-out;
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: scale(1.03);
    background-color: #282828;
}

.event-card:active { /* Efeito visual para toque no mobile */
    background-color: #333;
    transform: scale(0.98);
}


.event-card-image {
    width: 100%;
    height: 200px;
    background-color: #333;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-card-image .placeholder-icon {
    width: 50px;
    height: 50px;
    background-color: #535353;
    border-radius: 4px;
}

.event-card-content {
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-grow: 1;
}

.event-card-info h3 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.8rem;
    margin-bottom: 0.25rem;
}

.event-card-info p {
    font-size: 0.9rem;
    color: #45ff17;
}

.event-card-date {
    color: #45ff17;
    font-family: "Bebas Neue", sans-serif;
    background-color: var(--accent-color);
    color: var(--text-primary);
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    text-align: center;
    font-weight: 700;
    font-size: 1.5rem;
}

.event-card-date span {
    color: #45ff17;
    font-family: "Bebas Neue", sans-serif;
    display: block;
    font-size: 1.4rem;
    font-weight: 400;
}

/* --- Visão de Detalhes do Evento (Categorias) --- */
#event-detail-view {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.category-card {
    font-family: "Bebas Neue", sans-serif;  
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.category-card:hover {
    background-color: #282828;
}

.category-card:active { /* Efeito visual para toque no mobile */
    background-color: #333;
}


.category-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.category-card .details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 1rem;
}

.category-card .details div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.category-card .details .status-dot {
    width: 10px;
    height: 10px;
    background-color: var(--status-dot);
    border-radius: 50%;
}

/* --- Visão do Embed --- */
#embed-view {
    width: 100%;
    height: 80vh; /* Ajuste a altura conforme necessário */
}

#embed-view iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}


/* ########################################## */
/* ###       ESTILOS RESPONSIVOS          ### */
/* ########################################## */

/* Para telas com largura máxima de 768px (tablets e celulares) */
@media (max-width: 768px) {
    body {
        /* Reduz o espaçamento nas laterais */
        padding: 1.5rem 1rem;
    }

    #main-view h1 {
        font-size: 1.6rem;
    }

    /* Ajusta o cabeçalho do evento para preencher a tela */
    #event-header {
        margin: -1.5rem -1rem 1.5rem -1rem;
        padding: 1rem 1.5rem;
        gap: 0.75rem;
    }

    #event-header .event-icon {
        width: 40px;
        height: 40px;
    }

    #event-header .event-text h2 {
        font-size: 1.8rem;
    }
    
    #event-header .event-text p {
        font-size: 0.8rem;
    }

    /* Força os cards a ficarem em uma única coluna */
    .events-grid, #event-detail-view {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Remove o efeito de hover que não funciona em toque */
    .event-card:hover {
        transform: none;
    }
    
    #embed-view {
        /* Reduz um pouco a altura para caber melhor na tela do celular */
        height: 75vh;
    }
}

/* --- Estilos Adicionais (Cabeçalho, Rodapé, WhatsApp) --- */

/* Alinha o header com espaço entre o logo e os links */
#main-header {
    justify-content: space-between;
    align-items: center;
}

/* Estilos para os ícones de redes sociais no header */
.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: var(--text-secondary);
    font-size: 1.5rem;
    transition: color 0.2s ease, transform 0.2s ease;
}

.social-links a:hover {
    color: var(--text-primary);
    transform: scale(1.1);
}

/* Botão Flutuante do WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.25);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.whatsapp-float:hover {
    transform: scale(1.05);
}


/* --- Rodapé --- */
#main-footer {
    background-color: var(--card-bg);
    color: var(--text-secondary);
    padding: 3rem 2rem;
    margin-top: 4rem;
    border-top: 2px solid var(--border-color);
    border-radius: 8px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-family: "Bebas Neue", sans-serif;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: #45ff17;
}

.visitor-counter {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.2rem;
    color: var(--text-primary);
}

.visitor-counter .fa-users {
    color: #45ff17;
}

.footer-bottom {
    text-align: center;
    font-size: 0.9rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}


/* --- Ajustes Responsivos para os Novos Itens --- */

@media (max-width: 768px) {
    /* Ajusta o espaçamento do header no mobile */
    #main-header {
        gap: 1rem;
        padding: 0 1rem; /* Garante que não cole nas bordas */
    }

    .social-links {
        gap: 1rem;
    }

    .social-links a {
        font-size: 1.3rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        right: 20px;
        bottom: 20px;
        font-size: 24px;
    }
    
    #main-footer {
        padding: 2rem 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr; /* Coluna única no mobile */
        text-align: center;
    }

    .visitor-counter {
        justify-content: center;
    }
}

/* --- Estilo para o nome da categoria no cabeçalho do evento --- */
#event-header .event-text #header-category-name {
    font-family: "Bebas Neue", sans-serif; /* Usando uma fonte mais legível para o subtítulo */
    font-style:italic;
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-top: 0.25rem;
    margin-bottom: 0;
}

/* Ajuste no mobile */
@media (max-width: 768px) {
    #event-header .event-text #header-category-name {
        font-size: 1.5rem;
    }
}

/* --- Estilo para a informação do campeão no card de categoria --- */
.category-card .details .category-champion {
    color: #FFD700; /* Cor dourada para destaque */
    font-weight: 700; /* Deixa o texto em negrito */
}

.category-card .details .category-champion svg {
    fill: #FFD700; /* Pinta o ícone de troféu de dourado */
    flex-shrink: 0; /* Impede que o ícone seja esmagado */
}

/* --- Estilos dinâmicos para o Status Dot --- */
.status-dot.live { background-color: #45ff17; } /* Verde - Em Andamento */
.status-dot.finished { background-color: #b3b3b3; } /* Cinza - Encerrado */
.status-dot.upcoming { background-color: #f5a623; } /* Laranja - Em Breve *

}

/* --- Estilos para o Pódio de Vencedores --- */
#embed-view {
    /* Ajusta a view para permitir múltiplos elementos */
    display: flex;
    flex-direction: column;
    gap: 1.5rem; /* Espaço entre o pódio e o iframe */
}

.podium-container {
    background-color: var(--card-bg);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.podium-container h3 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.podium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.podium-place {
    background-color: var(--accent-color);
    border-radius: 6px;
    padding: 1rem;
    text-align: center;
    border-bottom: 4px solid; /* Borda colorida para destaque */
}

.podium-place h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.podium-place p {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    word-wrap: break-word; /* Garante que nomes longos não quebrem o layout */
}

/* Cores do Pódio */
.podium-place.gold {
    border-color: #FFD700;
}
.podium-place.gold h4 {
    color: #FFD700;
}

.podium-place.silver {
    border-color: #C0C0C0;
}
.podium-place.silver h4 {
    color: #C0C0C0;
}

.podium-place.bronze {
    border-color: #CD7F32;
}
.podium-place.bronze h4 {
    color: #CD7F32;
}

/* Responsividade para o pódio */
@media (max-width: 480px) {
    .podium-container h3 {
        font-size: 1.5rem;
    }
    .podium-place h4 {
        font-size: 1.1rem;
    }
    .podium-place p {
        font-size: 1rem;
        
    }
}

/* --- Estilos para o Pódio Retrátil --- */

/* O cabeçalho do pódio que será clicável */
.podium-header {
    cursor: pointer;
    padding: 0.5rem; /* Adiciona uma área de clique mais confortável */
    border-radius: 6px;
    transition: background-color 0.2s ease;
}


.podium-header:hover {
    background-color: rgba(255, 255, 255, 0.05); /* Leve destaque ao passar o mouse */
}

/* A legenda "Clique para exibir/ocultar" */
.podium-subtitle {
    font-size: 0.9rem;
    font-style: italic;
    color: #45ff17;
    text-align: center;
    margin-top: -1rem; /* Puxa para mais perto do título */
    margin-bottom: 1rem;
}

.podium-subtitle p {
    color: #45ff17;
}

/* A grade de vencedores */
.podium-grid {
    overflow: hidden; /* Essencial para a animação de max-height */
    transition: max-height 0.35s ease-in-out; /* Animação suave */
    max-height: 500px; /* Altura máxima quando visível (ajuste se necessário) */
}

/* A classe que esconde a grade de vencedores */
.podium-grid.collapsed {
    max-height: 0;
}

/* --- Estilos para o Cabeçalho com Data e Hora --- */

/* Ajusta o header principal para um layout de coluna */
#main-header {
    flex-direction: column;
    align-items: center;
    gap: 1rem; /* Espaço entre a linha do logo e o relógio */
}

/* A nova linha que contém o logo e as redes sociais */
.header-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* O container para a data e a hora */
#datetime-container {
    color: #45ff17;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    width: 100%;
    padding: 0.5rem;
    background-color: var(--accent-color);
    border-radius: 6px;
}

/* --- Ajustes Responsivos para o Relógio --- */
@media (max-width: 768px) {
    #datetime-container {
        font-size: 0.85rem;
        padding: 0.4rem;
    }
}

/* --- Estilos para o Card de Jogos ao Vivo --- */
.live-match-container {
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    border: 1px solid var(--border-color);
}

.live-match-container h3 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.8rem;
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.match-card {
    background-color: var(--accent-color);
    border-radius: 6px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.match-card:last-child {
    margin-bottom: 0;
}

.match-card h4 {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Estilo para o ponto piscando */
.live-dot {
    width: 10px;
    height: 10px;
    background-color: var(--status-dot);
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.2; }
    100% { opacity: 1; }
}

.match-details {
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 700;
}

.player-name {
    flex-basis: 45%;
    text-align: center;
}

.vs-separator {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* --- Estilos para o Botão de Login no Cabeçalho --- */
.header-right-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem; /* Espaço entre os ícones sociais e o botão */
}

.login-button-header {
    font-family: "Bebas Neue", sans-serif;
    font-style: italic;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1.2rem;
    background-color: #1e1e1e;
    color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.login-button-header:hover {
    background-color: #45ff17;
    border-color: #45ff17;
    color: #000;
    transform: translateY(-2px);
}

.login-button-header i {
    font-size: 1.2rem;
}

/* --- Ajuste para o botão em telas menores (Mobile) --- */
@media (max-width: 768px) {
    /* Oculta o texto do botão, deixando só o ícone */
    .login-button-header span {
        font-family: "Bebas Neue", sans-serif;
        display:flex;
    }

    .login-button-header {
        padding: 0.5rem; /* Ajusta o padding para o ícone */
    }

    .header-right-actions {
        gap: 1rem;
    }
}

/* --- Estilos para Redes Sociais no Rodapé --- */
.footer-social-links {
    display: flex;
    /* Centraliza os ícones no desktop se o espaço permitir */
    justify-content: flex-start; 
    gap: 1.5rem; /* Espaço entre os ícones */
    margin-top: 0.5rem;
}

.footer-social-links a {
    color: var(--text-secondary);
    font-size: 1.8rem; /* Ícones um pouco maiores no rodapé */
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-social-links a:hover {
    color: #45ff17; /* Destaque verde no hover */
    transform: scale(1.1);
}

/* --- Ajuste para centralizar no mobile --- */
@media (max-width: 768px) {
    .footer-section {
        /* Garante que o conteúdo da seção seja centralizado */
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-section ul {
        padding: 0; /* Remove padding que pode desalihar */
    }
    
    .footer-social-links {
        /* Força a centralização dos ícones */
        justify-content: center;
    }
}

/* Estilos para a página de Uniformes */

#uniformes-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 1rem;
    min-height: 50vh; /* Garante que o conteúdo ocupe um espaço mínimo na tela */
}

.construction-title {
    font-family: "Bebas Neue", sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.construction-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.card-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap; /* Permite que os cards quebrem a linha em telas menores */
}

.action-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 2rem 2.5rem;
    border: 1px solid var(--border-color);
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.2s ease-in-out;
    width: 100%;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.action-card:hover {
    transform: translateY(-5px);
    background-color: #282828;
    border-color: #45ff17; /* Verde da marca */
}

.action-card i {
    font-size: 3rem;
    color: #45ff17; /* Verde da marca */
    margin-bottom: 1rem;
}

.action-card h3 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 2rem;
    margin: 0;
}

.action-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.5;
}

.back-button-card i {
    color: var(--text-secondary); /* Cor diferente para o ícone de voltar */
}

.back-button-card:hover i {
    color: #45ff17;
}

@media (max-width: 768px) {
    .construction-title {
        font-size: 2.5rem;
    }

    .construction-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .card-container {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
        padding: 0 1rem;
    }

    .action-card {
        max-width: 100%;
    }
}

/* Estilos específicos para a página de Status do Pedido */

#status-container {
    display: flex;
    justify-content: center;
    padding: 2rem 1rem;
}

.status-content {
    background-color: var(--card-bg);
    padding: 2rem 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    width: 100%;
    max-width: 800px;
    text-align: center;
}

.status-content h1 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 3rem;
    margin-bottom: 2rem;
}

.search-box {
    margin-bottom: 2rem;
}

.search-box label {
    display: block;
    margin-bottom: 0.75rem;
    text-align: center;
    font-size: 1.1em;
    color: var(--text-secondary);
}

.search-box input {
    width: 100%;
    max-width: 400px;
    padding: 14px;
    font-size: 1.2em;
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    border-radius: 6px;
    box-sizing: border-box;
    text-align: center;
    transition: all 0.2s ease;
}

.search-box input:focus {
    border-color: #45ff17;
    outline: none;
    box-shadow: 0 0 10px rgba(69, 255, 23, 0.3);
}

.search-box button {
    font-family: "Bebas Neue", sans-serif;
    font-style: italic;
    width: 100%;
    max-width: 400px;
    padding: 1rem;
    font-size: 1.5rem;
    font-weight: 500;
    background-color: #45ff17;
    color: #000;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.2s ease;
}

.search-box button:hover {
    background-color: #fff;
    transform: translateY(-2px);
}

.status-tracker {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 2.5rem; /* Espaçamento vertical e horizontal */
    margin-top: 2.5rem;
}

.status-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100px; /* Largura fixa para cada item */
}

.status-number {
    width: 30px;
    height: 30px;
    background-color: #333;
    color: var(--text-secondary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 0.9em;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    border: 2px solid #333;
}

.status-label {
    font-size: 0.75em;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.3;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Estilo para etapa concluída */
.status-item.completed .status-number {
    background-color: #45ff17;
    color: #000;
    border: 2px solid #45ff17;
    box-shadow: 
        0 0 5px #45ff17,
        0 0 10px #45ff17,
        0 0 15px #45ff17;
}

.status-item.completed .status-label {
    color: var(--text-primary);
}

.summary {
    background-color: var(--accent-color);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: left;
    font-size: 1em;
    line-height: 1.7;
}

.summary strong {
    color: var(--text-secondary);
}

.summary #current-status {
    color: #45ff17;
    font-weight: bold;
}

.hidden {
    display: none;
}

#loading, #error {
    margin-top: 1.5rem;
    font-size: 1.1em;
}

#error {
    color: #ff4d4d;
    background-color: rgba(255, 77, 77, 0.1);
    padding: 15px;
    border-radius: 4px;
    border: 1px solid #ff4d4d;
}

.back-link {
    display: inline-block;
    margin-top: 2.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.back-link:hover {
    color: #45ff17;
}

/* Responsividade */
@media (max-width: 768px) {
    .status-content {
        padding: 1.5rem;
    }
    .status-content h1 {
        font-size: 2.5rem;
    }
}