@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;800&display=swap');

.modelos-section {
    font-family: "Montserrat", sans-serif;
    background-color: #D9D9D9;
    padding: 150px 20px;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 50px;
    line-height: 1.2;
}


.modelos-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}


@media (max-width: 992px) {
    .modelos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .modelos-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.8rem;
    }
}


.modelo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: white;
    border-radius: 20px;
}


.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 250px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;

}

.image-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    z-index: 2;
    transition: transform 0.3s ease;
}

.modelo-card:hover .image-wrapper img {
    transform: scale(1.05);
}

.modelo-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #000;
}


.btn-alugue {
    background-color: #ff0000;
    color: white;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: background-color 0.3s;
    box-shadow: 0 4px 6px rgba(255, 0, 0, 0.2);
}

.btn-alugue:hover {
    background-color: #cc0000;
    box-shadow: 0 6px 8px rgba(255, 0, 0, 0.3);
}