/* Estilos gerais */
body {
    font-family: Arial, sans-serif;
}

/* Estilos do cabeçalho */
header {
    border-bottom: 1px solid #eee;
}

/* Estilos dos cards */
.card {
    transition: transform 0.2s;
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.card-img-top {
    height: 200px;
    object-fit: contain;
    padding: 10px;
    background-color: #f8f9fa;
}

.card-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 1rem;
}

/* Títulos das seções */
.section-title {
    text-align: center;
    margin: 2rem 0;
    font-size: 2rem;
    color: #333;
    text-transform: uppercase;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #007bff;
    margin: 10px auto;
}

/* Botão Alugar */
.btn-alugar {
    width: 100%;
    background-color: #007bff;
    color: white;
    text-transform: uppercase;
    font-weight: bold;
    padding: 10px;
    border: none;
    border-radius: 5px;
    transition: background-color 0.2s;
}

.btn-alugar:hover {
    background-color: #0056b3;
    color: white;
}
