* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #fff0e6;
    color: #333;
    line-height: 1.6;
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 8%;
    background-color: #1a1a1a;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo { 
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem; 
    font-weight: bold;
}

.logo span { 
    color: #ff6200; 
}

.nav-links a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ff9100; 
}

.container { 
    max-width: 1100px; 
    margin: 40px auto; 
    padding: 0 20px; 
}

.pagina-titulo {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.2rem;
}

.shows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.Shows {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.4s ease;
}

.Shows:hover { 
    transform: scale(1.04); 
}

.image-container {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

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


.Shows-content { 
    padding: 20px; 
}

.Shows-content h2 { 
    font-family: 'Montserrat', sans-serif; 
    font-size: 1.4rem; 
    margin-bottom: 10px; 
}


.data { 
    font-weight: bold; 
    color: #777; 
    margin: 15px 0; 
}

.Ingresso {
    width: 100%;
    padding: 12px;
    background: #1a1a1a;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.Ingresso:hover {
    background: #ffcc00;
    color: black;
    transform: translateY(-4px);
}

.Contatos { 
    margin-top: 60px; 
    background: white; 
    padding: 40px; 
    border-radius: 15px; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.Contatos h3 {
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.AreaContatos { 
    display: flex; 
    flex-direction: column; 
    gap: 15px; 
}

.row { 
    display: flex;
    gap: 15px; 
}

input, select, textarea { 
    padding: 12px; 
    border: 1px solid #ddd; 
    border-radius: 8px; 
    font-family: inherit; 
}

.row input { flex: 1; }

.Enviar { 
    background: #ff0318; 
    color: white; 
    border: none; 
    padding: 15px; 
    border-radius: 8px; 
    cursor: pointer; 
    font-weight: bold;
    transition: background 0.5s;
}

.Enviar:hover {
    background: #ff7700;
}

@media (max-width: 768px) {
    .row { 
        flex-direction: column; 
    }
    .main-header { 
        flex-direction: column; 
        text-align: center; 
        gap: 10px; 
    }
}

.Rodape { 
    text-align: center; 
    padding: 30px; 
    background: #eee; 
    margin-top: 50px; 
    font-size: 0.9rem;
    color: #666;
}