/* Ambientes Moderno */
.ambientes-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #d0a23c;
}

.ambientes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.ambiente-card {
    position: relative;
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    display: block;
}

.ambiente-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.ambiente-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ambiente-card:hover .ambiente-bg {
    transform: scale(1.1);
}

.ambiente-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0.1) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    transition: background 0.3s;
}

.ambiente-title {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 36px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    transform: translateY(10px);
    transition: transform 0.3s;
}

.ambiente-subtitle {
    color: #d0a23c;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s;
    letter-spacing: 1.5px;
    margin-top: 5px;
}

.ambiente-card:hover .ambiente-title {
    transform: translateY(0);
}

.ambiente-card:hover .ambiente-subtitle {
    transform: translateY(0);
    opacity: 1;
}

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

@media (max-width: 576px) {
    .ambientes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 10px;
    }
    
    .ambiente-card {
        height: 200px;
    }
    
    .ambiente-title {
        font-size: 13px;
        margin-bottom: 16px;
        letter-spacing: 0.5px;
        line-height: 1.2;
    }
    
    .ambiente-subtitle {
        font-size: 9px;
        letter-spacing: 0;
        margin-top: 0;
        transform: translateY(0);
        opacity: 0.9;
        line-height: 1.1;
    }
    
    .ambiente-overlay {
        padding: 12px;
        background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 40%, rgba(0,0,0,0) 100%);
    }
}
