:root {
    --bg-color: #0a0a0a;
    --primary-color: #ffffff;
    --accent-color: #ff3b30;
    /* Dourado para matches com as estrelas do logo */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-main: #ffffff;
    --text-muted: #b0b0b0;
    --font-outfit: 'Outfit', sans-serif;
    --font-montserrat: 'Montserrat', sans-serif;
    --font-poppins: 'Poppins', sans-serif;

    /* Cores Birdsystem */
    --bird-light: 203 84% 59%;
    --bird-medium: 207 69% 45%;
    --bird-purple: 258 80% 59%;
    --bird-dark: 0 0% 9%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0a0a0a;
    color: var(--text-main);
    font-family: var(--font-outfit);
    display: flex;
    justify-content: center;
    min-height: 100vh;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/bg-texture.png');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

/* Background elements removed for consistency with main page simpler layout */

.container {
    width: 100%;
    max-width: 450px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.back-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-color);
    transform: scale(1.1);
}

/* Hero Header Section (Back Button + Title) */
.hero-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    margin-top: calc(env(safe-area-inset-top, 20px) + 10px);
    animation: fadeInDown 1s ease-out;
}

.page-title {
    font-family: var(--font-montserrat);
    font-weight: 800;
    font-size: 1.8rem;
    letter-spacing: 2px;
    color: var(--primary-color);
    text-shadow: 0 0 15px rgba(255, 59, 48, 0.5);
    margin: 0;
}

.logo-container {
    padding: 20px;
    position: relative;
    display: inline-block;
}



.logo {
    width: 200px;
    height: auto;
    display: block;
    margin-top: -5px;
}

/* Artists Section */
.artists-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 60px;
}

.artist-card {
    display: flex;
    flex-direction: column;
    padding: 12px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    text-decoration: none;
    color: var(--text-main);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(20px);
    text-align: center;
}

.artist-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.artist-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-color);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.photo-container {
    width: 100%;
    aspect-ratio: 1 / 1;
    /* Quadrado perfeito para focar no artista e cortar o banner/número de baixo */
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    margin-bottom: 12px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    position: relative;
}

.photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    /* Garante que a cabeça apareça e o rodapé da foto original (número) seja cortado */
    transition: transform 0.5s ease;
    display: block;
}

.artist-card:hover .photo {
    transform: scale(1.1);
}

.artist-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.artist-info h3 {
    font-family: var(--font-montserrat);
    font-weight: 800;
    font-size: 0.85rem;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: white;
}

.role {
    font-size: 0.65rem;
    color: var(--accent-color);
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.card-hire-btn {
    width: 100%;
    padding: 10px;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-family: var(--font-montserrat);
    font-weight: 800;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 10px rgba(255, 59, 48, 0.2);
}

.card-hire-btn:hover {
    transform: scale(1.05);
    background: white;
    color: var(--accent-color);
    box-shadow: 0 6px 15px rgba(255, 59, 48, 0.3);
}

/* Footer Section */
.footer {
    width: 100%;
    margin-top: auto;
    padding-bottom: 20px;
}

.dev-credits {
    font-size: 0.75rem;
    color: #ffffff;
    /* Cor branca */
    margin-top: 20px;
}

.dev-credits span {
    color: #ffffff;
    font-weight: 700;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 480px) {
    .container {
        padding: 30px 15px;
    }

    .logo {
        width: 180px;
    }
}