body {
    background: #edf1f4;
}
/*
.form-floating>.form-control,
.form-floating>.form-control-plaintext {
    padding: 1rem .75rem;
    border: 3px solid #f1c300;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
 }
    */

.text-primary {
    --bs-text-opacity: 1;
    color: #000 !important;
}

.arena-card .text-muted {
    --bs-text-opacity: 1;
    color: #333 !important;
    text-shadow: none;
    font-weight: 400;
}

.city-item {
    cursor: pointer;
    padding: 10px;
    transition: all 0.2s;
    border-radius: 8px;
    background: #f2c300;
    border: 1px solid #f2c300;
}

.h2,
h2 {
    font-size: 2.5rem;
}

.city-item:hover {
    background-color: #f8f9fa;
    border: 1px solid #333;
}

.arena-card {
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.arena-card:hover {
    transform: translateY(-5px);
}

.arena-img {
    height: 180px;
    object-fit: cover;
}

/* Modificar o container de busca para ter posição relativa */
.search-container {
    position: relative;
    background-image: url('../img/volleyball-court.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    padding: 40px 30px;
  /*  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
    margin-bottom: 40px;
    z-index: 1; /* Garante que o conteúdo fique acima do overlay */
}

/* Adicionar o overlay gradiente */
.search-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.8));
    border-radius: 20px;
    z-index: -1;
}



/* Garantir que o texto seja mais legível */
.search-heading {
    color: #fff;
    font-weight: 700;
    margin-bottom: 25px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}
.city-badge {
    display: inline-block;
    background-color: #f2c300;
    padding: 8px 16px;
    border-radius: 20px;
    margin: 5px;
    cursor: pointer;
    transition: all 0.2s;
}

.city-badge:hover {
    background-color: #333;
    color: white;
}

a {
    text-decoration: none;
    color: #333;
}

/*
.text-muted {
    --bs-text-opacity: 1;
    color: rgba(255, 255, 255, 0.8) !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-weight: 400;
}
*/
.arena-card {
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    height: auto;
    background-color: white;
    margin-bottom: 15px;
}

.arena-card:hover {
    transform: translateY(-5px);
}