/* =======================
   ESTILOS DA SEÇÃO NOSSAS UNIDADES
   ======================= */
@charset "utf-8";

.unidades {
    text-align: center;
    padding: 60px 20px;
    background-color: #f8f8f8;
}

.unidades h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #333;
}

.container-unidades {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.unidade {
    position: relative;
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    background: white;
}

.unidade-img {
    position: relative;
    width: 100%;
    height: auto;
}

.unidade-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 10px 10px 0 0;
}

/* Tarja preta transparente sobre a imagem */
.unidade-img .tarja {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    padding: 10px 0;
}

.unidade h3 {
    font-size: 22px;
    color: #444;
    margin-top: 15px;
}

.unidade p {
    font-size: 16px;
    color: #777;
    padding: 10px;
}

.btn-saiba-mais {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 16px;
    background: #FFD700;
    color: #333;
    font-size: 14px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-saiba-mais:hover {
    background: #e6c200;
}

/* =======================
   RESPONSIVIDADE
   ======================= */
@media (max-width: 1024px) {
    .unidade {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .container-unidades {
        flex-direction: column;
        align-items: center;
    }
    .unidade {
        width: 90%;
    }
}