/* Configurações Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

body {
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.section {
    padding: 80px 0;
}

.dark-bg {
    background-color: #111111;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #ff0080;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* SESSÃO 1: Hero (Topo do site) */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(10, 10, 10, 0.9)), url('img/fundo-baile.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
}

.hero h1 {
    font-size: 5rem;
    font-family: 'Impact', 'Arial Black', sans-serif;
    letter-spacing: 4px;
    text-shadow: 2px 2px 10px rgba(255, 0, 128, 0.5);
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 40px;
}

.btn-booking, .btn-whatsapp, .btn-presskit {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-booking {
    background: linear-gradient(45deg, #ff0080, #7928ca);
    color: #fff;
    box-shadow: 0 5px 15px rgba(255, 0, 128, 0.3);
}

.btn-booking:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 0, 128, 0.6);
}

/* SESSÃO 2: Release */
.release-text {
    font-size: 1.2rem;
    color: #aaa;
    max-width: 800px;
    margin: 0 auto;
}

.release-text strong {
    color: #fff;
}

/* SESSÃO 3: Agenda (FORMATO CARTÕES COM ARTE 1080x1350) */
.agenda-lista {
    display: grid; /* Ativa o formato de grade/cartões */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Faz as colunas se ajustarem sozinhas */
    gap: 30px; /* Espaço entre os cartões */
}

.show-item {
    background: #1a1a1a;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 5px solid #ff0080; /* Linha neon embaixo do card */
    overflow: hidden; /* Faz a foto respeitar os cantos arredondados */
    transition: 0.3s;
}

.show-item:hover {
    transform: translateY(-10px); /* O cartão levanta um pouquinho quando passa o mouse */
    box-shadow: 0 15px 30px rgba(255, 0, 128, 0.15);
}

.show-arte {
    width: 100%; /* A foto ocupa toda a largura do cartão */
    aspect-ratio: 4 / 5; /* Força exatamente a proporção 1080x1350 (4:5) */
    object-fit: cover; /* Evita que a foto fique esticada ou amassada */
}

.show-info {
    padding: 20px 10px 10px;
    text-align: center;
    width: 100%;
}

.show-data {
    font-weight: bold;
    font-size: 1.3rem;
    color: #ff0080;
    margin-bottom: 5px;
}

.show-local {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 15px;
}

.btn-lista {
    background: transparent;
    border: 1px solid #ff0080;
    color: #ff0080;
    padding: 10px 30px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 1rem;
    margin-bottom: 25px; /* Margem antes de acabar o cartão */
    transition: 0.3s;
}

.btn-lista:hover {
    background: #ff0080;
    color: #fff;
}

/* SESSÃO 4: Redes Sociais */
.social-links {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.btn-instagram {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1.3rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 5px 15px rgba(220, 39, 67, 0.4);
    transition: 0.3s;
}

.btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(220, 39, 67, 0.6);
}

.btn-secundario {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    text-transform: uppercase;
    color: #fff;
    background: transparent;
    border: 2px solid #555;
    transition: 0.3s;
}

.btn-secundario:hover {
    border-color: #ff0080;
    color: #ff0080;
}

/* SESSÃO 5: Contato */
.contato-links {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
}

.btn-presskit {
    background: transparent;
    border: 2px solid #555;
    color: #fff;
}

.btn-presskit:hover {
    border-color: #fff;
}

footer {
    text-align: center;
    padding: 20px;
    background: #000;
    font-size: 0.8rem;
    color: #555;
}

/* Responsividade (Celular) */
@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
        background-position: center center;
    }
    .hero h1 { font-size: 3.5rem; }
    
    /* A grade de eventos já se ajusta sozinha no celular, então só ajustamos os links de contato */
    .contato-links, .social-links {
        flex-direction: column;
    }
}